Skip to content

Commit

Permalink
Fix rounding error for amnt type as suggested by astirpe
Browse files Browse the repository at this point in the history
Apply rounding fix as suggested by astirpe
  • Loading branch information
Przemek Kaminski authored and hbrunn committed Feb 1, 2018
1 parent bcb79e8 commit ca06a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_nl_xaf_auditfile_export/views/templates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
<docRef><t t-esc="l.ref" t-esc-options='{"widget": "auditfile.string999"}' /></docRef>
<effDate><t t-esc="l.date" /></effDate>
<desc><t t-esc="l.name" /></desc>
<amnt><t t-esc="l.credit or l.debit" /></amnt>
<amnt><t t-esc="abs(l.balance)" /></amnt>
<amntTp><t t-esc="'C' if l.credit else 'D'" /></amntTp>
<recRef t-if="l.full_reconcile_id"><t t-esc="l.full_reconcile_id.name" /></recRef>
<custSupID t-if="l.partner_id"><t t-esc="l.partner_id.id" /></custSupID>
Expand Down

0 comments on commit ca06a9d

Please sign in to comment.