X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/5be291594a4ead20f6900b249357deb262137cac..fce441db:/templates/webpages/rp/balance_sheet_master.html diff --git a/templates/webpages/rp/balance_sheet_master.html b/templates/webpages/rp/balance_sheet_master.html index a89b01d16..fc3b8eedd 100644 --- a/templates/webpages/rp/balance_sheet_master.html +++ b/templates/webpages/rp/balance_sheet_master.html @@ -19,9 +19,11 @@ [% FOREACH row = A %] - [% row.description %] - [% row.this %] - [% row.last %] + [% row.accno _ ' - ' IF l_accno %][% row.description %] + [% LxERP.format_amount(row.this, decimalplaces) %] + [%- IF last_period %] + [% LxERP.format_amount(row.last, decimalplaces) %] + [%- END %] [% END %] @@ -34,8 +36,10 @@ TOTAL - [% total.A.this %]
- [% total.A.last %]
+ [% LxERP.format_amount(total.A.this, decimalplaces) %]
+ [%- IF last_period %] + [% LxERP.format_amount(total.A.last, decimalplaces) %]
+ [%- END %] [% END %] @@ -46,9 +50,11 @@ [% FOREACH row = L %] - [% row.description %] - [% row.this %] - [% row.last %] + [% row.accno _ ' - ' IF l_accno %][% row.description %] + [% LxERP.format_amount(row.this, decimalplaces) %] + [%- IF last_period %] + [% LxERP.format_amount(row.last, decimalplaces) %] + [%- END %] [% END %] @@ -62,8 +68,10 @@ TOTAL - [% total.L.this %]

- [% total.L.last %]

+ [% LxERP.format_amount(total.L.this, decimalplaces) %]

+ [%- IF last_period %] + [% LxERP.format_amount(total.L.last, decimalplaces) %]

+ [%- END %] [% END %] @@ -75,8 +83,10 @@ [% row.description %] - [% row.this %] - [% row.last %] + [% LxERP.format_amount(row.this, decimalplaces) %] + [%- IF last_period %] + [% LxERP.format_amount(row.last, decimalplaces) %] + [%- END %] [% END %] @@ -90,14 +100,18 @@ TOTAL - [% total.Q.this %]

- [% total.Q.last %]

+ [% LxERP.format_amount(total.Q.this, decimalplaces) %]

+ [%- IF last_period %] + [% LxERP.format_amount(total.Q.last, decimalplaces) %]

+ [%- END %] [% END %] TOTAL LIABILITIES & EQUITY - [% total.this %]

- [% total.last %]

+ [% LxERP.format_amount(total.this, decimalplaces) %]

+ [%- IF last_period %] + [% LxERP.format_amount(total.last, decimalplaces) %]

+ [%- END %]