{% extends "base.html" %} {% block title %}Assets{% endblock %} {% block body %}

Fixed Asset Register

Run depreciation for
{% for a in rows %} {% set f = fc[a.id] %} {% endfor %}
AssetClassIn serviceCostAccum. deprec.Book valueReplacementMonths left
{{ a.name }}{{ a.cls or 'โ€”' }}{{ a.in_service_date or '' }} {{ a.cost_cents|c }} {{ f.accumulated_cents|c }} {{ f.book_value_cents|c }} {{ f.replacement_cost_cents|c }} {{ f.months_remaining if f.months_remaining is not none else 'โ€”' }}

Depreciation Schedule (posted runs)

{% for r in runs %}{% endfor %}
PeriodAssetAmountJournal
{{ r.period_label }}{{ r.asset }}{{ r.amount_cents|c }}JE#{{ r.journal_entry_id }}

Straight-line: (cost โˆ’ salvage) รท useful life. Each run posts Dr depreciation expense / Cr accumulated depreciation.

{% endblock %}