Merge lp:~a-camilli/openobject-italia/7.0_liq_IVA_opzioni_stampa into lp:~openobject-italia-core-devs/openobject-italia/italian-addons-7.0

Proposed by Alessandro Camilli
Status: Approved
Approved by: Alessandro Camilli
Approved revision: 238
Proposed branch: lp:~a-camilli/openobject-italia/7.0_liq_IVA_opzioni_stampa
Merge into: lp:~openobject-italia-core-devs/openobject-italia/italian-addons-7.0
Diff against target: 902 lines (+344/-220)
7 files modified
account_vat_period_end_statement/AUTHORS.txt (+1/-0)
account_vat_period_end_statement/account.py (+5/-0)
account_vat_period_end_statement/account_view.xml (+9/-0)
account_vat_period_end_statement/i18n/it.po (+182/-211)
account_vat_period_end_statement/report/vat_period_end_statement.mako (+38/-8)
account_vat_period_end_statement/report/vat_period_end_statement.py (+26/-0)
account_vat_period_end_statement/reports.xml (+83/-1)
To merge this branch: bzr merge lp:~a-camilli/openobject-italia/7.0_liq_IVA_opzioni_stampa
Reviewer Review Type Date Requested Status
Lorenzo Battistini Needs Information
Review via email: mp+210669@code.launchpad.net

Description of the change

Opzioni di stampa su liquidazione IVA:
- Raggruppa valori per conto contabile nel sommario
- Numerazione pagina

To post a comment you must log in.
Revision history for this message
Alessandro Camilli (a-camilli) wrote :

Ciao Lorenzo,
ho dovuto rifare il branch.
Cmq ho apportato le migliorie da te consigliate.

Grazie
Alessandro

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

righe 793, 794 e 800: se non sbaglio 'print_page_year' e 'print_page_from' sono superflui

PS: puoi committare le modifiche direttamente su lp:~a-camilli/openobject-italia/7.0_liq_IVA_opzioni_stampa e poi mandare un messaggio qui sulla MP

review: Needs Fixing
238. By Alessandro Camilli
Revision history for this message
Alessandro Camilli (a-camilli) wrote :

ho messo anche 1 come default sul pagina iniziale della liquidazione.
Ciao

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

Grazie!

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

Ciao Alessandro,
come mai le modifiche a it.po?

Ad esempio, come mai la traduzione di
'Not every tax linked to tax code %s is linked the same base code'
è stata rimossa, sebbene la stringa sia presente nel codice?

review: Needs Information
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

238. By Alessandro Camilli
237. By Alessandro Camilli

