{% extends '_include/base.html.twig' %} {% block title %}MACRS Depreciation Report — {{ tax_year }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block page_title %}MACRS Depreciation Report — {{ tax_year }}{% endblock %} {% block page_actions %} Export PDF {% if profile %}
{% endif %} {% endblock %} {% block content %} {% set currency = display_currency() %}
{% if report %}

Depreciation Schedule — Tax Year {{ tax_year }}

{% set total_cost = 0 %} {% set total_section179 = 0 %} {% set total_bonus = 0 %} {% set total_macrs = 0 %} {% set total_deduction = 0 %} {% for row in report %} {% set total_cost = total_cost + row.acquisition_cost %} {% set total_section179 = total_section179 + row.section_179 %} {% set total_bonus = total_bonus + row.bonus_depreciation %} {% set total_macrs = total_macrs + row.macrs_depreciation %} {% set total_deduction = total_deduction + row.total_deduction %} {% endfor %}
Asset Cost Basis MACRS Class Section 179 Bonus Dep. Regular MACRS Total Deduction Accum. Dep. Book Value
{{ row.asset_code }}
{{ row.description }}
{{ row.acquisition_cost|format_currency(currency) }} {{ row.macrs_class }}-yr {{ row.convention }} {{ row.section_179|format_currency(currency) }} {{ row.bonus_depreciation|format_currency(currency) }} {{ row.macrs_depreciation|format_currency(currency) }} {{ row.total_deduction|format_currency(currency) }} {{ row.accumulated_depreciation|format_currency(currency) }} {{ row.book_value|format_currency(currency) }}
TOTALS {{ total_cost|format_currency(currency) }} {{ total_section179|format_currency(currency) }} {{ total_bonus|format_currency(currency) }} {{ total_macrs|format_currency(currency) }} {{ total_deduction|format_currency(currency) }}
{% else %}
No depreciation data for {{ tax_year }}. Add fixed assets first.
{% endif %} {% endblock %}