Merge lp:~a-camilli/openobject-italia/7.0-fix-St.Liq.IVA-Importi_negativi_sommario_iva_debito into lp:~openobject-italia-core-devs/openobject-italia/italian-addons-7.0

Proposed by Alessandro Camilli
Status: Needs review
Proposed branch: lp:~a-camilli/openobject-italia/7.0-fix-St.Liq.IVA-Importi_negativi_sommario_iva_debito
Merge into: lp:~openobject-italia-core-devs/openobject-italia/italian-addons-7.0
Diff against target: 14 lines (+2/-2)
1 file modified
account_vat_period_end_statement/report/vat_period_end_statement.mako (+2/-2)
To merge this branch: bzr merge lp:~a-camilli/openobject-italia/7.0-fix-St.Liq.IVA-Importi_negativi_sommario_iva_debito
Reviewer Review Type Date Requested Status
Lorenzo Battistini code review Approve
Review via email: mp+216123@code.launchpad.net
To post a comment you must log in.
241. By Alessandro Camilli

text-align

Revision history for this message
Lorenzo Battistini (elbati) :
review: Approve (code review)
Revision history for this message
Lorenzo Battistini (elbati) wrote :

This project is now hosted on https://github.com/OCA/l10n-italy. Please move your proposal there. This guide may help you https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

Unmerged revisions

241. By Alessandro Camilli

text-align

240. By Alessandro Camilli

correto segno meno in stampa sommario per i conti di debito

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account_vat_period_end_statement/report/vat_period_end_statement.mako'
2--- account_vat_period_end_statement/report/vat_period_end_statement.mako 2013-03-16 13:18:33 +0000
3+++ account_vat_period_end_statement/report/vat_period_end_statement.mako 2014-04-16 14:58:10 +0000
4@@ -179,8 +179,8 @@
5 %for generic_line in statement.generic_vat_account_line_ids :
6 <tr >
7 <td>${ generic_line.account_id.name|entity }</td>
8- <td>${ generic_line.amount < 0 and formatLang(generic_line.amount) or ''|entity }</td>
9- <td>${ generic_line.amount > 0 and formatLang(generic_line.amount) or ''|entity }</td>
10+ <td style="text-align:right">${ generic_line.amount < 0 and formatLang(generic_line.amount * -1) or ''|entity }</td>
11+ <td style="text-align:right">${ generic_line.amount > 0 and formatLang(generic_line.amount) or ''|entity }</td>
12 </tr>
13 %endfor
14 <tr >

Subscribers

People subscribed via source and target branches