Opzioni stampa: raggruppa conto contabile e numerazione pagina

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'account_vat_period_end_statement/AUTHORS.txt'
--- account_vat_period_end_statement/AUTHORS.txt 2013-03-16 13:18:33 +0000
+++ account_vat_period_end_statement/AUTHORS.txt 2014-03-13 10:02:00 +0000
@@ -1,3 +1,4 @@
1Lorenzo Battistini <lorenzo.battistini@domsense.com>1Lorenzo Battistini <lorenzo.battistini@domsense.com>
2Marco Marchiori <marcomarkiori@gmail.com>2Marco Marchiori <marcomarkiori@gmail.com>
3Sergio Corato <sergiocorato@gmail.com>3Sergio Corato <sergiocorato@gmail.com>
4Alessandro Camilli <a.camilli@yahoo.it>
4\ No newline at end of file5\ No newline at end of file
56
=== modified file 'account_vat_period_end_statement/account.py'
--- account_vat_period_end_statement/account.py 2013-11-21 12:51:55 +0000
+++ account_vat_period_end_statement/account.py 2014-03-13 10:02:00 +0000
@@ -256,10 +256,15 @@
256 help="Remaining amount due."),256 help="Remaining amount due."),
257 'payment_ids': fields.function(_compute_lines, relation='account.move.line', type="many2many", string='Payments'),257 'payment_ids': fields.function(_compute_lines, relation='account.move.line', type="many2many", string='Payments'),
258 'period_ids': fields.one2many('account.period','vat_statement_id','Periods'),258 'period_ids': fields.one2many('account.period','vat_statement_id','Periods'),
259 'print_account_vat_group': fields.boolean('Group by account VAT'),
260 'print_page_from': fields.integer('Page number from'),
261 'print_page_year': fields.char('Page number year', size=10),
259 }262 }
260263
261 _defaults = {264 _defaults = {
262 'date': fields.date.context_today,265 'date': fields.date.context_today,
266 'print_account_vat_group': True,
267 'print_page_from': 1,
263 }268 }
264269
265 def _get_tax_code_amount(self, cr, uid, tax_code_id, period_id, context):270 def _get_tax_code_amount(self, cr, uid, tax_code_id, period_id, context):
266271
=== modified file 'account_vat_period_end_statement/account_view.xml'
--- account_vat_period_end_statement/account_view.xml 2013-03-16 13:18:33 +0000
+++ account_vat_period_end_statement/account_view.xml 2014-03-13 10:02:00 +0000
@@ -81,6 +81,15 @@
81 <separator string="Payments" colspan="4"/>81 <separator string="Payments" colspan="4"/>
82 <field name="payment_ids" nolabel="1" colspan="4"/>82 <field name="payment_ids" nolabel="1" colspan="4"/>
83 </page>83 </page>
84 <page string="Print Options">
85 <group colspan="4" string="Page Number">
86 <field name="print_page_from"/>
87 <field name="print_page_year"/>
88 </group>
89 <group colspan="4" string="Summary">
90 <field name="print_account_vat_group"/>
91 </group>
92 </page>
84 </notebook>93 </notebook>
85 <field name="state" select="1"/>94 <field name="state" select="1"/>
86 <field name="reconciled"/>95 <field name="reconciled"/>
8796
=== modified file 'account_vat_period_end_statement/i18n/it.po'
--- account_vat_period_end_statement/i18n/it.po 2013-03-16 13:18:33 +0000
+++ account_vat_period_end_statement/i18n/it.po 2014-03-13 10:02:00 +0000
@@ -4,429 +4,400 @@
4#4#
5msgid ""5msgid ""
6msgstr ""6msgstr ""
7"Project-Id-Version: OpenERP Server 6.1\n"7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: \n"8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2012-06-22 10:31+0000\n"9"POT-Creation-Date: 2014-02-27 13:30+0000\n"
10"PO-Revision-Date: 2012-06-22 12:35+0100\n"10"PO-Revision-Date: 2014-02-27 13:30+0000\n"
11"Last-Translator: Lorenzo Battistini <lorenzo.battistini@agilebg.com>\n"11"Last-Translator: <>\n"
12"Language-Team: \n"12"Language-Team: \n"
13"MIME-Version: 1.0\n"13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: 8bit\n"15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"16"Plural-Forms: \n"
1717
18#. module: account_vat_period_end_statement
19#: code:addons/account_vat_period_end_statement/report/vat_period_end_statement.py:35
20#, python-format
21msgid "Too many occurences of tax code %s"
22msgstr "Troppe occorrenze del codice impotsa %s"
23
24#. module: account_vat_period_end_statement
25#: selection:account.vat.period.end.statement,state:018#: selection:account.vat.period.end.statement,state:0
19#. module: account_vat_period_end_statement
26msgid "Confirmed"20msgid "Confirmed"
27msgstr "Confermato"21msgstr "Confermato"
2822
23#: view:account.vat.period.end.statement:0
29#. module: account_vat_period_end_statement24#. module: account_vat_period_end_statement
30#: view:account.vat.period.end.statement:0
31msgid "Credit Account Lines"25msgid "Credit Account Lines"
32msgstr "Righe conti di credito"26msgstr "Righe conti di credito"
3327
28#: help:account.tax.code,vat_statement_sign:0
34#. module: account_vat_period_end_statement29#. module: account_vat_period_end_statement
30msgid "If tax code period sum is usually negative, set '-1' here"
31msgstr "If tax code period sum is usually negative, set '-1' here"
32
35#: model:ir.model,name:account_vat_period_end_statement.model_statement_generic_account_line33#: model:ir.model,name:account_vat_period_end_statement.model_statement_generic_account_line
34#. module: account_vat_period_end_statement
36msgid "statement.generic.account.line"35msgid "statement.generic.account.line"
37msgstr "statement.generic.account.line"36msgstr "statement.generic.account.line"
3837
39#. module: account_vat_period_end_statement
40#: code:addons/account_vat_period_end_statement/account.py:381
41#, python-format
42msgid "Other VAT Credits / Debits"
43msgstr "Altri Crediti / Debiti per IVA"
44
45#. module: account_vat_period_end_statement
46#: help:account.vat.period.end.statement,reconciled:038#: help:account.vat.period.end.statement,reconciled:0
39#. module: account_vat_period_end_statement
47msgid "It indicates that the statement has been paid and the journal entry of the statement has been reconciled with one or several journal entries of payment."40msgid "It indicates that the statement has been paid and the journal entry of the statement has been reconciled with one or several journal entries of payment."
48msgstr "It indicates that the statement has been paid and the journal entry of the statement has been reconciled with one or several journal entries of payment."41msgstr "It indicates that the statement has been paid and the journal entry of the statement has been reconciled with one or several journal entries of payment."
4942
50#. module: account_vat_period_end_statement
51#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:42
52#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:70
53#: model:ir.model,name:account_vat_period_end_statement.model_account_tax_code43#: model:ir.model,name:account_vat_period_end_statement.model_account_tax_code
54#: field:statement.credit.account.line,tax_code_id:044#: field:statement.credit.account.line,tax_code_id:0
55#: field:statement.debit.account.line,tax_code_id:045#: field:statement.debit.account.line,tax_code_id:0
46#. module: account_vat_period_end_statement
56msgid "Tax Code"47msgid "Tax Code"
57msgstr "Codice imposta"48msgstr "Codice imposta"
5849
50#: model:ir.model,name:account_vat_period_end_statement.model_account_vat_period_end_statement
59#. module: account_vat_period_end_statement51#. module: account_vat_period_end_statement
60#: field:account.vat.period.end.statement,authority_partner_id:052msgid "account.vat.period.end.statement"
61msgid "Tax Authority Partner"53msgstr "account.vat.period.end.statement"
62msgstr "Partner Erario"
6354
64#. module: account_vat_period_end_statement
65#: view:account.vat.period.end.statement:055#: view:account.vat.period.end.statement:0
66#: field:account.vat.period.end.statement,previous_debit_vat_account_id:056#: field:account.vat.period.end.statement,previous_debit_vat_account_id:0
67#: code:addons/account_vat_period_end_statement/account.py:36457#. module: account_vat_period_end_statement
68#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:134
69#, python-format
70msgid "Previous Debits VAT"58msgid "Previous Debits VAT"
71msgstr "IVA debiti precedenti"59msgstr "IVA debiti precedenti"
7260
61#: view:account.vat.period.end.statement:0
73#. module: account_vat_period_end_statement62#. module: account_vat_period_end_statement
74#: code:addons/account_vat_period_end_statement/report/vat_period_end_statement.py:4363msgid "Set to draft"
75#, python-format64msgstr "Imposta a bozza"
76msgid "No base code found for tax code %s"
77msgstr "Nessun codice imponibile trovato per il codice imposta %s"
7865
79#. module: account_vat_period_end_statement
80#: help:account.vat.period.end.statement,previous_credit_vat_account_id:066#: help:account.vat.period.end.statement,previous_credit_vat_account_id:0
67#. module: account_vat_period_end_statement
81msgid "Credit VAT from previous periods"68msgid "Credit VAT from previous periods"
82msgstr "IVA a credito da periodi precedenti"69msgstr "IVA a credito da periodi precedenti"
8370
71#: view:account.vat.period.end.statement:0
84#. module: account_vat_period_end_statement72#. module: account_vat_period_end_statement
85#: view:account.vat.period.end.statement:0
86msgid "Tax Authority"73msgid "Tax Authority"
87msgstr "Erario"74msgstr "Erario"
8875
76#: view:add.period.to.vat.statement:0
89#. module: account_vat_period_end_statement77#. module: account_vat_period_end_statement
90#: field:account.vat.period.end.statement,state:078msgid "Add"
91msgid "State"79msgstr "Add"
92msgstr "Stato"
9380
94#. module: account_vat_period_end_statement
95#: selection:account.vat.period.end.statement,state:081#: selection:account.vat.period.end.statement,state:0
82#. module: account_vat_period_end_statement
96msgid "Draft"83msgid "Draft"
97msgstr "Bozza"84msgstr "Bozza"
9885
99#. module: account_vat_period_end_statement
100#: field:account.vat.period.end.statement,reconciled:086#: field:account.vat.period.end.statement,reconciled:0
87#. module: account_vat_period_end_statement
101msgid "Paid/Reconciled"88msgid "Paid/Reconciled"
102msgstr "Pagato/Riconciliato"89msgstr "Pagato/Riconciliato"
10390
91#: selection:account.tax.code,vat_statement_type:0
104#. module: account_vat_period_end_statement92#. module: account_vat_period_end_statement
105#: selection:account.tax.code,vat_statement_type:0
106#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:99
107msgid "Debit"93msgid "Debit"
108msgstr "Debito"94msgstr "Debito"
10995
110#. module: account_vat_period_end_statement
111#: code:addons/account_vat_period_end_statement/account.py:397
112#, python-format
113msgid "Tax Authority VAT"
114msgstr "IVA Erario"
115
116#. module: account_vat_period_end_statement
117#: help:account.vat.period.end.statement,residual:096#: help:account.vat.period.end.statement,residual:0
97#. module: account_vat_period_end_statement
118msgid "Remaining amount due."98msgid "Remaining amount due."
119msgstr "Importo dovuto rimanente"99msgstr "Importo dovuto rimanente"
120100
121#. module: account_vat_period_end_statement
122#: view:account.vat.period.end.statement:0101#: view:account.vat.period.end.statement:0
123msgid "General"102#: view:add.period.to.vat.statement:0
124msgstr "Generale"103#: model:ir.actions.act_window,name:account_vat_period_end_statement.action_add_period
125104#. module: account_vat_period_end_statement
126#. module: account_vat_period_end_statement105msgid "Add period"
106msgstr "Add period"
107
108#: model:ir.ui.menu,name:account_vat_period_end_statement.menu_account_vat_period_end_statement
109#. module: account_vat_period_end_statement
110msgid "VAT statements"
111msgstr "Liquidazioni IVA"
112
127#: field:account.tax.code,vat_statement_type:0113#: field:account.tax.code,vat_statement_type:0
114#. module: account_vat_period_end_statement
128msgid "Type"115msgid "Type"
129msgstr "Tipo"116msgstr "Tipo"
130117
131#. module: account_vat_period_end_statement
132#: field:account.vat.period.end.statement,previous_debit_vat_amount:0118#: field:account.vat.period.end.statement,previous_debit_vat_amount:0
119#. module: account_vat_period_end_statement
133msgid "Previous Debits VAT Amount"120msgid "Previous Debits VAT Amount"
134msgstr "Importo IVA debiti precedenti"121msgstr "Importo IVA debiti precedenti"
135122
136#. module: account_vat_period_end_statement
137#: field:account.vat.period.end.statement,credit_vat_account_line_ids:0123#: field:account.vat.period.end.statement,credit_vat_account_line_ids:0
138#: code:addons/account_vat_period_end_statement/account.py:330124#. module: account_vat_period_end_statement
139#, python-format
140msgid "Credit VAT"125msgid "Credit VAT"
141msgstr "IVA a credito"126msgstr "IVA a credito"
142127
143#. module: account_vat_period_end_statement
144#: model:ir.ui.menu,name:account_vat_period_end_statement.menu_account_vat_period_end_statement
145msgid "VAT statements"
146msgstr "Liquidazioni IVA"
147
148#. module: account_vat_period_end_statement
149#: view:account.vat.period.end.statement:0128#: view:account.vat.period.end.statement:0
129#. module: account_vat_period_end_statement
150msgid "Debit Account Lines"130msgid "Debit Account Lines"
151msgstr "Righe conti di debito"131msgstr "Righe conti di debito"
152132
133#: model:ir.model,name:account_vat_period_end_statement.model_account_period
153#. module: account_vat_period_end_statement134#. module: account_vat_period_end_statement
154#: field:account.vat.period.end.statement,journal_id:0135msgid "Account period"
155msgid "Journal"136msgstr "Periodo contabile"
156msgstr "Sezionale"
157137
158#. module: account_vat_period_end_statement
159#: field:account.vat.period.end.statement,payable_vat_amount:0138#: field:account.vat.period.end.statement,payable_vat_amount:0
139#. module: account_vat_period_end_statement
160msgid "Payable VAT Amount"140msgid "Payable VAT Amount"
161msgstr "Importo IVA Esigibile"141msgstr "Importo IVA Esigibile"
162142
143#: view:account.vat.period.end.statement:0
144#: model:ir.actions.act_window,name:account_vat_period_end_statement.action_remove_period
145#: view:remove.period.from.vat.statement:0
163#. module: account_vat_period_end_statement146#. module: account_vat_period_end_statement
147msgid "Remove period"
148msgstr "Remove period"
149
164#: selection:account.vat.period.end.statement,state:0150#: selection:account.vat.period.end.statement,state:0
151#. module: account_vat_period_end_statement
165msgid "Paid"152msgid "Paid"
166msgstr "Pagato"153msgstr "Pagato"
167154
168#. module: account_vat_period_end_statement155#: field:account.period,vat_statement_id:0
169#: view:account.tax.code:0156#: view:account.tax.code:0
170#: code:addons/account_vat_period_end_statement/account.py:303
171#: field:statement.credit.account.line,statement_id:0157#: field:statement.credit.account.line,statement_id:0
172#: field:statement.debit.account.line,statement_id:0158#: field:statement.debit.account.line,statement_id:0
173#: field:statement.generic.account.line,statement_id:0159#: field:statement.generic.account.line,statement_id:0
174#, python-format160#. module: account_vat_period_end_statement
175msgid "VAT statement"161msgid "VAT statement"
176msgstr "Liquidazione IVA"162msgstr "Liquidazione IVA"
177163
178#. module: account_vat_period_end_statement164#: view:add.period.to.vat.statement:0
179#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:39165#: view:remove.period.from.vat.statement:0
180msgid "Sales"166#. module: account_vat_period_end_statement
181msgstr "Vendite"167msgid "Cancel"
182168msgstr "Cancel"
183#. module: account_vat_period_end_statement169
184#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:43
185#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:71
186msgid "Base"
187msgstr "Imponibile"
188
189#. module: account_vat_period_end_statement
190#: model:ir.model,name:account_vat_period_end_statement.model_statement_credit_account_line170#: model:ir.model,name:account_vat_period_end_statement.model_statement_credit_account_line
171#. module: account_vat_period_end_statement
191msgid "statement.credit.account.line"172msgid "statement.credit.account.line"
192msgstr "statement.credit.account.line"173msgstr "statement.credit.account.line"
193174
194#. module: account_vat_period_end_statement
195#: code:addons/account_vat_period_end_statement/account.py:273
196#: code:addons/account_vat_period_end_statement/account.py:298
197#, python-format
198msgid "Error!"
199msgstr "Errore!"
200
201#. module: account_vat_period_end_statement
202#: field:account.vat.period.end.statement,move_id:0175#: field:account.vat.period.end.statement,move_id:0
176#. module: account_vat_period_end_statement
203msgid "VAT statement move"177msgid "VAT statement move"
204msgstr "Movimento liquidazione IVA"178msgstr "Movimento liquidazione IVA"
205179
206#. module: account_vat_period_end_statement180#: field:account.tax.code,vat_statement_sign:0
207#: code:addons/account_vat_period_end_statement/report/vat_period_end_statement.py:48181#. module: account_vat_period_end_statement
208#, python-format182msgid "Sign used in statement"
209msgid "Not every tax linked to tax code %s is linked the same base code"183msgstr "Sign used in statement"
210msgstr "Non tutte le imposte collegate al codice imposta %s sono collegate allo stesso codice imponibile"184
211185#: field:account.vat.period.end.statement,print_page_year:0
212#. module: account_vat_period_end_statement186#. module: account_vat_period_end_statement
213#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:34187msgid "Page number year"
188msgstr "Anno/Rif"
189
190#: field:account.vat.period.end.statement,date:0
191#. module: account_vat_period_end_statement
192msgid "Date"
193msgstr "Date"
194
195#: field:account.vat.period.end.statement,print_page_from:0
196#. module: account_vat_period_end_statement
197msgid "Page number from"
198msgstr "Da numero"
199
214#: model:ir.actions.report.xml,name:account_vat_period_end_statement.print_vat_period_end_statement200#: model:ir.actions.report.xml,name:account_vat_period_end_statement.print_vat_period_end_statement
201#. module: account_vat_period_end_statement
215msgid "VAT Statement Summary"202msgid "VAT Statement Summary"
216msgstr "Prospetto liquidazione IVA"203msgstr "Prospetto liquidazione IVA"
217204
205#: view:account.vat.period.end.statement:0
218#. module: account_vat_period_end_statement206#. module: account_vat_period_end_statement
219#: view:account.vat.period.end.statement:0
220msgid "Account Lines"207msgid "Account Lines"
221msgstr "Righe conti"208msgstr "Righe conti"
222209
223#. module: account_vat_period_end_statement
224#: field:statement.credit.account.line,account_id:0210#: field:statement.credit.account.line,account_id:0
225#: field:statement.debit.account.line,account_id:0211#: field:statement.debit.account.line,account_id:0
226#: field:statement.generic.account.line,account_id:0212#: field:statement.generic.account.line,account_id:0
213#. module: account_vat_period_end_statement
227msgid "Account"214msgid "Account"
228msgstr "Conto"215msgstr "Conto"
229216
230#. module: account_vat_period_end_statement
231#: field:account.vat.period.end.statement,generic_vat_account_line_ids:0217#: field:account.vat.period.end.statement,generic_vat_account_line_ids:0
218#. module: account_vat_period_end_statement
232msgid "Other VAT Credits / Debits or Tax Compensations"219msgid "Other VAT Credits / Debits or Tax Compensations"
233msgstr "Altri Crediti / Debiti per IVA o compensazioni di imposta"220msgstr "Altri Crediti / Debiti per IVA o compensazioni di imposta"
234221
235#. module: account_vat_period_end_statement
236#: help:account.tax.code,vat_statement_type:0222#: help:account.tax.code,vat_statement_type:0
223#. module: account_vat_period_end_statement
237msgid "This establish whether amount will be loaded as debit or credit"224msgid "This establish whether amount will be loaded as debit or credit"
238msgstr "Questo stabilisce se il saldo debba essere caricato come debito o come credito"225msgstr "Questo stabilisce se il saldo debba essere caricato come debito o come credito"
239226
240#. module: account_vat_period_end_statement
241#: view:account.vat.period.end.statement:0227#: view:account.vat.period.end.statement:0
242#: field:account.vat.period.end.statement,previous_credit_vat_account_id:0228#: field:account.vat.period.end.statement,previous_credit_vat_account_id:0
243#: code:addons/account_vat_period_end_statement/account.py:347229#. module: account_vat_period_end_statement
244#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:129
245#, python-format
246msgid "Previous Credits VAT"230msgid "Previous Credits VAT"
247msgstr "IVA crediti precedenti"231msgstr "IVA crediti precedenti"
248232
249#. module: account_vat_period_end_statement
250#: field:account.vat.period.end.statement,authority_vat_account_id:0233#: field:account.vat.period.end.statement,authority_vat_account_id:0
234#. module: account_vat_period_end_statement
251msgid "Tax Authority VAT Account"235msgid "Tax Authority VAT Account"
252msgstr "Conto IVA Erario"236msgstr "Conto IVA Erario"
253237
254#. module: account_vat_period_end_statement
255#: code:addons/account_vat_period_end_statement/account.py:273
256#, python-format
257msgid "You cannot delete a confirmed or paid statement"
258msgstr "Non è possibile eliminare una liquidazione confermata o pagata"
259
260#. module: account_vat_period_end_statement
261#: field:account.vat.period.end.statement,previous_credit_vat_amount:0238#: field:account.vat.period.end.statement,previous_credit_vat_amount:0
239#. module: account_vat_period_end_statement
262msgid "Previous Credits VAT Amount"240msgid "Previous Credits VAT Amount"
263msgstr "Importo IVA crediti precedenti"241msgstr "Importo IVA crediti precedenti"
264242
243#: view:remove.period.from.vat.statement:0
265#. module: account_vat_period_end_statement244#. module: account_vat_period_end_statement
266#: field:account.tax.code,vat_statement_account_id:0245msgid "Remove"
267msgid "Account used for VAT statement"246msgstr "Remove"
268msgstr "Conto utilizzato per la liquidazione IVA"
269247
248#: view:account.vat.period.end.statement:0
270#. module: account_vat_period_end_statement249#. module: account_vat_period_end_statement
271#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:95
272msgid "Summary"250msgid "Summary"
273msgstr "Riepilogo"251msgstr "Sommario"
274252
275#. module: account_vat_period_end_statement
276#: model:ir.model,name:account_vat_period_end_statement.model_statement_debit_account_line253#: model:ir.model,name:account_vat_period_end_statement.model_statement_debit_account_line
254#. module: account_vat_period_end_statement
277msgid "statement.debit.account.line"255msgid "statement.debit.account.line"
278msgstr "statement.debit.account.line"256msgstr "statement.debit.account.line"
279257
258#: selection:account.tax.code,vat_statement_type:0
280#. module: account_vat_period_end_statement259#. module: account_vat_period_end_statement
281#: field:account.vat.period.end.statement,deductible_vat_amount:0260msgid "Credit"
282msgid "Deductible VAT Amount"261msgstr "Credito"
283msgstr "Importo IVA Deducibile"
284262
285#. module: account_vat_period_end_statement
286#: field:statement.credit.account.line,amount:0263#: field:statement.credit.account.line,amount:0
287#: field:statement.debit.account.line,amount:0264#: field:statement.debit.account.line,amount:0
288#: field:statement.generic.account.line,amount:0265#: field:statement.generic.account.line,amount:0
266#. module: account_vat_period_end_statement
289msgid "Amount"267msgid "Amount"
290msgstr "Importo"268msgstr "Importo"
291269
270#: view:account.vat.period.end.statement:0
292#. module: account_vat_period_end_statement271#. module: account_vat_period_end_statement
293#: code:addons/account_vat_period_end_statement/account.py:414272msgid "Recompute amounts"
294#, python-format273msgstr "Recompute amounts"
295msgid "The payment term %s does not have due dates"
296msgstr "Il termine di pagamento %s non ha date di scadenza"
297274
298#. module: account_vat_period_end_statement
299#: view:account.vat.period.end.statement:0275#: view:account.vat.period.end.statement:0
300#: field:account.vat.period.end.statement,payment_ids:0276#: field:account.vat.period.end.statement,payment_ids:0
277#. module: account_vat_period_end_statement
301msgid "Payments"278msgid "Payments"
302msgstr "Pagamenti"279msgstr "Pagamenti"
303280
304#. module: account_vat_period_end_statement281#: field:account.vat.period.end.statement,authority_partner_id:0
305#: code:addons/account_vat_period_end_statement/account.py:413282#. module: account_vat_period_end_statement
306#: code:addons/account_vat_period_end_statement/report/vat_period_end_statement.py:35283msgid "Tax Authority Partner"
307#: code:addons/account_vat_period_end_statement/report/vat_period_end_statement.py:43284msgstr "Partner Erario"
308#: code:addons/account_vat_period_end_statement/report/vat_period_end_statement.py:48285
309#, python-format286#: model:ir.model,name:account_vat_period_end_statement.model_add_period_to_vat_statement
310msgid "Error"287#. module: account_vat_period_end_statement
311msgstr "Errore"288msgid "add.period.to.vat.statement"
312289msgstr "add.period.to.vat.statement"
313#. module: account_vat_period_end_statement290
314#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:146291#: model:ir.model,name:account_vat_period_end_statement.model_remove_period_from_vat_statement
315msgid "Amount to pay"292#. module: account_vat_period_end_statement
316msgstr "Totale da pagare"293msgid "remove.period.from.vat.statement"
317294msgstr "remove.period.from.vat.statement"
318#. module: account_vat_period_end_statement295
296#: view:account.vat.period.end.statement:0
297#. module: account_vat_period_end_statement
298msgid "Print Options"
299msgstr "Opzioni di stampa"
300
319#: field:account.vat.period.end.statement,residual:0301#: field:account.vat.period.end.statement,residual:0
302#. module: account_vat_period_end_statement
320msgid "Balance"303msgid "Balance"
321msgstr "Saldo"304msgstr "Saldo"
322305
323#. module: account_vat_period_end_statement
324#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:44
325#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:72
326msgid "VAT"
327msgstr "IVA"
328
329#. module: account_vat_period_end_statement
330#: view:account.tax.code:0306#: view:account.tax.code:0
307#. module: account_vat_period_end_statement
331msgid "Description"308msgid "Description"
332msgstr "Descrizione"309msgstr "Descrizione"
333310
334#. module: account_vat_period_end_statement
335#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:67
336msgid "Purchases"
337msgstr "Acquisti"
338
339#. module: account_vat_period_end_statement
340#: help:account.vat.period.end.statement,debit_vat_account_line_ids:0311#: help:account.vat.period.end.statement,debit_vat_account_line_ids:0
312#. module: account_vat_period_end_statement
341msgid "The accounts containing the debit VAT amount to write-off"313msgid "The accounts containing the debit VAT amount to write-off"
342msgstr "I conti contenenti l'IVA a debito da stornare"314msgstr "I conti contenenti l'IVA a debito da stornare"
343315
344#. module: account_vat_period_end_statement
345#: help:account.vat.period.end.statement,previous_debit_vat_account_id:0316#: help:account.vat.period.end.statement,previous_debit_vat_account_id:0
317#. module: account_vat_period_end_statement
346msgid "Debit VAT from previous periods"318msgid "Debit VAT from previous periods"
347msgstr "IVA a debito da periodi precedenti"319msgstr "IVA a debito da periodi precedenti"
348320
349#. module: account_vat_period_end_statement321#: field:account.vat.period.end.statement,state:0
350#: model:ir.model,name:account_vat_period_end_statement.model_account_vat_period_end_statement322#. module: account_vat_period_end_statement
351msgid "account.vat.period.end.statement"323msgid "State"
352msgstr "account.vat.period.end.statement"324msgstr "Stato"
353325
354#. module: account_vat_period_end_statement326#: field:account.vat.period.end.statement,deductible_vat_amount:0
355#: selection:account.tax.code,vat_statement_type:0327#. module: account_vat_period_end_statement
356#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:100328msgid "Deductible VAT Amount"
357msgid "Credit"329msgstr "Importo IVA Deducibile"
358msgstr "Credito"330
359331#: field:account.vat.period.end.statement,print_account_vat_group:0
360#. module: account_vat_period_end_statement332#. module: account_vat_period_end_statement
361#: view:account.vat.period.end.statement:0333msgid "Group by account VAT"
362#: model:ir.actions.act_window,name:account_vat_period_end_statement.action_account_vat_period_end_statement334msgstr "Raggruppa conti IVA"
363msgid "Vat statement"335
364msgstr "Liquidazione IVA"
365
366#. module: account_vat_period_end_statement
367#: field:account.vat.period.end.statement,debit_vat_account_line_ids:0336#: field:account.vat.period.end.statement,debit_vat_account_line_ids:0
368#: code:addons/account_vat_period_end_statement/account.py:313337#. module: account_vat_period_end_statement
369#, python-format
370msgid "Debit VAT"338msgid "Debit VAT"
371msgstr "IVA a debito"339msgstr "IVA a debito"
372340
373#. module: account_vat_period_end_statement
374#: field:account.vat.period.end.statement,payment_term_id:0341#: field:account.vat.period.end.statement,payment_term_id:0
342#. module: account_vat_period_end_statement
375msgid "Payment Term"343msgid "Payment Term"
376msgstr "Termine di pagamento"344msgstr "Termine di pagamento"
377345
346#: field:add.period.to.vat.statement,period_id:0
347#: field:remove.period.from.vat.statement,period_id:0
378#. module: account_vat_period_end_statement348#. module: account_vat_period_end_statement
379#: field:account.vat.period.end.statement,period_id:0
380#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:35
381msgid "Period"349msgid "Period"
382msgstr "Periodo"350msgstr "Periodo"
383351
384#. module: account_vat_period_end_statement352#: view:account.vat.period.end.statement:0
385#: constraint:account.tax.code:0353#: model:ir.actions.act_window,name:account_vat_period_end_statement.action_account_vat_period_end_statement
386msgid "Error ! You can not create recursive accounts."354#. module: account_vat_period_end_statement
387msgstr "Errore! Non puoi creare conti ricorsivi"355msgid "Vat statement"
388356msgstr "Liquidazione IVA"
389#. module: account_vat_period_end_statement357
390#: view:account.vat.period.end.statement:0358#: field:account.tax.code,vat_statement_account_id:0
391msgid "View chart of taxes for selected period"359#. module: account_vat_period_end_statement
392msgstr "Visualizza i conti imposta per il periodo selezionato"360msgid "Account used for VAT statement. The tax code balance will be associated to this account after selecting the period in VAT statement"
393361msgstr "Account used for VAT statement. The tax code balance will be associated to this account after selecting the period in VAT statement"
394#. module: account_vat_period_end_statement362
363#: view:account.vat.period.end.statement:0
364#. module: account_vat_period_end_statement
365msgid "Accounts"
366msgstr "Accounts"
367
368#: view:account.vat.period.end.statement:0
369#: field:account.vat.period.end.statement,period_ids:0
370#. module: account_vat_period_end_statement
371msgid "Periods"
372msgstr "Periodi"
373
395#: field:account.vat.period.end.statement,authority_vat_amount:0374#: field:account.vat.period.end.statement,authority_vat_amount:0
375#. module: account_vat_period_end_statement
396msgid "Authority VAT Amount"376msgid "Authority VAT Amount"
397msgstr "Importo IVA Erario"377msgstr "Importo IVA Erario"
398378
379#: view:account.vat.period.end.statement:0
399#. module: account_vat_period_end_statement380#. module: account_vat_period_end_statement
400#: view:account.vat.period.end.statement:0
401msgid "Other VAT Credits / Debits or Tax Compensations (Positive amounts for credits, negative for debits)"381msgid "Other VAT Credits / Debits or Tax Compensations (Positive amounts for credits, negative for debits)"
402msgstr "Altri crediti / debiti per IVA o compensazioni di imposta (importi positivi per i crediti, negativi per i debiti)"382msgstr "Altri crediti / debiti per IVA o compensazioni di imposta (importi positivi per i crediti, negativi per i debiti)"
403383
384#: view:account.vat.period.end.statement:0
404#. module: account_vat_period_end_statement385#. module: account_vat_period_end_statement
405#: view:account.vat.period.end.statement:0
406msgid "Create Move"386msgid "Create Move"
407msgstr "Crea movimento"387msgstr "Crea movimento"
408388
409#. module: account_vat_period_end_statement
410#: help:account.vat.period.end.statement,credit_vat_account_line_ids:0389#: help:account.vat.period.end.statement,credit_vat_account_line_ids:0
390#. module: account_vat_period_end_statement
411msgid "The accounts containing the credit VAT amount to write-off"391msgid "The accounts containing the credit VAT amount to write-off"
412msgstr "I conti contenenti l'IVA a credito da stornare"392msgstr "I conti contenenti l'IVA a credito da stornare"
413393
394#: field:account.vat.period.end.statement,journal_id:0
414#. module: account_vat_period_end_statement395#. module: account_vat_period_end_statement
415#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:59396msgid "Journal"
416#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:87397msgstr "Sezionale"
417#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:111
418#: report:addons/account_vat_period_end_statement/report/vat_period_end_statement.mako:124
419msgid "Total"
420msgstr "Totale"
421398
422#. module: account_vat_period_end_statement
423#: view:account.vat.period.end.statement:0399#: view:account.vat.period.end.statement:0
424msgid "Set to draft"
425msgstr "Imposta a bozza"
426
427#. module: account_vat_period_end_statement400#. module: account_vat_period_end_statement
428#: code:addons/account_vat_period_end_statement/account.py:298401msgid "Page Number"
429#, python-format402msgstr "Numerazione Pagine"
430msgid "The current period has VAT statement yet"
431msgstr "Il periodo selezionato ha già una dichiarazione IVA"
432403
433404
=== 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-03-13 10:02:00 +0000
@@ -140,26 +140,56 @@
140 <th> ${ _('Debit') }</th>140 <th> ${ _('Debit') }</th>
141 <th> ${ _('Credit') }</th>141 <th> ${ _('Credit') }</th>
142 </tr>142 </tr>
143 %for debit_line in statement.debit_vat_account_line_ids :143 ## VAT account DEBIT
144 ## Vat account grouped by id
145 %if statement.print_account_vat_group :
146 <% totals_by_account = {} %>
147 <% vat_accounts = account_vat_amounts("debit", statement.debit_vat_account_line_ids) %>
148 %for vat_account_id in vat_accounts :
149 <tr >
150 <td>${ vat_accounts[vat_account_id]['account_name']|entity }</td>
151 <td style="text-align:right">${ formatLang(vat_accounts[vat_account_id]['amount'])|entity }</td>
152 <td></td>
153 </tr>
154 %endfor
155 ## Vat account detail
156 %else:
157 %for debit_line in statement.debit_vat_account_line_ids :
144 <tr >158 <tr >
145 <td>${ debit_line.account_id.name|entity }</td>159 <td>${ debit_line.account_id.name|entity }</td>
146 <td>${ formatLang(debit_line.amount)|entity }</td>160 <td>${ formatLang(debit_line.amount)|entity }</td>
147 <td></td>161 <td></td>
148 </tr>162 </tr>
149 %endfor163 %endfor
164 %endif
150 <!--165 <!--
151 <tr >166 <tr >
152 <td>${_("Total")}</td>167 <td>${_("Total")}</td>
153 <td>${ statement.payable_vat_amount|entity }</td>168 <td>${ statement.payable_vat_amount|entity }</td>
154 </tr>169 </tr>
155 -->170 -->
156 %for credit_line in statement.credit_vat_account_line_ids :171 ## VAT account CREDIT
172 ## Vat account grouped by id
173 %if statement.print_account_vat_group :
174 <% totals_by_account = {} %>
175 <% vat_accounts = account_vat_amounts("credit", statement.credit_vat_account_line_ids) %>
176 %for vat_account_id in vat_accounts :
177 <tr >
178 <td>${ vat_accounts[vat_account_id]['account_name']|entity }</td>
179 <td></td>
180 <td style="text-align:right">${ formatLang(vat_accounts[vat_account_id]['amount'])|entity }</td>
181 </tr>
182 %endfor
183 ## Vat account detail
184 %else:
185 %for credit_line in statement.credit_vat_account_line_ids :
157 <tr >186 <tr >
158 <td>${ credit_line.account_id.name|entity }</td>187 <td>${ credit_line.account_id.name|entity }</td>
159 <td></td>188 <td></td>
160 <td>${ formatLang(credit_line.amount)|entity }</td>189 <td>${ formatLang(credit_line.amount)|entity }</td>
161 </tr>190 </tr>
162 %endfor191 %endfor
192 %endif
163 <!--193 <!--
164 <tr >194 <tr >
165 <td>${_("Total")}</td>195 <td>${_("Total")}</td>
@@ -169,18 +199,18 @@
169 <tr >199 <tr >
170 <td>${_("Previous Credits VAT")}</td>200 <td>${_("Previous Credits VAT")}</td>
171 <td></td>201 <td></td>
172 <td>${ formatLang(statement.previous_credit_vat_amount)|entity }</td>202 <td style="text-align:right">${ formatLang(statement.previous_credit_vat_amount)|entity }</td>
173 </tr>203 </tr>
174 <tr >204 <tr >
175 <td>${_("Previous Debits VAT")}</td>205 <td>${_("Previous Debits VAT")}</td>
176 <td>${ formatLang(statement.previous_debit_vat_amount)|entity }</td>206 <td style="text-align:right">${ formatLang(statement.previous_debit_vat_amount)|entity }</td>
177 <td></td>207 <td></td>
178 </tr>208 </tr>
179 %for generic_line in statement.generic_vat_account_line_ids :209 %for generic_line in statement.generic_vat_account_line_ids :
180 <tr >210 <tr >
181 <td>${ generic_line.account_id.name|entity }</td>211 <td>${ generic_line.account_id.name|entity }</td>
182 <td>${ generic_line.amount < 0 and formatLang(generic_line.amount) or ''|entity }</td>212 <td style="text-align:right">${ generic_line.amount < 0 and formatLang(generic_line.amount) or ''|entity }</td>
183 <td>${ generic_line.amount > 0 and formatLang(generic_line.amount) or ''|entity }</td>213 <td style="text-align:right">${ generic_line.amount > 0 and formatLang(generic_line.amount) or ''|entity }</td>
184 </tr>214 </tr>
185 %endfor215 %endfor
186 <tr >216 <tr >
187217
=== modified file 'account_vat_period_end_statement/report/vat_period_end_statement.py'
--- account_vat_period_end_statement/report/vat_period_end_statement.py 2013-06-20 09:36:52 +0000
+++ account_vat_period_end_statement/report/vat_period_end_statement.py 2014-03-13 10:02:00 +0000
@@ -68,6 +68,29 @@
68 res = self._build_codes_dict(tax_code, res=res, context=context)68 res = self._build_codes_dict(tax_code, res=res, context=context)
69 return res69 return res
70 70
71 def _get_account_vat_amounts(self, type='credit', statement_account_line=[], context=None):
72 if context is None:
73 context = {}
74 if type == 'credit':
75 stat_line_obj = self.pool.get('statement.credit.account.line')
76 elif type == 'debit':
77 stat_line_obj = self.pool.get('statement.debit.account.line')
78 else:
79 raise orm.except_orm(_('Error'), _('Type account neither credit or debit !'))
80
81 account_amounts = {}
82 for line in statement_account_line:
83 account_id = line.account_id.id
84 if account_id not in account_amounts:
85 account_amounts[account_id] = {
86 'account_id' : line.account_id.id,
87 'account_name' : line.account_id.name,
88 'amount' : line.amount
89 }
90 else:
91 account_amounts[account_id]['amount'] += line.amount
92 return account_amounts
93
71 def find_period(self, date,context=None):94 def find_period(self, date,context=None):
72 if context is None:95 if context is None:
73 context = {}96 context = {}
@@ -81,10 +104,13 @@
81 if context is None:104 if context is None:
82 context = {}105 context = {}
83 super(print_vat_period_end_statement, self).__init__(cr, uid, name, context=context)106 super(print_vat_period_end_statement, self).__init__(cr, uid, name, context=context)
107 if context.get('active_id'):
108 vat_statement = self.pool.get('account.vat.period.end.statement').browse(cr, uid, context.get('active_id'))
84 self.localcontext.update( {109 self.localcontext.update( {
85 'time': time,110 'time': time,
86 'tax_codes_amounts': self._get_tax_codes_amounts,111 'tax_codes_amounts': self._get_tax_codes_amounts,
87 'find_period': self.find_period,112 'find_period': self.find_period,
113 'account_vat_amounts': self._get_account_vat_amounts,
88 })114 })
89 self.context = context115 self.context = context
90116
91117
=== modified file 'account_vat_period_end_statement/reports.xml'
--- account_vat_period_end_statement/reports.xml 2013-03-16 13:18:33 +0000
+++ account_vat_period_end_statement/reports.xml 2014-03-13 10:02:00 +0000
@@ -1,6 +1,87 @@
1<?xml version="1.0"?>1<?xml version="1.0"?>
2<openerp>2<openerp>
3 <data>3 <data noupdate="1">
4 <record id="ir_header_webkit_vat_period_end_statement" model="ir.header_webkit">
5 <field name="orientation">Portrait</field>
6 <field name="format">A4</field>
7 <field name="margin_top">50</field>
8 <field name="html"><![CDATA[<html>
9 <head>
10 <meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
11 <script>
12 function subst() {
13 var vars={};
14 var x=document.location.search.substring(1).split('&');
15 for(var i in x) {var z=x[i].split('=',2);vars[z[0]] = unescape(z[1]);}
16 var x=['frompage','topage','page','webpage','section','subsection','subsubsection'];
17 for(var i in x) {
18 var y = document.getElementsByClassName(x[i]);
19 for(var j=0; j<y.length; ++j) y[j].textContent = vars[x[i]];
20 }
21 }
22 </script>
23 </head>
24 <body style="border:0; margin: 0;" onload="subst()">
25 <% setLang(company.partner_id.lang or "en_US") %>
26 <h3>${company.partner_id.name or ''|entity}</h3>
27 <table style="border-bottom: 4px solid black; width: 100%; padding-bottom: 8px">
28 <tr>
29 <td>
30 <div>${company.partner_id.street or ''|entity}</div>
31 <div>${company.partner_id.street2 or ''|entity}</div>
32 <div>${company.partner_id.zip or ''|entity}</div>
33 <div>${company.partner_id.city or ''|entity}</div>
34 <div>${company.partner_id.province and company.partner_id.province.code or ''|entity}</div>
35 </td>
36 <td>
37 <div>P. IVA: ${company.partner_id.vat or ''|entity}</div>
38 <div>Codice Fiscale: ${company.partner_id.fiscalcode or ''|entity}</div>
39
40 </td>
41 </tr>
42 </table>
43 <br/>
44 </body>
45</html>]]>
46</field>
47 <field name="footer_html"><![CDATA[<html>
48 <head>
49 <meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
50 <script>
51 function subst() {
52 var vars={};
53 var x=document.location.search.substring(1).split('&');
54 for(var i in x) {var z=x[i].split('=',2);vars[z[0]] = unescape(z[1]);}
55 var x=['frompage','topage','page','webpage','section','subsection','subsubsection'];
56 for(var i in x) {
57 var y = document.getElementsByClassName(x[i]);
58 for(var j=0; j<y.length; ++j) {
59 if(x[i] == 'page') {y[j].textContent = eval(vars[x[i]]) + ${objects[0].print_page_from -1};}
60 else{y[j].textContent = vars[x[i]];}
61 }
62
63 }
64 }
65 </script>
66 </head>
67 <body style="border:0; margin: 0;" onload="subst()">
68 <table style="border-top: 1px solid black; width: 100%">
69 <tr >
70 <td style="text-align:right;font-size:12;" width="95%">Page ${objects[0].print_page_year or ''|entity}/<span class="page"/></td><td style="text-align:left;font-size:12;"></td>
71 </tr>
72 </table>
73 </body>
74</html>]]></field><field name="css" ><![CDATA[
75tr {
76 page-break-inside: avoid;
77}
78thead{
79 display: table-header-group; /* http://code.google.com/p/wkhtmltopdf/issues/detail?id=9#c8 */
80}
81]]> </field>
82 <field name="name">VAT Statement Summary</field>
83 </record>
84
485
5 <report86 <report
6 auto="False"87 auto="False"
@@ -9,6 +90,7 @@
9 name="account.print.vat.period.end.statement"90 name="account.print.vat.period.end.statement"
10 file="account_vat_period_end_statement/report/vat_period_end_statement.mako"91 file="account_vat_period_end_statement/report/vat_period_end_statement.mako"
11 string="VAT Statement Summary"92 string="VAT Statement Summary"
93 webkit_header = "ir_header_webkit_vat_period_end_statement"
12 report_type="webkit" />94 report_type="webkit" />
1395
14 </data>96 </data>

Subscribers

People subscribed via source and target branches