odoo-addon-account-financial-report 17.0.1.6.1.1__py3-none-any.whl → 18.0.1.0.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of odoo-addon-account-financial-report might be problematic. Click here for more details.
- odoo/addons/account_financial_report/README.rst +15 -8
- odoo/addons/account_financial_report/__manifest__.py +3 -2
- odoo/addons/account_financial_report/i18n/account_financial_report.pot +1 -124
- odoo/addons/account_financial_report/i18n/ar.po +3 -100
- odoo/addons/account_financial_report/i18n/ca.po +1 -100
- odoo/addons/account_financial_report/i18n/de.po +3 -100
- odoo/addons/account_financial_report/i18n/es.po +0 -100
- odoo/addons/account_financial_report/i18n/es_AR.po +0 -100
- odoo/addons/account_financial_report/i18n/es_MX.po +0 -100
- odoo/addons/account_financial_report/i18n/fr.po +0 -100
- odoo/addons/account_financial_report/i18n/fr_CH.po +1 -100
- odoo/addons/account_financial_report/i18n/fr_FR.po +0 -100
- odoo/addons/account_financial_report/i18n/hr.po +0 -100
- odoo/addons/account_financial_report/i18n/hr_HR.po +3 -100
- odoo/addons/account_financial_report/i18n/it.po +3 -107
- odoo/addons/account_financial_report/i18n/ja.po +3 -100
- odoo/addons/account_financial_report/i18n/nl.po +1 -100
- odoo/addons/account_financial_report/i18n/nl_NL.po +2 -100
- odoo/addons/account_financial_report/i18n/pt.po +0 -100
- odoo/addons/account_financial_report/i18n/pt_BR.po +0 -100
- odoo/addons/account_financial_report/i18n/ro.po +1 -100
- odoo/addons/account_financial_report/i18n/sv.po +0 -100
- odoo/addons/account_financial_report/i18n/tr.po +0 -100
- odoo/addons/account_financial_report/models/account.py +1 -1
- odoo/addons/account_financial_report/models/account_age_report_configuration.py +6 -4
- odoo/addons/account_financial_report/models/account_group.py +3 -3
- odoo/addons/account_financial_report/readme/CONFIGURE.md +1 -1
- odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +2 -1
- odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
- odoo/addons/account_financial_report/report/__init__.py +3 -3
- odoo/addons/account_financial_report/report/abstract_report.py +3 -1
- odoo/addons/account_financial_report/report/abstract_report_xlsx.py +5 -5
- odoo/addons/account_financial_report/report/aged_partner_balance.py +16 -20
- odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +30 -30
- odoo/addons/account_financial_report/report/general_ledger.py +26 -14
- odoo/addons/account_financial_report/report/general_ledger_xlsx.py +3 -3
- odoo/addons/account_financial_report/report/journal_ledger.py +9 -9
- odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/open_items.py +1 -1
- odoo/addons/account_financial_report/report/open_items_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +29 -27
- odoo/addons/account_financial_report/report/templates/general_ledger.xml +2 -2
- odoo/addons/account_financial_report/report/templates/journal_ledger.xml +58 -66
- odoo/addons/account_financial_report/report/templates/layouts.xml +3 -9
- odoo/addons/account_financial_report/report/templates/trial_balance.xml +3 -5
- odoo/addons/account_financial_report/report/trial_balance.py +27 -30
- odoo/addons/account_financial_report/report/trial_balance_xlsx.py +1 -1
- odoo/addons/account_financial_report/report/vat_report.py +8 -4
- odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
- odoo/addons/account_financial_report/static/description/index.html +15 -8
- odoo/addons/account_financial_report/static/src/js/report.esm.js +1 -2
- odoo/addons/account_financial_report/static/src/js/report_action.esm.js +0 -1
- odoo/addons/account_financial_report/static/src/{css/report.css → scss/report.scss} +74 -42
- odoo/addons/account_financial_report/static/src/scss/report_html.scss +10 -0
- odoo/addons/account_financial_report/tests/__init__.py +1 -1
- odoo/addons/account_financial_report/tests/test_general_ledger.py +3 -3
- odoo/addons/account_financial_report/tests/test_journal_ledger.py +3 -4
- odoo/addons/account_financial_report/tests/test_open_items.py +2 -2
- odoo/addons/account_financial_report/tests/test_trial_balance.py +15 -8
- odoo/addons/account_financial_report/tests/test_vat_report.py +4 -5
- odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +6 -6
- odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +6 -4
- odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +5 -5
- odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +8 -4
- odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/open_items_wizard.py +1 -1
- odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +10 -8
- odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +14 -14
- odoo/addons/account_financial_report/wizard/vat_report_wizard.py +2 -2
- odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/METADATA +20 -13
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/RECORD +76 -75
- odoo/addons/account_financial_report/static/src/css/report_html.css +0 -7
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/WHEEL +0 -0
- {odoo_addon_account_financial_report-17.0.1.6.1.1.dist-info → odoo_addon_account_financial_report-18.0.1.0.0.3.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ msgstr ""
|
|
|
7
7
|
"Project-Id-Version: Odoo Server 12.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
9
|
"POT-Creation-Date: 2019-06-03 12:07+0000\n"
|
|
10
|
-
"PO-Revision-Date: 2024-
|
|
10
|
+
"PO-Revision-Date: 2024-10-22 10:06+0000\n"
|
|
11
11
|
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
|
12
12
|
"Language-Team: \n"
|
|
13
13
|
"Language: it\n"
|
|
@@ -60,10 +60,6 @@ msgid ""
|
|
|
60
60
|
" Duplicate amounts may be shown because more than one "
|
|
61
61
|
"analytical account may be defined in the journal items."
|
|
62
62
|
msgstr ""
|
|
63
|
-
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
64
|
-
" Si possono visualizzare valori duplicati perché può "
|
|
65
|
-
"essere stato definito più di un conto analitico nelle registrazioni "
|
|
66
|
-
"contabili."
|
|
67
63
|
|
|
68
64
|
#. module: account_financial_report
|
|
69
65
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
@@ -106,7 +102,6 @@ msgstr "Sintesi XLSX resoconto conto economico"
|
|
|
106
102
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
107
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
108
104
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
109
|
-
#, python-format
|
|
110
105
|
msgid "Account"
|
|
111
106
|
msgstr "Conto"
|
|
112
107
|
|
|
@@ -139,7 +134,6 @@ msgstr "Gruppo contabile"
|
|
|
139
134
|
#. module: account_financial_report
|
|
140
135
|
#. odoo-python
|
|
141
136
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
142
|
-
#, python-format
|
|
143
137
|
msgid "Account Name"
|
|
144
138
|
msgstr "Nome conto"
|
|
145
139
|
|
|
@@ -147,7 +141,6 @@ msgstr "Nome conto"
|
|
|
147
141
|
#. odoo-python
|
|
148
142
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
149
143
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
150
|
-
#, python-format
|
|
151
144
|
msgid "Account at 0 filter"
|
|
152
145
|
msgstr "Filtro conto a 0"
|
|
153
146
|
|
|
@@ -157,7 +150,6 @@ msgstr "Filtro conto a 0"
|
|
|
157
150
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
158
151
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
159
152
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
160
|
-
#, python-format
|
|
161
153
|
msgid "Account balance at 0 filter"
|
|
162
154
|
msgstr "Filtro saldo conto a 0"
|
|
163
155
|
|
|
@@ -193,7 +185,6 @@ msgstr ""
|
|
|
193
185
|
#. module: account_financial_report
|
|
194
186
|
#. odoo-python
|
|
195
187
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
196
|
-
#, python-format
|
|
197
188
|
msgid "Age ≤ 120 d."
|
|
198
189
|
msgstr "Età ≤ 120 g."
|
|
199
190
|
|
|
@@ -209,7 +200,6 @@ msgstr ""
|
|
|
209
200
|
#. module: account_financial_report
|
|
210
201
|
#. odoo-python
|
|
211
202
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
212
|
-
#, python-format
|
|
213
203
|
msgid "Age ≤ 30 d."
|
|
214
204
|
msgstr "Età ≤ 30 g."
|
|
215
205
|
|
|
@@ -225,7 +215,6 @@ msgstr ""
|
|
|
225
215
|
#. module: account_financial_report
|
|
226
216
|
#. odoo-python
|
|
227
217
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
228
|
-
#, python-format
|
|
229
218
|
msgid "Age ≤ 60 d."
|
|
230
219
|
msgstr "Età ≤ 60 g."
|
|
231
220
|
|
|
@@ -241,7 +230,6 @@ msgstr ""
|
|
|
241
230
|
#. module: account_financial_report
|
|
242
231
|
#. odoo-python
|
|
243
232
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
244
|
-
#, python-format
|
|
245
233
|
msgid "Age ≤ 90 d."
|
|
246
234
|
msgstr "Età ≤ 90 g."
|
|
247
235
|
|
|
@@ -252,7 +240,6 @@ msgstr "Età ≤ 90 g."
|
|
|
252
240
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
253
241
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
254
242
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
255
|
-
#, python-format
|
|
256
243
|
msgid "Aged Partner Balance"
|
|
257
244
|
msgstr "Scadenzario clienti/fornitori"
|
|
258
245
|
|
|
@@ -284,7 +271,6 @@ msgstr "Scadenzario clienti/fornitori XLSX"
|
|
|
284
271
|
#. module: account_financial_report
|
|
285
272
|
#. odoo-python
|
|
286
273
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
287
|
-
#, python-format
|
|
288
274
|
msgid "All"
|
|
289
275
|
msgstr "Tutte"
|
|
290
276
|
|
|
@@ -316,7 +302,6 @@ msgstr "Tutte le registrazioni confermate"
|
|
|
316
302
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
317
303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
318
304
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
319
|
-
#, python-format
|
|
320
305
|
msgid "All entries"
|
|
321
306
|
msgstr "Tutte le registrazioni"
|
|
322
307
|
|
|
@@ -330,7 +315,6 @@ msgstr "Tutte le registrazioni"
|
|
|
330
315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
331
316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
332
317
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
333
|
-
#, python-format
|
|
334
318
|
msgid "All posted entries"
|
|
335
319
|
msgstr "Tutte le registrazioni confermate"
|
|
336
320
|
|
|
@@ -342,7 +326,6 @@ msgstr "Importo Val."
|
|
|
342
326
|
#. module: account_financial_report
|
|
343
327
|
#. odoo-python
|
|
344
328
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
345
|
-
#, python-format
|
|
346
329
|
msgid "Amount Currency"
|
|
347
330
|
msgstr "Importo valuta"
|
|
348
331
|
|
|
@@ -350,7 +333,6 @@ msgstr "Importo valuta"
|
|
|
350
333
|
#. odoo-python
|
|
351
334
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
352
335
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
353
|
-
#, python-format
|
|
354
336
|
msgid "Amount cur."
|
|
355
337
|
msgstr "Importo val."
|
|
356
338
|
|
|
@@ -364,7 +346,6 @@ msgstr "Conto analitico"
|
|
|
364
346
|
#. odoo-python
|
|
365
347
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
366
348
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
367
|
-
#, python-format
|
|
368
349
|
msgid "Analytic Distribution"
|
|
369
350
|
msgstr "Distribuzione analitica"
|
|
370
351
|
|
|
@@ -383,21 +364,18 @@ msgstr "Importo imponibile"
|
|
|
383
364
|
#. module: account_financial_report
|
|
384
365
|
#. odoo-python
|
|
385
366
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
386
|
-
#, python-format
|
|
387
367
|
msgid "Base Balance"
|
|
388
368
|
msgstr "Saldo imponibile"
|
|
389
369
|
|
|
390
370
|
#. module: account_financial_report
|
|
391
371
|
#. odoo-python
|
|
392
372
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
393
|
-
#, python-format
|
|
394
373
|
msgid "Base Credit"
|
|
395
374
|
msgstr "Imponibile avere"
|
|
396
375
|
|
|
397
376
|
#. module: account_financial_report
|
|
398
377
|
#. odoo-python
|
|
399
378
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
400
|
-
#, python-format
|
|
401
379
|
msgid "Base Debit"
|
|
402
380
|
msgstr "Imponibile dare"
|
|
403
381
|
|
|
@@ -410,7 +388,6 @@ msgstr "Basato su"
|
|
|
410
388
|
#. module: account_financial_report
|
|
411
389
|
#. odoo-python
|
|
412
390
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
413
|
-
#, python-format
|
|
414
391
|
msgid "Based on"
|
|
415
392
|
msgstr "Basato su"
|
|
416
393
|
|
|
@@ -428,7 +405,6 @@ msgstr "Annulla"
|
|
|
428
405
|
#. odoo-python
|
|
429
406
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
430
407
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
431
|
-
#, python-format
|
|
432
408
|
msgid "Centralize filter"
|
|
433
409
|
msgstr "Filtro centralizzazione"
|
|
434
410
|
|
|
@@ -448,7 +424,6 @@ msgstr "Gruppi figli"
|
|
|
448
424
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
449
425
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
450
426
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
451
|
-
#, python-format
|
|
452
427
|
msgid "Code"
|
|
453
428
|
msgstr "Codice"
|
|
454
429
|
|
|
@@ -463,7 +438,6 @@ msgstr "Codice"
|
|
|
463
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
464
439
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
465
440
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
466
|
-
#, python-format
|
|
467
441
|
msgid "Company"
|
|
468
442
|
msgstr "Azienda"
|
|
469
443
|
|
|
@@ -516,7 +490,6 @@ msgstr "Creato il"
|
|
|
516
490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
517
491
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
518
492
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
519
|
-
#, python-format
|
|
520
493
|
msgid "Credit"
|
|
521
494
|
msgstr "Avere"
|
|
522
495
|
|
|
@@ -524,7 +497,6 @@ msgstr "Avere"
|
|
|
524
497
|
#. odoo-python
|
|
525
498
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
526
499
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
527
|
-
#, python-format
|
|
528
500
|
msgid "Cumul cur."
|
|
529
501
|
msgstr "Valuta acc."
|
|
530
502
|
|
|
@@ -532,7 +504,6 @@ msgstr "Valuta acc."
|
|
|
532
504
|
#. odoo-python
|
|
533
505
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
534
506
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
535
|
-
#, python-format
|
|
536
507
|
msgid "Cumul. Bal."
|
|
537
508
|
msgstr "Saldo progr."
|
|
538
509
|
|
|
@@ -541,7 +512,6 @@ msgstr "Saldo progr."
|
|
|
541
512
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
542
513
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
543
514
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
544
|
-
#, python-format
|
|
545
515
|
msgid "Cur."
|
|
546
516
|
msgstr "Val."
|
|
547
517
|
|
|
@@ -549,7 +519,6 @@ msgstr "Val."
|
|
|
549
519
|
#. odoo-python
|
|
550
520
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
551
521
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
552
|
-
#, python-format
|
|
553
522
|
msgid "Cur. Original"
|
|
554
523
|
msgstr "Valuta originale"
|
|
555
524
|
|
|
@@ -557,14 +526,12 @@ msgstr "Valuta originale"
|
|
|
557
526
|
#. odoo-python
|
|
558
527
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
559
528
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
560
|
-
#, python-format
|
|
561
529
|
msgid "Cur. Residual"
|
|
562
530
|
msgstr "Residuo valuta"
|
|
563
531
|
|
|
564
532
|
#. module: account_financial_report
|
|
565
533
|
#. odoo-python
|
|
566
534
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
567
|
-
#, python-format
|
|
568
535
|
msgid "Currency"
|
|
569
536
|
msgstr "Valuta"
|
|
570
537
|
|
|
@@ -572,7 +539,6 @@ msgstr "Valuta"
|
|
|
572
539
|
#. odoo-python
|
|
573
540
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
574
541
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
575
|
-
#, python-format
|
|
576
542
|
msgid "Current"
|
|
577
543
|
msgstr "Attuale"
|
|
578
544
|
|
|
@@ -587,7 +553,6 @@ msgstr "Attuale"
|
|
|
587
553
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
588
554
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
589
555
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
590
|
-
#, python-format
|
|
591
556
|
msgid "Date"
|
|
592
557
|
msgstr "Data"
|
|
593
558
|
|
|
@@ -619,14 +584,12 @@ msgstr "Alla data"
|
|
|
619
584
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
620
585
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
621
586
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
622
|
-
#, python-format
|
|
623
587
|
msgid "Date at filter"
|
|
624
588
|
msgstr "Filtro alla data"
|
|
625
589
|
|
|
626
590
|
#. module: account_financial_report
|
|
627
591
|
#. odoo-python
|
|
628
592
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
629
|
-
#, python-format
|
|
630
593
|
msgid "Date from"
|
|
631
594
|
msgstr "Dalla data"
|
|
632
595
|
|
|
@@ -645,14 +608,12 @@ msgstr "Intervallo date"
|
|
|
645
608
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
646
609
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
647
610
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
648
|
-
#, python-format
|
|
649
611
|
msgid "Date range filter"
|
|
650
612
|
msgstr "Filtro intervallo di date"
|
|
651
613
|
|
|
652
614
|
#. module: account_financial_report
|
|
653
615
|
#. odoo-python
|
|
654
616
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
655
|
-
#, python-format
|
|
656
617
|
msgid "Date to"
|
|
657
618
|
msgstr "Alla data"
|
|
658
619
|
|
|
@@ -666,7 +627,6 @@ msgstr "Alla data"
|
|
|
666
627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
667
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
668
629
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
669
|
-
#, python-format
|
|
670
630
|
msgid "Debit"
|
|
671
631
|
msgstr "Dare"
|
|
672
632
|
|
|
@@ -675,7 +635,6 @@ msgstr "Dare"
|
|
|
675
635
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
676
636
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
677
637
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
678
|
-
#, python-format
|
|
679
638
|
msgid "Description"
|
|
680
639
|
msgstr "Descrizione"
|
|
681
640
|
|
|
@@ -736,7 +695,6 @@ msgstr ""
|
|
|
736
695
|
#. odoo-python
|
|
737
696
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
738
697
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
739
|
-
#, python-format
|
|
740
698
|
msgid "Due date"
|
|
741
699
|
msgstr "Scadenza"
|
|
742
700
|
|
|
@@ -774,7 +732,6 @@ msgstr "Finale conto in un intervallo"
|
|
|
774
732
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
775
733
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
776
734
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
777
|
-
#, python-format
|
|
778
735
|
msgid "Ending balance"
|
|
779
736
|
msgstr "Saldo finale"
|
|
780
737
|
|
|
@@ -790,7 +747,6 @@ msgstr ""
|
|
|
790
747
|
#. module: account_financial_report
|
|
791
748
|
#. odoo-python
|
|
792
749
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
793
|
-
#, python-format
|
|
794
750
|
msgid "Entries sorted by"
|
|
795
751
|
msgstr "Registrazioni ordinate per"
|
|
796
752
|
|
|
@@ -804,21 +760,18 @@ msgstr "Registrazioni ordinate per"
|
|
|
804
760
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
805
761
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
806
762
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
807
|
-
#, python-format
|
|
808
763
|
msgid "Entry"
|
|
809
764
|
msgstr "Registrazione"
|
|
810
765
|
|
|
811
766
|
#. module: account_financial_report
|
|
812
767
|
#. odoo-python
|
|
813
768
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
814
|
-
#, python-format
|
|
815
769
|
msgid "Entry number"
|
|
816
770
|
msgstr "Numero registrazione"
|
|
817
771
|
|
|
818
772
|
#. module: account_financial_report
|
|
819
773
|
#. odoo-javascript
|
|
820
774
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
821
|
-
#, python-format
|
|
822
775
|
msgid "Export"
|
|
823
776
|
msgstr "Esporta"
|
|
824
777
|
|
|
@@ -899,7 +852,6 @@ msgstr "Da:"
|
|
|
899
852
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
900
853
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
901
854
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
902
|
-
#, python-format
|
|
903
855
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
904
856
|
msgstr "Dal: %(date_from)s Al: %(date_to)s"
|
|
905
857
|
|
|
@@ -927,7 +879,6 @@ msgstr "Data inizio anno fiscale"
|
|
|
927
879
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
928
880
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
929
881
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
930
|
-
#, python-format
|
|
931
882
|
msgid "General Ledger"
|
|
932
883
|
msgstr "Mastrino"
|
|
933
884
|
|
|
@@ -992,7 +943,6 @@ msgstr ""
|
|
|
992
943
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
993
944
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
994
945
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
995
|
-
#, python-format
|
|
996
946
|
msgid "Hide"
|
|
997
947
|
msgstr "Nascondi"
|
|
998
948
|
|
|
@@ -1041,7 +991,6 @@ msgstr "Limite inferiore"
|
|
|
1041
991
|
#. module: account_financial_report
|
|
1042
992
|
#. odoo-python
|
|
1043
993
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1044
|
-
#, python-format
|
|
1045
994
|
msgid "Inferior Limit must be greather than zero"
|
|
1046
995
|
msgstr "Il limite inferiore deve essere maggiore di zero"
|
|
1047
996
|
|
|
@@ -1068,7 +1017,6 @@ msgstr ""
|
|
|
1068
1017
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1069
1018
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1070
1019
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1071
|
-
#, python-format
|
|
1072
1020
|
msgid "Initial balance"
|
|
1073
1021
|
msgstr "Saldo iniziale"
|
|
1074
1022
|
|
|
@@ -1088,7 +1036,6 @@ msgstr "Configurazione intervalli"
|
|
|
1088
1036
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1089
1037
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1090
1038
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1091
|
-
#, python-format
|
|
1092
1039
|
msgid "Journal"
|
|
1093
1040
|
msgstr "Registro"
|
|
1094
1041
|
|
|
@@ -1108,7 +1055,6 @@ msgstr "Dominio movimenti contabili"
|
|
|
1108
1055
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1109
1056
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1110
1057
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1111
|
-
#, python-format
|
|
1112
1058
|
msgid "Journal Ledger"
|
|
1113
1059
|
msgstr "Libro Mastro"
|
|
1114
1060
|
|
|
@@ -1142,7 +1088,6 @@ msgstr "Resoconto XLSX libro mastro"
|
|
|
1142
1088
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1143
1089
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1144
1090
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1145
|
-
#, python-format
|
|
1146
1091
|
msgid "Journals"
|
|
1147
1092
|
msgstr "Sezionali"
|
|
1148
1093
|
|
|
@@ -1179,7 +1124,6 @@ msgstr "Livello"
|
|
|
1179
1124
|
#. module: account_financial_report
|
|
1180
1125
|
#. odoo-python
|
|
1181
1126
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1182
|
-
#, python-format
|
|
1183
1127
|
msgid "Level %s"
|
|
1184
1128
|
msgstr "Livello %s"
|
|
1185
1129
|
|
|
@@ -1188,7 +1132,6 @@ msgstr "Livello %s"
|
|
|
1188
1132
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1189
1133
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1190
1134
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1191
|
-
#, python-format
|
|
1192
1135
|
msgid "Limit hierarchy levels"
|
|
1193
1136
|
msgstr "Limitare i livelli della gerarchia"
|
|
1194
1137
|
|
|
@@ -1202,7 +1145,6 @@ msgstr "Riga"
|
|
|
1202
1145
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1203
1146
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1204
1147
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1205
|
-
#, python-format
|
|
1206
1148
|
msgid "Missing Partner"
|
|
1207
1149
|
msgstr "Partner mancante"
|
|
1208
1150
|
|
|
@@ -1230,7 +1172,6 @@ msgstr "Registrazioni"
|
|
|
1230
1172
|
#. module: account_financial_report
|
|
1231
1173
|
#. odoo-python
|
|
1232
1174
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1233
|
-
#, python-format
|
|
1234
1175
|
msgid "Must complete Configuration Lines"
|
|
1235
1176
|
msgstr "Serve completare le righe di configurazione"
|
|
1236
1177
|
|
|
@@ -1243,15 +1184,11 @@ msgstr "Serve completare le righe di configurazione"
|
|
|
1243
1184
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1244
1185
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1245
1186
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1246
|
-
#, python-format
|
|
1247
1187
|
msgid "Name"
|
|
1248
1188
|
msgstr "Nome"
|
|
1249
1189
|
|
|
1250
1190
|
#. module: account_financial_report
|
|
1251
|
-
#. odoo-python
|
|
1252
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1253
1191
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1254
|
-
#, python-format
|
|
1255
1192
|
msgid "Name must be unique per report configuration"
|
|
1256
1193
|
msgstr "Il nome deve essere univoco per configurazione resoconto"
|
|
1257
1194
|
|
|
@@ -1259,7 +1196,6 @@ msgstr "Il nome deve essere univoco per configurazione resoconto"
|
|
|
1259
1196
|
#. odoo-python
|
|
1260
1197
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1261
1198
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1262
|
-
#, python-format
|
|
1263
1199
|
msgid "Net"
|
|
1264
1200
|
msgstr "Netto"
|
|
1265
1201
|
|
|
@@ -1269,14 +1205,12 @@ msgstr "Netto"
|
|
|
1269
1205
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1270
1206
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1271
1207
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1272
|
-
#, python-format
|
|
1273
1208
|
msgid "No"
|
|
1274
1209
|
msgstr "No"
|
|
1275
1210
|
|
|
1276
1211
|
#. module: account_financial_report
|
|
1277
1212
|
#. odoo-python
|
|
1278
1213
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1279
|
-
#, python-format
|
|
1280
1214
|
msgid "No group"
|
|
1281
1215
|
msgstr "Nessun gruppo"
|
|
1282
1216
|
|
|
@@ -1284,7 +1218,6 @@ msgstr "Nessun gruppo"
|
|
|
1284
1218
|
#. odoo-python
|
|
1285
1219
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1286
1220
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1287
|
-
#, python-format
|
|
1288
1221
|
msgid "No limit"
|
|
1289
1222
|
msgstr "Nessun limite"
|
|
1290
1223
|
|
|
@@ -1296,7 +1229,6 @@ msgstr "Nessuna"
|
|
|
1296
1229
|
#. module: account_financial_report
|
|
1297
1230
|
#. odoo-python
|
|
1298
1231
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1299
|
-
#, python-format
|
|
1300
1232
|
msgid "Not Posted"
|
|
1301
1233
|
msgstr "Non confermate"
|
|
1302
1234
|
|
|
@@ -1319,7 +1251,6 @@ msgstr "Rendiconti OCA"
|
|
|
1319
1251
|
#. odoo-python
|
|
1320
1252
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1321
1253
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1322
|
-
#, python-format
|
|
1323
1254
|
msgid "Older"
|
|
1324
1255
|
msgstr "Più vecchio"
|
|
1325
1256
|
|
|
@@ -1336,7 +1267,6 @@ msgstr "Solo un conto ricavi inalterato"
|
|
|
1336
1267
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1337
1268
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1338
1269
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1339
|
-
#, python-format
|
|
1340
1270
|
msgid "Open Items"
|
|
1341
1271
|
msgstr "Partite aperte"
|
|
1342
1272
|
|
|
@@ -1379,7 +1309,6 @@ msgstr "Opzioni"
|
|
|
1379
1309
|
#. odoo-python
|
|
1380
1310
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1381
1311
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1382
|
-
#, python-format
|
|
1383
1312
|
msgid "Original"
|
|
1384
1313
|
msgstr "Originale"
|
|
1385
1314
|
|
|
@@ -1396,7 +1325,6 @@ msgstr "Originale"
|
|
|
1396
1325
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1397
1326
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1398
1327
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1399
|
-
#, python-format
|
|
1400
1328
|
msgid "Partner"
|
|
1401
1329
|
msgstr "Partner"
|
|
1402
1330
|
|
|
@@ -1412,14 +1340,12 @@ msgstr ""
|
|
|
1412
1340
|
#. module: account_financial_report
|
|
1413
1341
|
#. odoo-python
|
|
1414
1342
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1415
|
-
#, python-format
|
|
1416
1343
|
msgid "Partner Initial balance"
|
|
1417
1344
|
msgstr "Partner - Saldo iniziale"
|
|
1418
1345
|
|
|
1419
1346
|
#. module: account_financial_report
|
|
1420
1347
|
#. odoo-python
|
|
1421
1348
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1422
|
-
#, python-format
|
|
1423
1349
|
msgid "Partner cumul aged balance"
|
|
1424
1350
|
msgstr "Partner - Saldo progressivo"
|
|
1425
1351
|
|
|
@@ -1429,7 +1355,6 @@ msgstr "Partner - Saldo progressivo"
|
|
|
1429
1355
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1430
1356
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1431
1357
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1432
|
-
#, python-format
|
|
1433
1358
|
msgid "Partner ending balance"
|
|
1434
1359
|
msgstr "Partner - Saldo finale"
|
|
1435
1360
|
|
|
@@ -1460,7 +1385,6 @@ msgstr "Percentuali"
|
|
|
1460
1385
|
#. odoo-python
|
|
1461
1386
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1462
1387
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1463
|
-
#, python-format
|
|
1464
1388
|
msgid "Period balance"
|
|
1465
1389
|
msgstr "Saldo periodo"
|
|
1466
1390
|
|
|
@@ -1472,7 +1396,6 @@ msgstr "Periodi"
|
|
|
1472
1396
|
#. module: account_financial_report
|
|
1473
1397
|
#. odoo-python
|
|
1474
1398
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1475
|
-
#, python-format
|
|
1476
1399
|
msgid "Posted"
|
|
1477
1400
|
msgstr "Confermate"
|
|
1478
1401
|
|
|
@@ -1480,7 +1403,6 @@ msgstr "Confermate"
|
|
|
1480
1403
|
#. odoo-python
|
|
1481
1404
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1482
1405
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1483
|
-
#, python-format
|
|
1484
1406
|
msgid "Rec."
|
|
1485
1407
|
msgstr "Ric."
|
|
1486
1408
|
|
|
@@ -1518,7 +1440,6 @@ msgstr ""
|
|
|
1518
1440
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1519
1441
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1520
1442
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1521
|
-
#, python-format
|
|
1522
1443
|
msgid "Ref - Label"
|
|
1523
1444
|
msgstr "Rif - Etichetta"
|
|
1524
1445
|
|
|
@@ -1534,7 +1455,6 @@ msgstr "Azione resoconto"
|
|
|
1534
1455
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1535
1456
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1536
1457
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1537
|
-
#, python-format
|
|
1538
1458
|
msgid "Residual"
|
|
1539
1459
|
msgstr "Saldo"
|
|
1540
1460
|
|
|
@@ -1542,7 +1462,6 @@ msgstr "Saldo"
|
|
|
1542
1462
|
#. odoo-python
|
|
1543
1463
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1544
1464
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1545
|
-
#, python-format
|
|
1546
1465
|
msgid "Sequence"
|
|
1547
1466
|
msgstr "Sequenza"
|
|
1548
1467
|
|
|
@@ -1554,7 +1473,6 @@ msgstr "Sequenza"
|
|
|
1554
1473
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1555
1474
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1556
1475
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1557
|
-
#, python-format
|
|
1558
1476
|
msgid "Show"
|
|
1559
1477
|
msgstr "Vedi"
|
|
1560
1478
|
|
|
@@ -1587,7 +1505,6 @@ msgstr "Mostrare dettagli partner"
|
|
|
1587
1505
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1588
1506
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1589
1507
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1590
|
-
#, python-format
|
|
1591
1508
|
msgid "Show foreign currency"
|
|
1592
1509
|
msgstr "Mostrare valuta estera"
|
|
1593
1510
|
|
|
@@ -1622,9 +1539,8 @@ msgstr "Inizio conto in un intervallo"
|
|
|
1622
1539
|
#. odoo-python
|
|
1623
1540
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1624
1541
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1625
|
-
#, python-format
|
|
1626
1542
|
msgid "TOTAL"
|
|
1627
|
-
msgstr "
|
|
1543
|
+
msgstr ""
|
|
1628
1544
|
|
|
1629
1545
|
#. module: account_financial_report
|
|
1630
1546
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
@@ -1651,7 +1567,6 @@ msgstr "Movimenti obiettivo"
|
|
|
1651
1567
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1652
1568
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1653
1569
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1654
|
-
#, python-format
|
|
1655
1570
|
msgid "Target moves filter"
|
|
1656
1571
|
msgstr "Filtro registrazioni"
|
|
1657
1572
|
|
|
@@ -1659,7 +1574,6 @@ msgstr "Filtro registrazioni"
|
|
|
1659
1574
|
#. odoo-python
|
|
1660
1575
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1661
1576
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1662
|
-
#, python-format
|
|
1663
1577
|
msgid "Tax"
|
|
1664
1578
|
msgstr "Imposta"
|
|
1665
1579
|
|
|
@@ -1672,21 +1586,18 @@ msgstr "Importo imposta"
|
|
|
1672
1586
|
#. module: account_financial_report
|
|
1673
1587
|
#. odoo-python
|
|
1674
1588
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1675
|
-
#, python-format
|
|
1676
1589
|
msgid "Tax Balance"
|
|
1677
1590
|
msgstr "Saldo Imposta"
|
|
1678
1591
|
|
|
1679
1592
|
#. module: account_financial_report
|
|
1680
1593
|
#. odoo-python
|
|
1681
1594
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1682
|
-
#, python-format
|
|
1683
1595
|
msgid "Tax Credit"
|
|
1684
1596
|
msgstr "Imposta Avere"
|
|
1685
1597
|
|
|
1686
1598
|
#. module: account_financial_report
|
|
1687
1599
|
#. odoo-python
|
|
1688
1600
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1689
|
-
#, python-format
|
|
1690
1601
|
msgid "Tax Debit"
|
|
1691
1602
|
msgstr "Imposta Dare"
|
|
1692
1603
|
|
|
@@ -1694,14 +1605,12 @@ msgstr "Imposta Dare"
|
|
|
1694
1605
|
#. odoo-python
|
|
1695
1606
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1696
1607
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1697
|
-
#, python-format
|
|
1698
1608
|
msgid "Tax Groups"
|
|
1699
1609
|
msgstr "Gruppi imposte"
|
|
1700
1610
|
|
|
1701
1611
|
#. module: account_financial_report
|
|
1702
1612
|
#. odoo-python
|
|
1703
1613
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1704
|
-
#, python-format
|
|
1705
1614
|
msgid "Tax Initial balance"
|
|
1706
1615
|
msgstr "Saldo iniziale imposte"
|
|
1707
1616
|
|
|
@@ -1709,7 +1618,6 @@ msgstr "Saldo iniziale imposte"
|
|
|
1709
1618
|
#. odoo-python
|
|
1710
1619
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1711
1620
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1712
|
-
#, python-format
|
|
1713
1621
|
msgid "Tax Tags"
|
|
1714
1622
|
msgstr "Tag imposte"
|
|
1715
1623
|
|
|
@@ -1717,7 +1625,6 @@ msgstr "Tag imposte"
|
|
|
1717
1625
|
#. odoo-python
|
|
1718
1626
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1719
1627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1720
|
-
#, python-format
|
|
1721
1628
|
msgid "Tax ending balance"
|
|
1722
1629
|
msgstr "Saldo finale imposte"
|
|
1723
1630
|
|
|
@@ -1733,14 +1640,12 @@ msgstr "Saldo iniziale imposte"
|
|
|
1733
1640
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1734
1641
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1735
1642
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1736
|
-
#, python-format
|
|
1737
1643
|
msgid "Taxes"
|
|
1738
1644
|
msgstr "Imposte"
|
|
1739
1645
|
|
|
1740
1646
|
#. module: account_financial_report
|
|
1741
1647
|
#. odoo-python
|
|
1742
1648
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1743
|
-
#, python-format
|
|
1744
1649
|
msgid ""
|
|
1745
1650
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1746
1651
|
"the same."
|
|
@@ -1751,7 +1656,6 @@ msgstr ""
|
|
|
1751
1656
|
#. module: account_financial_report
|
|
1752
1657
|
#. odoo-python
|
|
1753
1658
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1754
|
-
#, python-format
|
|
1755
1659
|
msgid ""
|
|
1756
1660
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1757
1661
|
"same."
|
|
@@ -1762,7 +1666,6 @@ msgstr ""
|
|
|
1762
1666
|
#. module: account_financial_report
|
|
1763
1667
|
#. odoo-python
|
|
1764
1668
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1765
|
-
#, python-format
|
|
1766
1669
|
msgid ""
|
|
1767
1670
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1768
1671
|
msgstr ""
|
|
@@ -1772,7 +1675,6 @@ msgstr ""
|
|
|
1772
1675
|
#. module: account_financial_report
|
|
1773
1676
|
#. odoo-python
|
|
1774
1677
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1775
|
-
#, python-format
|
|
1776
1678
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1777
1679
|
msgstr "Il livello gerarchico da filtrare deve essere maggiore di 0."
|
|
1778
1680
|
|
|
@@ -1797,7 +1699,6 @@ msgstr "A:"
|
|
|
1797
1699
|
#. odoo-python
|
|
1798
1700
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1799
1701
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1800
|
-
#, python-format
|
|
1801
1702
|
msgid "Total"
|
|
1802
1703
|
msgstr "Totale"
|
|
1803
1704
|
|
|
@@ -1808,7 +1709,6 @@ msgstr "Totale"
|
|
|
1808
1709
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1809
1710
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1810
1711
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1811
|
-
#, python-format
|
|
1812
1712
|
msgid "Trial Balance"
|
|
1813
1713
|
msgstr "Bilancio di verifica"
|
|
1814
1714
|
|
|
@@ -1901,7 +1801,6 @@ msgstr "Rendiconto IVA in XLSX"
|
|
|
1901
1801
|
#. module: account_financial_report
|
|
1902
1802
|
#. odoo-python
|
|
1903
1803
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1904
|
-
#, python-format
|
|
1905
1804
|
msgid "Vat Report"
|
|
1906
1805
|
msgstr "Resoconto IVA"
|
|
1907
1806
|
|
|
@@ -1942,9 +1841,8 @@ msgstr "Con nome conto"
|
|
|
1942
1841
|
#. module: account_financial_report
|
|
1943
1842
|
#. odoo-python
|
|
1944
1843
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1945
|
-
#, python-format
|
|
1946
1844
|
msgid "Without analytic account"
|
|
1947
|
-
msgstr "
|
|
1845
|
+
msgstr ""
|
|
1948
1846
|
|
|
1949
1847
|
#. module: account_financial_report
|
|
1950
1848
|
#. odoo-python
|
|
@@ -1952,14 +1850,12 @@ msgstr "Senza conto analitico"
|
|
|
1952
1850
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1953
1851
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1954
1852
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1955
|
-
#, python-format
|
|
1956
1853
|
msgid "Yes"
|
|
1957
1854
|
msgstr "Sì"
|
|
1958
1855
|
|
|
1959
1856
|
#. module: account_financial_report
|
|
1960
1857
|
#. odoo-python
|
|
1961
1858
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1962
|
-
#, python-format
|
|
1963
1859
|
msgid "future"
|
|
1964
1860
|
msgstr "futuro"
|
|
1965
1861
|
|