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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#
|
|
5
5
|
msgid ""
|
|
6
6
|
msgstr ""
|
|
7
|
-
"Project-Id-Version: Odoo Server
|
|
7
|
+
"Project-Id-Version: Odoo Server 18.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
9
|
"Last-Translator: \n"
|
|
10
10
|
"Language-Team: \n"
|
|
@@ -97,7 +97,6 @@ msgstr ""
|
|
|
97
97
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
98
98
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
99
99
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
100
|
-
#, python-format
|
|
101
100
|
msgid "Account"
|
|
102
101
|
msgstr ""
|
|
103
102
|
|
|
@@ -130,7 +129,6 @@ msgstr ""
|
|
|
130
129
|
#. module: account_financial_report
|
|
131
130
|
#. odoo-python
|
|
132
131
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
133
|
-
#, python-format
|
|
134
132
|
msgid "Account Name"
|
|
135
133
|
msgstr ""
|
|
136
134
|
|
|
@@ -138,7 +136,6 @@ msgstr ""
|
|
|
138
136
|
#. odoo-python
|
|
139
137
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
140
138
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
141
|
-
#, python-format
|
|
142
139
|
msgid "Account at 0 filter"
|
|
143
140
|
msgstr ""
|
|
144
141
|
|
|
@@ -148,7 +145,6 @@ msgstr ""
|
|
|
148
145
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
149
146
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
150
147
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
151
|
-
#, python-format
|
|
152
148
|
msgid "Account balance at 0 filter"
|
|
153
149
|
msgstr ""
|
|
154
150
|
|
|
@@ -182,8 +178,6 @@ msgstr ""
|
|
|
182
178
|
#. module: account_financial_report
|
|
183
179
|
#. odoo-python
|
|
184
180
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
185
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
186
|
-
#, python-format
|
|
187
181
|
msgid "Age ≤ 120 d."
|
|
188
182
|
msgstr ""
|
|
189
183
|
|
|
@@ -197,8 +191,6 @@ msgstr ""
|
|
|
197
191
|
#. module: account_financial_report
|
|
198
192
|
#. odoo-python
|
|
199
193
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
200
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
201
|
-
#, python-format
|
|
202
194
|
msgid "Age ≤ 30 d."
|
|
203
195
|
msgstr ""
|
|
204
196
|
|
|
@@ -212,8 +204,6 @@ msgstr ""
|
|
|
212
204
|
#. module: account_financial_report
|
|
213
205
|
#. odoo-python
|
|
214
206
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
215
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
216
|
-
#, python-format
|
|
217
207
|
msgid "Age ≤ 60 d."
|
|
218
208
|
msgstr ""
|
|
219
209
|
|
|
@@ -227,8 +217,6 @@ msgstr ""
|
|
|
227
217
|
#. module: account_financial_report
|
|
228
218
|
#. odoo-python
|
|
229
219
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
230
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
231
|
-
#, python-format
|
|
232
220
|
msgid "Age ≤ 90 d."
|
|
233
221
|
msgstr ""
|
|
234
222
|
|
|
@@ -239,7 +227,6 @@ msgstr ""
|
|
|
239
227
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
240
228
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
241
229
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
242
|
-
#, python-format
|
|
243
230
|
msgid "Aged Partner Balance"
|
|
244
231
|
msgstr ""
|
|
245
232
|
|
|
@@ -271,7 +258,6 @@ msgstr ""
|
|
|
271
258
|
#. module: account_financial_report
|
|
272
259
|
#. odoo-python
|
|
273
260
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
274
|
-
#, python-format
|
|
275
261
|
msgid "All"
|
|
276
262
|
msgstr ""
|
|
277
263
|
|
|
@@ -303,7 +289,6 @@ msgstr ""
|
|
|
303
289
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
304
290
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
305
291
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
306
|
-
#, python-format
|
|
307
292
|
msgid "All entries"
|
|
308
293
|
msgstr ""
|
|
309
294
|
|
|
@@ -317,7 +302,6 @@ msgstr ""
|
|
|
317
302
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
318
303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
319
304
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
320
|
-
#, python-format
|
|
321
305
|
msgid "All posted entries"
|
|
322
306
|
msgstr ""
|
|
323
307
|
|
|
@@ -329,7 +313,6 @@ msgstr ""
|
|
|
329
313
|
#. module: account_financial_report
|
|
330
314
|
#. odoo-python
|
|
331
315
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
332
|
-
#, python-format
|
|
333
316
|
msgid "Amount Currency"
|
|
334
317
|
msgstr ""
|
|
335
318
|
|
|
@@ -337,7 +320,6 @@ msgstr ""
|
|
|
337
320
|
#. odoo-python
|
|
338
321
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
339
322
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
340
|
-
#, python-format
|
|
341
323
|
msgid "Amount cur."
|
|
342
324
|
msgstr ""
|
|
343
325
|
|
|
@@ -351,7 +333,6 @@ msgstr ""
|
|
|
351
333
|
#. odoo-python
|
|
352
334
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
353
335
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
354
|
-
#, python-format
|
|
355
336
|
msgid "Analytic Distribution"
|
|
356
337
|
msgstr ""
|
|
357
338
|
|
|
@@ -370,21 +351,18 @@ msgstr ""
|
|
|
370
351
|
#. module: account_financial_report
|
|
371
352
|
#. odoo-python
|
|
372
353
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
373
|
-
#, python-format
|
|
374
354
|
msgid "Base Balance"
|
|
375
355
|
msgstr ""
|
|
376
356
|
|
|
377
357
|
#. module: account_financial_report
|
|
378
358
|
#. odoo-python
|
|
379
359
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
380
|
-
#, python-format
|
|
381
360
|
msgid "Base Credit"
|
|
382
361
|
msgstr ""
|
|
383
362
|
|
|
384
363
|
#. module: account_financial_report
|
|
385
364
|
#. odoo-python
|
|
386
365
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
387
|
-
#, python-format
|
|
388
366
|
msgid "Base Debit"
|
|
389
367
|
msgstr ""
|
|
390
368
|
|
|
@@ -397,7 +375,6 @@ msgstr ""
|
|
|
397
375
|
#. module: account_financial_report
|
|
398
376
|
#. odoo-python
|
|
399
377
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
400
|
-
#, python-format
|
|
401
378
|
msgid "Based on"
|
|
402
379
|
msgstr ""
|
|
403
380
|
|
|
@@ -415,7 +392,6 @@ msgstr ""
|
|
|
415
392
|
#. odoo-python
|
|
416
393
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
417
394
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
418
|
-
#, python-format
|
|
419
395
|
msgid "Centralize filter"
|
|
420
396
|
msgstr ""
|
|
421
397
|
|
|
@@ -435,7 +411,6 @@ msgstr ""
|
|
|
435
411
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
436
412
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
437
413
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
438
|
-
#, python-format
|
|
439
414
|
msgid "Code"
|
|
440
415
|
msgstr ""
|
|
441
416
|
|
|
@@ -450,7 +425,6 @@ msgstr ""
|
|
|
450
425
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
451
426
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
452
427
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
453
|
-
#, python-format
|
|
454
428
|
msgid "Company"
|
|
455
429
|
msgstr ""
|
|
456
430
|
|
|
@@ -498,13 +472,11 @@ msgstr ""
|
|
|
498
472
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
499
473
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
500
474
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
501
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
502
475
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
503
476
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
504
477
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
505
478
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
506
479
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
507
|
-
#, python-format
|
|
508
480
|
msgid "Credit"
|
|
509
481
|
msgstr ""
|
|
510
482
|
|
|
@@ -512,7 +484,6 @@ msgstr ""
|
|
|
512
484
|
#. odoo-python
|
|
513
485
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
514
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
515
|
-
#, python-format
|
|
516
487
|
msgid "Cumul cur."
|
|
517
488
|
msgstr ""
|
|
518
489
|
|
|
@@ -520,7 +491,6 @@ msgstr ""
|
|
|
520
491
|
#. odoo-python
|
|
521
492
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
522
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
523
|
-
#, python-format
|
|
524
494
|
msgid "Cumul. Bal."
|
|
525
495
|
msgstr ""
|
|
526
496
|
|
|
@@ -529,7 +499,6 @@ msgstr ""
|
|
|
529
499
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
530
500
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
531
501
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
532
|
-
#, python-format
|
|
533
502
|
msgid "Cur."
|
|
534
503
|
msgstr ""
|
|
535
504
|
|
|
@@ -537,7 +506,6 @@ msgstr ""
|
|
|
537
506
|
#. odoo-python
|
|
538
507
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
539
508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
540
|
-
#, python-format
|
|
541
509
|
msgid "Cur. Original"
|
|
542
510
|
msgstr ""
|
|
543
511
|
|
|
@@ -545,23 +513,19 @@ msgstr ""
|
|
|
545
513
|
#. odoo-python
|
|
546
514
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
547
515
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
548
|
-
#, python-format
|
|
549
516
|
msgid "Cur. Residual"
|
|
550
517
|
msgstr ""
|
|
551
518
|
|
|
552
519
|
#. module: account_financial_report
|
|
553
520
|
#. odoo-python
|
|
554
521
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
555
|
-
#, python-format
|
|
556
522
|
msgid "Currency"
|
|
557
523
|
msgstr ""
|
|
558
524
|
|
|
559
525
|
#. module: account_financial_report
|
|
560
526
|
#. odoo-python
|
|
561
527
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
562
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
563
528
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
564
|
-
#, python-format
|
|
565
529
|
msgid "Current"
|
|
566
530
|
msgstr ""
|
|
567
531
|
|
|
@@ -576,7 +540,6 @@ msgstr ""
|
|
|
576
540
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
577
541
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
578
542
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
579
|
-
#, python-format
|
|
580
543
|
msgid "Date"
|
|
581
544
|
msgstr ""
|
|
582
545
|
|
|
@@ -608,14 +571,12 @@ msgstr ""
|
|
|
608
571
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
609
572
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
610
573
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
611
|
-
#, python-format
|
|
612
574
|
msgid "Date at filter"
|
|
613
575
|
msgstr ""
|
|
614
576
|
|
|
615
577
|
#. module: account_financial_report
|
|
616
578
|
#. odoo-python
|
|
617
579
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
618
|
-
#, python-format
|
|
619
580
|
msgid "Date from"
|
|
620
581
|
msgstr ""
|
|
621
582
|
|
|
@@ -634,14 +595,12 @@ msgstr ""
|
|
|
634
595
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
635
596
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
636
597
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
637
|
-
#, python-format
|
|
638
598
|
msgid "Date range filter"
|
|
639
599
|
msgstr ""
|
|
640
600
|
|
|
641
601
|
#. module: account_financial_report
|
|
642
602
|
#. odoo-python
|
|
643
603
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
644
|
-
#, python-format
|
|
645
604
|
msgid "Date to"
|
|
646
605
|
msgstr ""
|
|
647
606
|
|
|
@@ -650,13 +609,11 @@ msgstr ""
|
|
|
650
609
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
651
610
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
652
611
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
653
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
654
612
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
655
613
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
656
614
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
657
615
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
658
616
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
659
|
-
#, python-format
|
|
660
617
|
msgid "Debit"
|
|
661
618
|
msgstr ""
|
|
662
619
|
|
|
@@ -665,7 +622,6 @@ msgstr ""
|
|
|
665
622
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
666
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
667
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
668
|
-
#, python-format
|
|
669
625
|
msgid "Description"
|
|
670
626
|
msgstr ""
|
|
671
627
|
|
|
@@ -719,7 +675,6 @@ msgstr ""
|
|
|
719
675
|
#. odoo-python
|
|
720
676
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
721
677
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
722
|
-
#, python-format
|
|
723
678
|
msgid "Due date"
|
|
724
679
|
msgstr ""
|
|
725
680
|
|
|
@@ -753,12 +708,8 @@ msgstr ""
|
|
|
753
708
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
754
709
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
755
710
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
756
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
757
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
758
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
759
711
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
760
712
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
761
|
-
#, python-format
|
|
762
713
|
msgid "Ending balance"
|
|
763
714
|
msgstr ""
|
|
764
715
|
|
|
@@ -772,7 +723,6 @@ msgstr ""
|
|
|
772
723
|
#. module: account_financial_report
|
|
773
724
|
#. odoo-python
|
|
774
725
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
775
|
-
#, python-format
|
|
776
726
|
msgid "Entries sorted by"
|
|
777
727
|
msgstr ""
|
|
778
728
|
|
|
@@ -786,22 +736,18 @@ msgstr ""
|
|
|
786
736
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
787
737
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
788
738
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
789
|
-
#, python-format
|
|
790
739
|
msgid "Entry"
|
|
791
740
|
msgstr ""
|
|
792
741
|
|
|
793
742
|
#. module: account_financial_report
|
|
794
743
|
#. odoo-python
|
|
795
744
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
796
|
-
#, python-format
|
|
797
745
|
msgid "Entry number"
|
|
798
746
|
msgstr ""
|
|
799
747
|
|
|
800
748
|
#. module: account_financial_report
|
|
801
749
|
#. odoo-javascript
|
|
802
750
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
803
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
804
|
-
#, python-format
|
|
805
751
|
msgid "Export"
|
|
806
752
|
msgstr ""
|
|
807
753
|
|
|
@@ -882,7 +828,6 @@ msgstr ""
|
|
|
882
828
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
883
829
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
884
830
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
885
|
-
#, python-format
|
|
886
831
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
887
832
|
msgstr ""
|
|
888
833
|
|
|
@@ -910,7 +855,6 @@ msgstr ""
|
|
|
910
855
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
911
856
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
912
857
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
913
|
-
#, python-format
|
|
914
858
|
msgid "General Ledger"
|
|
915
859
|
msgstr ""
|
|
916
860
|
|
|
@@ -971,7 +915,6 @@ msgstr ""
|
|
|
971
915
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
972
916
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
973
917
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
974
|
-
#, python-format
|
|
975
918
|
msgid "Hide"
|
|
976
919
|
msgstr ""
|
|
977
920
|
|
|
@@ -1018,7 +961,6 @@ msgstr ""
|
|
|
1018
961
|
#. module: account_financial_report
|
|
1019
962
|
#. odoo-python
|
|
1020
963
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1021
|
-
#, python-format
|
|
1022
964
|
msgid "Inferior Limit must be greather than zero"
|
|
1023
965
|
msgstr ""
|
|
1024
966
|
|
|
@@ -1040,11 +982,7 @@ msgstr ""
|
|
|
1040
982
|
#. odoo-python
|
|
1041
983
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1042
984
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1043
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1044
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1045
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1046
985
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1047
|
-
#, python-format
|
|
1048
986
|
msgid "Initial balance"
|
|
1049
987
|
msgstr ""
|
|
1050
988
|
|
|
@@ -1064,7 +1002,6 @@ msgstr ""
|
|
|
1064
1002
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1065
1003
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1066
1004
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1067
|
-
#, python-format
|
|
1068
1005
|
msgid "Journal"
|
|
1069
1006
|
msgstr ""
|
|
1070
1007
|
|
|
@@ -1084,7 +1021,6 @@ msgstr ""
|
|
|
1084
1021
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1085
1022
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1086
1023
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1087
|
-
#, python-format
|
|
1088
1024
|
msgid "Journal Ledger"
|
|
1089
1025
|
msgstr ""
|
|
1090
1026
|
|
|
@@ -1118,7 +1054,6 @@ msgstr ""
|
|
|
1118
1054
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1119
1055
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1120
1056
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1121
|
-
#, python-format
|
|
1122
1057
|
msgid "Journals"
|
|
1123
1058
|
msgstr ""
|
|
1124
1059
|
|
|
@@ -1155,7 +1090,6 @@ msgstr ""
|
|
|
1155
1090
|
#. module: account_financial_report
|
|
1156
1091
|
#. odoo-python
|
|
1157
1092
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1158
|
-
#, python-format
|
|
1159
1093
|
msgid "Level %s"
|
|
1160
1094
|
msgstr ""
|
|
1161
1095
|
|
|
@@ -1164,7 +1098,6 @@ msgstr ""
|
|
|
1164
1098
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1165
1099
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1166
1100
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1167
|
-
#, python-format
|
|
1168
1101
|
msgid "Limit hierarchy levels"
|
|
1169
1102
|
msgstr ""
|
|
1170
1103
|
|
|
@@ -1176,12 +1109,8 @@ msgstr ""
|
|
|
1176
1109
|
#. module: account_financial_report
|
|
1177
1110
|
#. odoo-python
|
|
1178
1111
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1179
|
-
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1180
1112
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1181
1113
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1182
|
-
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1183
|
-
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1184
|
-
#, python-format
|
|
1185
1114
|
msgid "Missing Partner"
|
|
1186
1115
|
msgstr ""
|
|
1187
1116
|
|
|
@@ -1208,7 +1137,6 @@ msgstr ""
|
|
|
1208
1137
|
#. module: account_financial_report
|
|
1209
1138
|
#. odoo-python
|
|
1210
1139
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1211
|
-
#, python-format
|
|
1212
1140
|
msgid "Must complete Configuration Lines"
|
|
1213
1141
|
msgstr ""
|
|
1214
1142
|
|
|
@@ -1221,15 +1149,11 @@ msgstr ""
|
|
|
1221
1149
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1222
1150
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1223
1151
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1224
|
-
#, python-format
|
|
1225
1152
|
msgid "Name"
|
|
1226
1153
|
msgstr ""
|
|
1227
1154
|
|
|
1228
1155
|
#. module: account_financial_report
|
|
1229
|
-
#. odoo-python
|
|
1230
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1231
1156
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1232
|
-
#, python-format
|
|
1233
1157
|
msgid "Name must be unique per report configuration"
|
|
1234
1158
|
msgstr ""
|
|
1235
1159
|
|
|
@@ -1237,25 +1161,21 @@ msgstr ""
|
|
|
1237
1161
|
#. odoo-python
|
|
1238
1162
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1239
1163
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1240
|
-
#, python-format
|
|
1241
1164
|
msgid "Net"
|
|
1242
1165
|
msgstr ""
|
|
1243
1166
|
|
|
1244
1167
|
#. module: account_financial_report
|
|
1245
1168
|
#. odoo-python
|
|
1246
1169
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1247
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1248
1170
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1249
1171
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1250
1172
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1251
|
-
#, python-format
|
|
1252
1173
|
msgid "No"
|
|
1253
1174
|
msgstr ""
|
|
1254
1175
|
|
|
1255
1176
|
#. module: account_financial_report
|
|
1256
1177
|
#. odoo-python
|
|
1257
1178
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1258
|
-
#, python-format
|
|
1259
1179
|
msgid "No group"
|
|
1260
1180
|
msgstr ""
|
|
1261
1181
|
|
|
@@ -1263,7 +1183,6 @@ msgstr ""
|
|
|
1263
1183
|
#. odoo-python
|
|
1264
1184
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1265
1185
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1266
|
-
#, python-format
|
|
1267
1186
|
msgid "No limit"
|
|
1268
1187
|
msgstr ""
|
|
1269
1188
|
|
|
@@ -1275,7 +1194,6 @@ msgstr ""
|
|
|
1275
1194
|
#. module: account_financial_report
|
|
1276
1195
|
#. odoo-python
|
|
1277
1196
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1278
|
-
#, python-format
|
|
1279
1197
|
msgid "Not Posted"
|
|
1280
1198
|
msgstr ""
|
|
1281
1199
|
|
|
@@ -1297,9 +1215,7 @@ msgstr ""
|
|
|
1297
1215
|
#. module: account_financial_report
|
|
1298
1216
|
#. odoo-python
|
|
1299
1217
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1300
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1301
1218
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1302
|
-
#, python-format
|
|
1303
1219
|
msgid "Older"
|
|
1304
1220
|
msgstr ""
|
|
1305
1221
|
|
|
@@ -1316,7 +1232,6 @@ msgstr ""
|
|
|
1316
1232
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1317
1233
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1318
1234
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1319
|
-
#, python-format
|
|
1320
1235
|
msgid "Open Items"
|
|
1321
1236
|
msgstr ""
|
|
1322
1237
|
|
|
@@ -1359,14 +1274,12 @@ msgstr ""
|
|
|
1359
1274
|
#. odoo-python
|
|
1360
1275
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1361
1276
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1362
|
-
#, python-format
|
|
1363
1277
|
msgid "Original"
|
|
1364
1278
|
msgstr ""
|
|
1365
1279
|
|
|
1366
1280
|
#. module: account_financial_report
|
|
1367
1281
|
#. odoo-python
|
|
1368
1282
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1369
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1370
1283
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1371
1284
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1372
1285
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1377,7 +1290,6 @@ msgstr ""
|
|
|
1377
1290
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1378
1291
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1379
1292
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1380
|
-
#, python-format
|
|
1381
1293
|
msgid "Partner"
|
|
1382
1294
|
msgstr ""
|
|
1383
1295
|
|
|
@@ -1391,14 +1303,12 @@ msgstr ""
|
|
|
1391
1303
|
#. module: account_financial_report
|
|
1392
1304
|
#. odoo-python
|
|
1393
1305
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1394
|
-
#, python-format
|
|
1395
1306
|
msgid "Partner Initial balance"
|
|
1396
1307
|
msgstr ""
|
|
1397
1308
|
|
|
1398
1309
|
#. module: account_financial_report
|
|
1399
1310
|
#. odoo-python
|
|
1400
1311
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1401
|
-
#, python-format
|
|
1402
1312
|
msgid "Partner cumul aged balance"
|
|
1403
1313
|
msgstr ""
|
|
1404
1314
|
|
|
@@ -1408,7 +1318,6 @@ msgstr ""
|
|
|
1408
1318
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1409
1319
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1410
1320
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1411
|
-
#, python-format
|
|
1412
1321
|
msgid "Partner ending balance"
|
|
1413
1322
|
msgstr ""
|
|
1414
1323
|
|
|
@@ -1438,9 +1347,7 @@ msgstr ""
|
|
|
1438
1347
|
#. module: account_financial_report
|
|
1439
1348
|
#. odoo-python
|
|
1440
1349
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1441
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1442
1350
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1443
|
-
#, python-format
|
|
1444
1351
|
msgid "Period balance"
|
|
1445
1352
|
msgstr ""
|
|
1446
1353
|
|
|
@@ -1452,7 +1359,6 @@ msgstr ""
|
|
|
1452
1359
|
#. module: account_financial_report
|
|
1453
1360
|
#. odoo-python
|
|
1454
1361
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1455
|
-
#, python-format
|
|
1456
1362
|
msgid "Posted"
|
|
1457
1363
|
msgstr ""
|
|
1458
1364
|
|
|
@@ -1460,7 +1366,6 @@ msgstr ""
|
|
|
1460
1366
|
#. odoo-python
|
|
1461
1367
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1462
1368
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1463
|
-
#, python-format
|
|
1464
1369
|
msgid "Rec."
|
|
1465
1370
|
msgstr ""
|
|
1466
1371
|
|
|
@@ -1494,7 +1399,6 @@ msgstr ""
|
|
|
1494
1399
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1495
1400
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1496
1401
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1497
|
-
#, python-format
|
|
1498
1402
|
msgid "Ref - Label"
|
|
1499
1403
|
msgstr ""
|
|
1500
1404
|
|
|
@@ -1506,12 +1410,10 @@ msgstr ""
|
|
|
1506
1410
|
#. module: account_financial_report
|
|
1507
1411
|
#. odoo-python
|
|
1508
1412
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1509
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1510
1413
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1511
1414
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1512
1415
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1513
1416
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1514
|
-
#, python-format
|
|
1515
1417
|
msgid "Residual"
|
|
1516
1418
|
msgstr ""
|
|
1517
1419
|
|
|
@@ -1519,7 +1421,6 @@ msgstr ""
|
|
|
1519
1421
|
#. odoo-python
|
|
1520
1422
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1521
1423
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1522
|
-
#, python-format
|
|
1523
1424
|
msgid "Sequence"
|
|
1524
1425
|
msgstr ""
|
|
1525
1426
|
|
|
@@ -1531,7 +1432,6 @@ msgstr ""
|
|
|
1531
1432
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1532
1433
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1533
1434
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1534
|
-
#, python-format
|
|
1535
1435
|
msgid "Show"
|
|
1536
1436
|
msgstr ""
|
|
1537
1437
|
|
|
@@ -1564,7 +1464,6 @@ msgstr ""
|
|
|
1564
1464
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1565
1465
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1566
1466
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1567
|
-
#, python-format
|
|
1568
1467
|
msgid "Show foreign currency"
|
|
1569
1468
|
msgstr ""
|
|
1570
1469
|
|
|
@@ -1599,7 +1498,6 @@ msgstr ""
|
|
|
1599
1498
|
#. odoo-python
|
|
1600
1499
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1601
1500
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1602
|
-
#, python-format
|
|
1603
1501
|
msgid "TOTAL"
|
|
1604
1502
|
msgstr ""
|
|
1605
1503
|
|
|
@@ -1628,7 +1526,6 @@ msgstr ""
|
|
|
1628
1526
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1629
1527
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1630
1528
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1631
|
-
#, python-format
|
|
1632
1529
|
msgid "Target moves filter"
|
|
1633
1530
|
msgstr ""
|
|
1634
1531
|
|
|
@@ -1636,7 +1533,6 @@ msgstr ""
|
|
|
1636
1533
|
#. odoo-python
|
|
1637
1534
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1638
1535
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1639
|
-
#, python-format
|
|
1640
1536
|
msgid "Tax"
|
|
1641
1537
|
msgstr ""
|
|
1642
1538
|
|
|
@@ -1649,21 +1545,18 @@ msgstr ""
|
|
|
1649
1545
|
#. module: account_financial_report
|
|
1650
1546
|
#. odoo-python
|
|
1651
1547
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1652
|
-
#, python-format
|
|
1653
1548
|
msgid "Tax Balance"
|
|
1654
1549
|
msgstr ""
|
|
1655
1550
|
|
|
1656
1551
|
#. module: account_financial_report
|
|
1657
1552
|
#. odoo-python
|
|
1658
1553
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1659
|
-
#, python-format
|
|
1660
1554
|
msgid "Tax Credit"
|
|
1661
1555
|
msgstr ""
|
|
1662
1556
|
|
|
1663
1557
|
#. module: account_financial_report
|
|
1664
1558
|
#. odoo-python
|
|
1665
1559
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1666
|
-
#, python-format
|
|
1667
1560
|
msgid "Tax Debit"
|
|
1668
1561
|
msgstr ""
|
|
1669
1562
|
|
|
@@ -1671,14 +1564,12 @@ msgstr ""
|
|
|
1671
1564
|
#. odoo-python
|
|
1672
1565
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1673
1566
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1674
|
-
#, python-format
|
|
1675
1567
|
msgid "Tax Groups"
|
|
1676
1568
|
msgstr ""
|
|
1677
1569
|
|
|
1678
1570
|
#. module: account_financial_report
|
|
1679
1571
|
#. odoo-python
|
|
1680
1572
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1681
|
-
#, python-format
|
|
1682
1573
|
msgid "Tax Initial balance"
|
|
1683
1574
|
msgstr ""
|
|
1684
1575
|
|
|
@@ -1686,7 +1577,6 @@ msgstr ""
|
|
|
1686
1577
|
#. odoo-python
|
|
1687
1578
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1688
1579
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1689
|
-
#, python-format
|
|
1690
1580
|
msgid "Tax Tags"
|
|
1691
1581
|
msgstr ""
|
|
1692
1582
|
|
|
@@ -1694,7 +1584,6 @@ msgstr ""
|
|
|
1694
1584
|
#. odoo-python
|
|
1695
1585
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1696
1586
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1697
|
-
#, python-format
|
|
1698
1587
|
msgid "Tax ending balance"
|
|
1699
1588
|
msgstr ""
|
|
1700
1589
|
|
|
@@ -1710,14 +1599,12 @@ msgstr ""
|
|
|
1710
1599
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1711
1600
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1712
1601
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1713
|
-
#, python-format
|
|
1714
1602
|
msgid "Taxes"
|
|
1715
1603
|
msgstr ""
|
|
1716
1604
|
|
|
1717
1605
|
#. module: account_financial_report
|
|
1718
1606
|
#. odoo-python
|
|
1719
1607
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1720
|
-
#, python-format
|
|
1721
1608
|
msgid ""
|
|
1722
1609
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1723
1610
|
"the same."
|
|
@@ -1726,7 +1613,6 @@ msgstr ""
|
|
|
1726
1613
|
#. module: account_financial_report
|
|
1727
1614
|
#. odoo-python
|
|
1728
1615
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1729
|
-
#, python-format
|
|
1730
1616
|
msgid ""
|
|
1731
1617
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the"
|
|
1732
1618
|
" same."
|
|
@@ -1735,7 +1621,6 @@ msgstr ""
|
|
|
1735
1621
|
#. module: account_financial_report
|
|
1736
1622
|
#. odoo-python
|
|
1737
1623
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1738
|
-
#, python-format
|
|
1739
1624
|
msgid ""
|
|
1740
1625
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1741
1626
|
msgstr ""
|
|
@@ -1743,7 +1628,6 @@ msgstr ""
|
|
|
1743
1628
|
#. module: account_financial_report
|
|
1744
1629
|
#. odoo-python
|
|
1745
1630
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1746
|
-
#, python-format
|
|
1747
1631
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1748
1632
|
msgstr ""
|
|
1749
1633
|
|
|
@@ -1766,7 +1650,6 @@ msgstr ""
|
|
|
1766
1650
|
#. odoo-python
|
|
1767
1651
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1768
1652
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1769
|
-
#, python-format
|
|
1770
1653
|
msgid "Total"
|
|
1771
1654
|
msgstr ""
|
|
1772
1655
|
|
|
@@ -1777,7 +1660,6 @@ msgstr ""
|
|
|
1777
1660
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1778
1661
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1779
1662
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1780
|
-
#, python-format
|
|
1781
1663
|
msgid "Trial Balance"
|
|
1782
1664
|
msgstr ""
|
|
1783
1665
|
|
|
@@ -1864,7 +1746,6 @@ msgstr ""
|
|
|
1864
1746
|
#. module: account_financial_report
|
|
1865
1747
|
#. odoo-python
|
|
1866
1748
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1867
|
-
#, python-format
|
|
1868
1749
|
msgid "Vat Report"
|
|
1869
1750
|
msgstr ""
|
|
1870
1751
|
|
|
@@ -1903,25 +1784,21 @@ msgstr ""
|
|
|
1903
1784
|
#. module: account_financial_report
|
|
1904
1785
|
#. odoo-python
|
|
1905
1786
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1906
|
-
#, python-format
|
|
1907
1787
|
msgid "Without analytic account"
|
|
1908
1788
|
msgstr ""
|
|
1909
1789
|
|
|
1910
1790
|
#. module: account_financial_report
|
|
1911
1791
|
#. odoo-python
|
|
1912
1792
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1913
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1914
1793
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1915
1794
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1916
1795
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1917
|
-
#, python-format
|
|
1918
1796
|
msgid "Yes"
|
|
1919
1797
|
msgstr ""
|
|
1920
1798
|
|
|
1921
1799
|
#. module: account_financial_report
|
|
1922
1800
|
#. odoo-python
|
|
1923
1801
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1924
|
-
#, python-format
|
|
1925
1802
|
msgid "future"
|
|
1926
1803
|
msgstr ""
|
|
1927
1804
|
|