{% extends '../template.html' %} {% block subcontent %}

Keuangan - Neraca {{tahun}}


Pilih Tahun Buku :



{% if data.length > 0 %}
{% for j in data.jenisdebit %} {% for row in j.akun %} {% endfor %} {% endfor %}
{{j.nama}}
{{row.kode}} {{row.nama}} {%if row.nilai == 'minus'%}({{row.total | currency}}){%else%}{{row.total | currency}}{%endif%}
SUBTOTAL {{j.total | currency}}
{% for j in data.jeniskredit %} {% for row in j.akun %} {% endfor %} {% endfor %}
{{j.nama}}
{{row.kode}} {{row.nama}} {%if row.nilai == 'minus'%}({{row.total | currency}}){%else%}{{row.total | currency}}{%endif%}
SUBTOTAL {{j.total | currency}}
TOTAL {{data.totaldebit | currency}}
TOTAL {{data.totalkredit | currency}}
{% else %} - Data Masih Kosong -

{% endif %}


{% endblock %} {% block script %} {% endblock %}