{% load django_ledger %} {% load i18n %}
{% trans 'Account Number' %} | {% trans 'Description' %} | {% if tx_digest.by_unit %}{% trans 'Unit' %} | {% endif %}{% trans 'Balance Type' %} | {% trans 'Balance' %} | {% trans 'Actions' %} |
---|---|---|---|---|---|
{% trans 'Operating Revenues' %} |
{% if tx_digest.by_unit %} | {% endif %} | |||
{{ acc.code }} | {{ acc.name }} | {% if tx_digest.by_unit %}{% if acc.unit_name %}{{ acc.unit_name }}{% endif %} | {% endif %}{% if acc.balance_type == 'debit' %} {% icon 'bi:arrow-bar-down' 24 %} {% elif acc.balance_type == 'credit' %} {% icon 'bi:arrow-bar-up' 24 %} {% endif %} | {% currency_symbol %}{{ acc.balance | currency_format }} |
|
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Net Operating Revenues' %} |
{% currency_symbol %}{{ tx_digest.income_statement.operating.net_operating_revenue | currency_format }} | ||
{% trans 'Less: Cost of Goods Sold' %} |
{% if tx_digest.by_unit %} | {% endif %} | |||
{{ acc.code }} | {{ acc.name }} | {% if tx_digest.by_unit %}{% if acc.unit_name %}{{ acc.unit_name }}{% endif %} | {% endif %}{% if acc.balance_type == 'debit' %} {% icon 'bi:arrow-bar-down' 24 %} {% elif acc.balance_type == 'credit' %} {% icon 'bi:arrow-bar-up' 24 %} {% endif %} | {% currency_symbol %}{{ acc.balance | reverse_sign | currency_format }} |
|
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Net COGS' %} |
{% currency_symbol %}{{ tx_digest.income_statement.operating.net_cogs | currency_format }} | ||
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Gross Profit' %} |
{% currency_symbol %}{{ tx_digest.income_statement.operating.gross_profit | currency_format }} | ||
{% trans 'Operating Expenses' %} |
{% if tx_digest.by_unit %} | {% endif %} | |||
{{ acc.code }} | {{ acc.name }} | {% if tx_digest.by_unit %}{% if acc.unit_name %}{{ acc.unit_name }}{% endif %} | {% endif %}{% if acc.balance_type == 'debit' %} {% icon 'bi:arrow-bar-down' 24 %} {% elif acc.balance_type == 'credit' %} {% icon 'bi:arrow-bar-up' 24 %} {% endif %} | {% currency_symbol %}{{ acc.balance | reverse_sign | currency_format }} |
|
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Net Operating Expenses' %} |
{% currency_symbol %}{{ tx_digest.income_statement.operating.net_operating_expenses | reverse_sign | currency_format }} | ||
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Net Operating Income (Loss)' %} |
{% currency_symbol %}{{ tx_digest.income_statement.operating.net_operating_income| currency_format }} | ||
{% trans 'Other Revenues' %} |
{% if tx_digest.by_unit %} | {% endif %} | |||
{{ acc.code }} | {{ acc.name }} | {% if tx_digest.by_unit %}{% if acc.unit_name %}{{ acc.unit_name }}{% endif %} | {% endif %}{% if acc.balance_type == 'debit' %} {% icon 'bi:arrow-bar-down' 24 %} {% elif acc.balance_type == 'credit' %} {% icon 'bi:arrow-bar-up' 24 %} {% endif %} | {% currency_symbol %}{{ acc.balance | currency_format }} |
|
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Net Other Revenues' %} |
{% currency_symbol %}{{ tx_digest.income_statement.other.net_other_revenues | currency_format }} | ||
{% trans 'Other Expenses' %} |
{% if tx_digest.by_unit %} | {% endif %} | |||
{{ acc.code }} | {{ acc.name }} | {% if tx_digest.by_unit %}{% if acc.unit_name %}{{ acc.unit_name }}{% endif %} | {% endif %}{% if acc.balance_type == 'debit' %} {% icon 'bi:arrow-bar-down' 24 %} {% elif acc.balance_type == 'credit' %} {% icon 'bi:arrow-bar-up' 24 %} {% endif %} | {% currency_symbol %}{{ acc.balance | reverse_sign | currency_format }} |
|
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Net Other Expenses' %} |
{% currency_symbol %}{{ tx_digest.income_statement.other.net_other_expenses | currency_format }} | ||
{% if tx_digest.by_unit %} | {% endif %} | {% trans 'Net Other Income (Loss)' %} |
{% currency_symbol %}{{ tx_digest.income_statement.other.net_other_income | currency_format }} | ||
{% if tx_digest.by_unit %} | {% endif %} |
{{ tx_digest.from_date | date }} {% trans 'through' %} {{ tx_digest.to_date | date }} |
{% trans 'Net Income' %} |
{% currency_symbol %}{{ tx_digest.income_statement.net_income| currency_format }} |