resources/views/templates/reports/tax_summary_report.html
Created On: {{ created_on }}
Created By: {{ created_by }}
{% if company_logo is not empty %} {{ img(company_logo, 'max-height: 80px; width: auto; object-fit: contain;') }} {% endif %}
| {{ t('method') }} | {{ t('gross') }} | {{ t('taxable_amount') }} | {{ t('tax_exempt') }} |
|---|---|---|---|
| {{ t('cash_vs_accrual') }} | {{ taxes.gross_sales }} | {{ taxes.taxable_sales }} | {{ taxes.exempt_sales }} |
| {{ t('cash_accounting') }} | {{ taxes.cash_gross_sales }} | {{ taxes.cash_taxable_sales }} | {{ taxes.cash_exempt_sales }} |
| {{ t('method') }} | {{ t('tax_name') }} | {{ t('amount') }} |
|---|---|---|
| {% if taxes.accrual_map is defined and taxes.accrual_map is not empty %} {% for key, tax in taxes.accrual_map %} | {{ t('cash_vs_accrual') }} | {{ key }} |
| {% endfor %} {% endif %} {% if taxes.cash_map is defined and taxes.cash_map is not empty %} {% for key,tax in taxes.cash_map %} | {{ t('cash_accounting') }} | {{ key }} |
| {% endfor %} {% endif %} |
| {{ t('method') }} | {{ t('number') }} | {{ t('date') }} | {{ t('amount') }} |
|---|---|---|---|
| {% if taxes.accrual_invoice_map is defined and taxes.accrual_invoice_map is not empty %} {% for tax in taxes.accrual_invoice_map %} | {{ t('cash_vs_accrual') }} | {{ tax.number }} | {{ tax.date }} |
| {% endfor %} {% endif %} {% if taxes.cash_invoice_map is defined and taxes.cash_invoice_map is not empty %} {% for tax in taxes.cash_invoice_map %} | {{ t('cash_accounting') }} | {{ tax.number }} | {{ tax.date }} |
| {% endfor %} {% endif %} |