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
=== modified file 'account_vat_period_end_statement/report/vat_period_end_statement.mako'
--- account_vat_period_end_statement/report/vat_period_end_statement.mako 2013-03-16 13:18:33 +0000
+++ account_vat_period_end_statement/report/vat_period_end_statement.mako 2014-04-16 14:58:10 +0000
@@ -179,8 +179,8 @@
179 %for generic_line in statement.generic_vat_account_line_ids :179 %for generic_line in statement.generic_vat_account_line_ids :
180 <tr >180 <tr >
181 <td>${ generic_line.account_id.name|entity }</td>181 <td>${ generic_line.account_id.name|entity }</td>
182 <td>${ generic_line.amount < 0 and formatLang(generic_line.amount) or ''|entity }</td>182 <td style="text-align:right">${ generic_line.amount < 0 and formatLang(generic_line.amount * -1) or ''|entity }</td>
183 <td>${ generic_line.amount > 0 and formatLang(generic_line.amount) or ''|entity }</td>183 <td style="text-align:right">${ generic_line.amount > 0 and formatLang(generic_line.amount) or ''|entity }</td>
184 </tr>184 </tr>
185 %endfor185 %endfor
186 <tr >186 <tr >

Subscribers

People subscribed via source and target branches