{% 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() %}| 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) }} |