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
|
@@ -101,7 +101,6 @@ msgstr ""
|
|
|
101
101
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
102
102
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
103
103
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
104
|
-
#, python-format
|
|
105
104
|
msgid "Account"
|
|
106
105
|
msgstr "????????????"
|
|
107
106
|
|
|
@@ -136,7 +135,6 @@ msgstr "???????????? ????????????"
|
|
|
136
135
|
#. module: account_financial_report
|
|
137
136
|
#. odoo-python
|
|
138
137
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
139
|
-
#, python-format
|
|
140
138
|
msgid "Account Name"
|
|
141
139
|
msgstr "?????? ????????????"
|
|
142
140
|
|
|
@@ -144,7 +142,7 @@ msgstr "?????? ????????????"
|
|
|
144
142
|
#. odoo-python
|
|
145
143
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
146
144
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
147
|
-
#, fuzzy
|
|
145
|
+
#, fuzzy
|
|
148
146
|
msgid "Account at 0 filter"
|
|
149
147
|
msgstr "???????????????? ?????????? ??????"
|
|
150
148
|
|
|
@@ -154,7 +152,6 @@ msgstr "???????????????? ?????????? ??????"
|
|
|
154
152
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
155
153
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
156
154
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
157
|
-
#, python-format
|
|
158
155
|
msgid "Account balance at 0 filter"
|
|
159
156
|
msgstr "???????????????? ?????????? ??????"
|
|
160
157
|
|
|
@@ -188,7 +185,6 @@ msgstr ""
|
|
|
188
185
|
#. module: account_financial_report
|
|
189
186
|
#. odoo-python
|
|
190
187
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
191
|
-
#, python-format
|
|
192
188
|
msgid "Age ≤ 120 d."
|
|
193
189
|
msgstr ""
|
|
194
190
|
|
|
@@ -202,7 +198,6 @@ msgstr ""
|
|
|
202
198
|
#. module: account_financial_report
|
|
203
199
|
#. odoo-python
|
|
204
200
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
205
|
-
#, python-format
|
|
206
201
|
msgid "Age ≤ 30 d."
|
|
207
202
|
msgstr ""
|
|
208
203
|
|
|
@@ -216,7 +211,6 @@ msgstr ""
|
|
|
216
211
|
#. module: account_financial_report
|
|
217
212
|
#. odoo-python
|
|
218
213
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
219
|
-
#, python-format
|
|
220
214
|
msgid "Age ≤ 60 d."
|
|
221
215
|
msgstr ""
|
|
222
216
|
|
|
@@ -230,7 +224,6 @@ msgstr ""
|
|
|
230
224
|
#. module: account_financial_report
|
|
231
225
|
#. odoo-python
|
|
232
226
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
233
|
-
#, python-format
|
|
234
227
|
msgid "Age ≤ 90 d."
|
|
235
228
|
msgstr ""
|
|
236
229
|
|
|
@@ -241,7 +234,6 @@ msgstr ""
|
|
|
241
234
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
242
235
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
243
236
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
244
|
-
#, python-format
|
|
245
237
|
msgid "Aged Partner Balance"
|
|
246
238
|
msgstr "?????????? ???????? ??????????????"
|
|
247
239
|
|
|
@@ -276,7 +268,6 @@ msgstr "????????????? ???????? ?????????????? ????????"
|
|
|
276
268
|
#. module: account_financial_report
|
|
277
269
|
#. odoo-python
|
|
278
270
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
279
|
-
#, python-format
|
|
280
271
|
msgid "All"
|
|
281
272
|
msgstr "????????"
|
|
282
273
|
|
|
@@ -308,7 +299,6 @@ msgstr "???????????????? ??????"
|
|
|
308
299
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
309
300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
310
301
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
311
|
-
#, python-format
|
|
312
302
|
msgid "All entries"
|
|
313
303
|
msgstr "???? ????????????"
|
|
314
304
|
|
|
@@ -322,7 +312,6 @@ msgstr "???? ????????????"
|
|
|
322
312
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
323
313
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
324
314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
325
|
-
#, python-format
|
|
326
315
|
msgid "All posted entries"
|
|
327
316
|
msgstr "???????????????? ??????"
|
|
328
317
|
|
|
@@ -334,7 +323,6 @@ msgstr "???????????? ??????????????."
|
|
|
334
323
|
#. module: account_financial_report
|
|
335
324
|
#. odoo-python
|
|
336
325
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
337
|
-
#, python-format
|
|
338
326
|
msgid "Amount Currency"
|
|
339
327
|
msgstr "???????????? ??????????????"
|
|
340
328
|
|
|
@@ -342,7 +330,6 @@ msgstr "???????????? ??????????????"
|
|
|
342
330
|
#. odoo-python
|
|
343
331
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
344
332
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
345
|
-
#, python-format
|
|
346
333
|
msgid "Amount cur."
|
|
347
334
|
msgstr "???????????? ??????????????."
|
|
348
335
|
|
|
@@ -357,7 +344,6 @@ msgstr "?????????? ????????????????"
|
|
|
357
344
|
#. odoo-python
|
|
358
345
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
359
346
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
360
|
-
#, python-format
|
|
361
347
|
msgid "Analytic Distribution"
|
|
362
348
|
msgstr ""
|
|
363
349
|
|
|
@@ -376,21 +362,18 @@ msgstr "???????????? ????????????????"
|
|
|
376
362
|
#. module: account_financial_report
|
|
377
363
|
#. odoo-python
|
|
378
364
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
379
|
-
#, python-format
|
|
380
365
|
msgid "Base Balance"
|
|
381
366
|
msgstr "???????????? ??????????????"
|
|
382
367
|
|
|
383
368
|
#. module: account_financial_report
|
|
384
369
|
#. odoo-python
|
|
385
370
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
386
|
-
#, python-format
|
|
387
371
|
msgid "Base Credit"
|
|
388
372
|
msgstr "???????????? ??????????????"
|
|
389
373
|
|
|
390
374
|
#. module: account_financial_report
|
|
391
375
|
#. odoo-python
|
|
392
376
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
393
|
-
#, python-format
|
|
394
377
|
msgid "Base Debit"
|
|
395
378
|
msgstr "???????????? ??????????????"
|
|
396
379
|
|
|
@@ -403,7 +386,6 @@ msgstr "???????? ??????"
|
|
|
403
386
|
#. module: account_financial_report
|
|
404
387
|
#. odoo-python
|
|
405
388
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
406
|
-
#, python-format
|
|
407
389
|
msgid "Based on"
|
|
408
390
|
msgstr "???????? ??????"
|
|
409
391
|
|
|
@@ -421,7 +403,6 @@ msgstr "??????????"
|
|
|
421
403
|
#. odoo-python
|
|
422
404
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
423
405
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
424
|
-
#, python-format
|
|
425
406
|
msgid "Centralize filter"
|
|
426
407
|
msgstr "?????????? ????????????"
|
|
427
408
|
|
|
@@ -441,7 +422,6 @@ msgstr "?????????????? ??????????"
|
|
|
441
422
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
442
423
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
443
424
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
444
|
-
#, python-format
|
|
445
425
|
msgid "Code"
|
|
446
426
|
msgstr "??????????"
|
|
447
427
|
|
|
@@ -456,7 +436,6 @@ msgstr "??????????"
|
|
|
456
436
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
457
437
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
458
438
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
459
|
-
#, python-format
|
|
460
439
|
msgid "Company"
|
|
461
440
|
msgstr "??????????????"
|
|
462
441
|
|
|
@@ -510,7 +489,6 @@ msgstr "???????? ????"
|
|
|
510
489
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
511
490
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
512
491
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
513
|
-
#, python-format
|
|
514
492
|
msgid "Credit"
|
|
515
493
|
msgstr "????????????"
|
|
516
494
|
|
|
@@ -518,7 +496,6 @@ msgstr "????????????"
|
|
|
518
496
|
#. odoo-python
|
|
519
497
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
520
498
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
521
|
-
#, python-format
|
|
522
499
|
msgid "Cumul cur."
|
|
523
500
|
msgstr ""
|
|
524
501
|
|
|
@@ -526,7 +503,6 @@ msgstr ""
|
|
|
526
503
|
#. odoo-python
|
|
527
504
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
528
505
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
529
|
-
#, python-format
|
|
530
506
|
msgid "Cumul. Bal."
|
|
531
507
|
msgstr "???????????? ????????????????."
|
|
532
508
|
|
|
@@ -535,7 +511,6 @@ msgstr "???????????? ????????????????."
|
|
|
535
511
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
536
512
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
537
513
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
538
|
-
#, python-format
|
|
539
514
|
msgid "Cur."
|
|
540
515
|
msgstr "????????????"
|
|
541
516
|
|
|
@@ -543,7 +518,6 @@ msgstr "????????????"
|
|
|
543
518
|
#. odoo-python
|
|
544
519
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
545
520
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
546
|
-
#, python-format
|
|
547
521
|
msgid "Cur. Original"
|
|
548
522
|
msgstr "???????????????? ??????????????"
|
|
549
523
|
|
|
@@ -551,14 +525,12 @@ msgstr "???????????????? ??????????????"
|
|
|
551
525
|
#. odoo-python
|
|
552
526
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
553
527
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
554
|
-
#, python-format
|
|
555
528
|
msgid "Cur. Residual"
|
|
556
529
|
msgstr "?????????????? ??????????????"
|
|
557
530
|
|
|
558
531
|
#. module: account_financial_report
|
|
559
532
|
#. odoo-python
|
|
560
533
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
561
|
-
#, python-format
|
|
562
534
|
msgid "Currency"
|
|
563
535
|
msgstr "????????????"
|
|
564
536
|
|
|
@@ -566,7 +538,6 @@ msgstr "????????????"
|
|
|
566
538
|
#. odoo-python
|
|
567
539
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
568
540
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
569
|
-
#, python-format
|
|
570
541
|
msgid "Current"
|
|
571
542
|
msgstr "????????????"
|
|
572
543
|
|
|
@@ -581,7 +552,6 @@ msgstr "????????????"
|
|
|
581
552
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
582
553
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
583
554
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
584
|
-
#, python-format
|
|
585
555
|
msgid "Date"
|
|
586
556
|
msgstr "??????????????"
|
|
587
557
|
|
|
@@ -613,14 +583,12 @@ msgstr "?????????? ????????????????"
|
|
|
613
583
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
614
584
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
615
585
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
616
|
-
#, python-format
|
|
617
586
|
msgid "Date at filter"
|
|
618
587
|
msgstr "??????????????"
|
|
619
588
|
|
|
620
589
|
#. module: account_financial_report
|
|
621
590
|
#. odoo-python
|
|
622
591
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
623
|
-
#, python-format
|
|
624
592
|
msgid "Date from"
|
|
625
593
|
msgstr "?????????? ??????????"
|
|
626
594
|
|
|
@@ -639,14 +607,12 @@ msgstr "????????????"
|
|
|
639
607
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
640
608
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
641
609
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
642
|
-
#, python-format
|
|
643
610
|
msgid "Date range filter"
|
|
644
611
|
msgstr "?????????? ??????????????"
|
|
645
612
|
|
|
646
613
|
#. module: account_financial_report
|
|
647
614
|
#. odoo-python
|
|
648
615
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
649
|
-
#, python-format
|
|
650
616
|
msgid "Date to"
|
|
651
617
|
msgstr "????????????? ????????????????"
|
|
652
618
|
|
|
@@ -660,7 +626,6 @@ msgstr "????????????? ????????????????"
|
|
|
660
626
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
661
627
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
662
628
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
663
|
-
#, python-format
|
|
664
629
|
msgid "Debit"
|
|
665
630
|
msgstr "????????????"
|
|
666
631
|
|
|
@@ -669,7 +634,6 @@ msgstr "????????????"
|
|
|
669
634
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
670
635
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
671
636
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
672
|
-
#, python-format
|
|
673
637
|
msgid "Description"
|
|
674
638
|
msgstr "????????????"
|
|
675
639
|
|
|
@@ -724,7 +688,6 @@ msgstr "?????????? ??????????????????"
|
|
|
724
688
|
#. odoo-python
|
|
725
689
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
726
690
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
727
|
-
#, python-format
|
|
728
691
|
msgid "Due date"
|
|
729
692
|
msgstr "?????????? ??????????????????"
|
|
730
693
|
|
|
@@ -760,7 +723,6 @@ msgstr ""
|
|
|
760
723
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
761
724
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
762
725
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
763
|
-
#, python-format
|
|
764
726
|
msgid "Ending balance"
|
|
765
727
|
msgstr "???????????? ??????????????"
|
|
766
728
|
|
|
@@ -775,7 +737,6 @@ msgstr "???????????? ??????????????"
|
|
|
775
737
|
#. module: account_financial_report
|
|
776
738
|
#. odoo-python
|
|
777
739
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
778
|
-
#, python-format
|
|
779
740
|
msgid "Entries sorted by"
|
|
780
741
|
msgstr "?????????? ???????????? ??????"
|
|
781
742
|
|
|
@@ -789,21 +750,18 @@ msgstr "?????????? ???????????? ??????"
|
|
|
789
750
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
790
751
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
791
752
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
792
|
-
#, python-format
|
|
793
753
|
msgid "Entry"
|
|
794
754
|
msgstr "??????????"
|
|
795
755
|
|
|
796
756
|
#. module: account_financial_report
|
|
797
757
|
#. odoo-python
|
|
798
758
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
799
|
-
#, python-format
|
|
800
759
|
msgid "Entry number"
|
|
801
760
|
msgstr "?????? ??????????"
|
|
802
761
|
|
|
803
762
|
#. module: account_financial_report
|
|
804
763
|
#. odoo-javascript
|
|
805
764
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
806
|
-
#, python-format
|
|
807
765
|
msgid "Export"
|
|
808
766
|
msgstr ""
|
|
809
767
|
|
|
@@ -887,7 +845,6 @@ msgstr "????:"
|
|
|
887
845
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
888
846
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
889
847
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
890
|
-
#, python-format
|
|
891
848
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
892
849
|
msgstr ""
|
|
893
850
|
|
|
@@ -917,7 +874,6 @@ msgstr "?????????? ?????? ?????????? ??????????????"
|
|
|
917
874
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
918
875
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
919
876
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
920
|
-
#, python-format
|
|
921
877
|
msgid "General Ledger"
|
|
922
878
|
msgstr "?????????????? ??????????"
|
|
923
879
|
|
|
@@ -981,7 +937,6 @@ msgstr ""
|
|
|
981
937
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
982
938
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
983
939
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
984
|
-
#, python-format
|
|
985
940
|
msgid "Hide"
|
|
986
941
|
msgstr "??????????"
|
|
987
942
|
|
|
@@ -1029,7 +984,6 @@ msgstr ""
|
|
|
1029
984
|
#. module: account_financial_report
|
|
1030
985
|
#. odoo-python
|
|
1031
986
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1032
|
-
#, python-format
|
|
1033
987
|
msgid "Inferior Limit must be greather than zero"
|
|
1034
988
|
msgstr ""
|
|
1035
989
|
|
|
@@ -1053,7 +1007,6 @@ msgstr "???????????? ??????????????????"
|
|
|
1053
1007
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1054
1008
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1055
1009
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1056
|
-
#, python-format
|
|
1057
1010
|
msgid "Initial balance"
|
|
1058
1011
|
msgstr "???????????? ??????????????????"
|
|
1059
1012
|
|
|
@@ -1073,7 +1026,6 @@ msgstr ""
|
|
|
1073
1026
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1074
1027
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1075
1028
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1076
|
-
#, python-format
|
|
1077
1029
|
msgid "Journal"
|
|
1078
1030
|
msgstr "??????????????"
|
|
1079
1031
|
|
|
@@ -1094,7 +1046,6 @@ msgstr ""
|
|
|
1094
1046
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1095
1047
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1096
1048
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1097
|
-
#, python-format
|
|
1098
1049
|
msgid "Journal Ledger"
|
|
1099
1050
|
msgstr "?????????? ??????????????"
|
|
1100
1051
|
|
|
@@ -1131,7 +1082,6 @@ msgstr "?????????? ?????????????? ????????"
|
|
|
1131
1082
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1132
1083
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1133
1084
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1134
|
-
#, python-format
|
|
1135
1085
|
msgid "Journals"
|
|
1136
1086
|
msgstr "????????????????"
|
|
1137
1087
|
|
|
@@ -1168,7 +1118,7 @@ msgstr "??????????????"
|
|
|
1168
1118
|
#. module: account_financial_report
|
|
1169
1119
|
#. odoo-python
|
|
1170
1120
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1171
|
-
#, fuzzy
|
|
1121
|
+
#, fuzzy
|
|
1172
1122
|
msgid "Level %s"
|
|
1173
1123
|
msgstr "?????????????? %s"
|
|
1174
1124
|
|
|
@@ -1177,7 +1127,6 @@ msgstr "?????????????? %s"
|
|
|
1177
1127
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1178
1128
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1179
1129
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1180
|
-
#, python-format
|
|
1181
1130
|
msgid "Limit hierarchy levels"
|
|
1182
1131
|
msgstr ""
|
|
1183
1132
|
|
|
@@ -1191,7 +1140,6 @@ msgstr "??????"
|
|
|
1191
1140
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1192
1141
|
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1193
1142
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1194
|
-
#, python-format
|
|
1195
1143
|
msgid "Missing Partner"
|
|
1196
1144
|
msgstr ""
|
|
1197
1145
|
|
|
@@ -1218,7 +1166,6 @@ msgstr "????????????"
|
|
|
1218
1166
|
#. module: account_financial_report
|
|
1219
1167
|
#. odoo-python
|
|
1220
1168
|
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1221
|
-
#, python-format
|
|
1222
1169
|
msgid "Must complete Configuration Lines"
|
|
1223
1170
|
msgstr ""
|
|
1224
1171
|
|
|
@@ -1231,15 +1178,11 @@ msgstr ""
|
|
|
1231
1178
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1232
1179
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1233
1180
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1234
|
-
#, python-format
|
|
1235
1181
|
msgid "Name"
|
|
1236
1182
|
msgstr "??????????"
|
|
1237
1183
|
|
|
1238
1184
|
#. module: account_financial_report
|
|
1239
|
-
#. odoo-python
|
|
1240
|
-
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1241
1185
|
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1242
|
-
#, python-format
|
|
1243
1186
|
msgid "Name must be unique per report configuration"
|
|
1244
1187
|
msgstr ""
|
|
1245
1188
|
|
|
@@ -1247,7 +1190,6 @@ msgstr ""
|
|
|
1247
1190
|
#. odoo-python
|
|
1248
1191
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1249
1192
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1250
|
-
#, python-format
|
|
1251
1193
|
msgid "Net"
|
|
1252
1194
|
msgstr "????????????"
|
|
1253
1195
|
|
|
@@ -1257,14 +1199,12 @@ msgstr "????????????"
|
|
|
1257
1199
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1258
1200
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1259
1201
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1260
|
-
#, python-format
|
|
1261
1202
|
msgid "No"
|
|
1262
1203
|
msgstr "????"
|
|
1263
1204
|
|
|
1264
1205
|
#. module: account_financial_report
|
|
1265
1206
|
#. odoo-python
|
|
1266
1207
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1267
|
-
#, python-format
|
|
1268
1208
|
msgid "No group"
|
|
1269
1209
|
msgstr "???????? ??????????"
|
|
1270
1210
|
|
|
@@ -1272,7 +1212,6 @@ msgstr "???????? ??????????"
|
|
|
1272
1212
|
#. odoo-python
|
|
1273
1213
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1274
1214
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1275
|
-
#, python-format
|
|
1276
1215
|
msgid "No limit"
|
|
1277
1216
|
msgstr ""
|
|
1278
1217
|
|
|
@@ -1284,7 +1223,6 @@ msgstr ""
|
|
|
1284
1223
|
#. module: account_financial_report
|
|
1285
1224
|
#. odoo-python
|
|
1286
1225
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1287
|
-
#, python-format
|
|
1288
1226
|
msgid "Not Posted"
|
|
1289
1227
|
msgstr "?????? ??????????"
|
|
1290
1228
|
|
|
@@ -1307,7 +1245,6 @@ msgstr "???????????? ?????????????? OCA"
|
|
|
1307
1245
|
#. odoo-python
|
|
1308
1246
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1309
1247
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1310
|
-
#, python-format
|
|
1311
1248
|
msgid "Older"
|
|
1312
1249
|
msgstr "????????"
|
|
1313
1250
|
|
|
@@ -1324,7 +1261,6 @@ msgstr ""
|
|
|
1324
1261
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1325
1262
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1326
1263
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1327
|
-
#, python-format
|
|
1328
1264
|
msgid "Open Items"
|
|
1329
1265
|
msgstr "?????????? ??????????????"
|
|
1330
1266
|
|
|
@@ -1371,7 +1307,6 @@ msgstr "????????????????"
|
|
|
1371
1307
|
#. odoo-python
|
|
1372
1308
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1373
1309
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1374
|
-
#, python-format
|
|
1375
1310
|
msgid "Original"
|
|
1376
1311
|
msgstr "????????????????"
|
|
1377
1312
|
|
|
@@ -1388,7 +1323,6 @@ msgstr "????????????????"
|
|
|
1388
1323
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1389
1324
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1390
1325
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1391
|
-
#, python-format
|
|
1392
1326
|
msgid "Partner"
|
|
1393
1327
|
msgstr "????????????"
|
|
1394
1328
|
|
|
@@ -1402,14 +1336,12 @@ msgstr "???????????? ???????????? ????????????????"
|
|
|
1402
1336
|
#. module: account_financial_report
|
|
1403
1337
|
#. odoo-python
|
|
1404
1338
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1405
|
-
#, python-format
|
|
1406
1339
|
msgid "Partner Initial balance"
|
|
1407
1340
|
msgstr "???????? ???????????? ??????????????????"
|
|
1408
1341
|
|
|
1409
1342
|
#. module: account_financial_report
|
|
1410
1343
|
#. odoo-python
|
|
1411
1344
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1412
|
-
#, python-format
|
|
1413
1345
|
msgid "Partner cumul aged balance"
|
|
1414
1346
|
msgstr "???????????? ???????????? ????????????????"
|
|
1415
1347
|
|
|
@@ -1419,7 +1351,6 @@ msgstr "???????????? ???????????? ????????????????"
|
|
|
1419
1351
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1420
1352
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1421
1353
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1422
|
-
#, python-format
|
|
1423
1354
|
msgid "Partner ending balance"
|
|
1424
1355
|
msgstr ""
|
|
1425
1356
|
|
|
@@ -1450,7 +1381,7 @@ msgstr ""
|
|
|
1450
1381
|
#. odoo-python
|
|
1451
1382
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1452
1383
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1453
|
-
#, fuzzy
|
|
1384
|
+
#, fuzzy
|
|
1454
1385
|
msgid "Period balance"
|
|
1455
1386
|
msgstr "???????? ???????????? ??????????????????"
|
|
1456
1387
|
|
|
@@ -1462,7 +1393,6 @@ msgstr ""
|
|
|
1462
1393
|
#. module: account_financial_report
|
|
1463
1394
|
#. odoo-python
|
|
1464
1395
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1465
|
-
#, python-format
|
|
1466
1396
|
msgid "Posted"
|
|
1467
1397
|
msgstr ""
|
|
1468
1398
|
|
|
@@ -1470,7 +1400,6 @@ msgstr ""
|
|
|
1470
1400
|
#. odoo-python
|
|
1471
1401
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1472
1402
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1473
|
-
#, python-format
|
|
1474
1403
|
msgid "Rec."
|
|
1475
1404
|
msgstr ""
|
|
1476
1405
|
|
|
@@ -1505,7 +1434,6 @@ msgstr "?????????? ??????????????????"
|
|
|
1505
1434
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1506
1435
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1507
1436
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1508
|
-
#, python-format
|
|
1509
1437
|
msgid "Ref - Label"
|
|
1510
1438
|
msgstr ""
|
|
1511
1439
|
|
|
@@ -1521,7 +1449,6 @@ msgstr ""
|
|
|
1521
1449
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1522
1450
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1523
1451
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1524
|
-
#, python-format
|
|
1525
1452
|
msgid "Residual"
|
|
1526
1453
|
msgstr ""
|
|
1527
1454
|
|
|
@@ -1529,7 +1456,6 @@ msgstr ""
|
|
|
1529
1456
|
#. odoo-python
|
|
1530
1457
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1531
1458
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1532
|
-
#, python-format
|
|
1533
1459
|
msgid "Sequence"
|
|
1534
1460
|
msgstr ""
|
|
1535
1461
|
|
|
@@ -1541,7 +1467,6 @@ msgstr ""
|
|
|
1541
1467
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1542
1468
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1543
1469
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1544
|
-
#, python-format
|
|
1545
1470
|
msgid "Show"
|
|
1546
1471
|
msgstr ""
|
|
1547
1472
|
|
|
@@ -1574,7 +1499,6 @@ msgstr ""
|
|
|
1574
1499
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1575
1500
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1576
1501
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1577
|
-
#, python-format
|
|
1578
1502
|
msgid "Show foreign currency"
|
|
1579
1503
|
msgstr ""
|
|
1580
1504
|
|
|
@@ -1609,7 +1533,6 @@ msgstr ""
|
|
|
1609
1533
|
#. odoo-python
|
|
1610
1534
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1611
1535
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1612
|
-
#, python-format
|
|
1613
1536
|
msgid "TOTAL"
|
|
1614
1537
|
msgstr ""
|
|
1615
1538
|
|
|
@@ -1638,7 +1561,6 @@ msgstr ""
|
|
|
1638
1561
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1639
1562
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1640
1563
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1641
|
-
#, python-format
|
|
1642
1564
|
msgid "Target moves filter"
|
|
1643
1565
|
msgstr ""
|
|
1644
1566
|
|
|
@@ -1646,7 +1568,6 @@ msgstr ""
|
|
|
1646
1568
|
#. odoo-python
|
|
1647
1569
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1648
1570
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1649
|
-
#, python-format
|
|
1650
1571
|
msgid "Tax"
|
|
1651
1572
|
msgstr ""
|
|
1652
1573
|
|
|
@@ -1659,21 +1580,18 @@ msgstr ""
|
|
|
1659
1580
|
#. module: account_financial_report
|
|
1660
1581
|
#. odoo-python
|
|
1661
1582
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1662
|
-
#, python-format
|
|
1663
1583
|
msgid "Tax Balance"
|
|
1664
1584
|
msgstr ""
|
|
1665
1585
|
|
|
1666
1586
|
#. module: account_financial_report
|
|
1667
1587
|
#. odoo-python
|
|
1668
1588
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1669
|
-
#, python-format
|
|
1670
1589
|
msgid "Tax Credit"
|
|
1671
1590
|
msgstr ""
|
|
1672
1591
|
|
|
1673
1592
|
#. module: account_financial_report
|
|
1674
1593
|
#. odoo-python
|
|
1675
1594
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1676
|
-
#, python-format
|
|
1677
1595
|
msgid "Tax Debit"
|
|
1678
1596
|
msgstr ""
|
|
1679
1597
|
|
|
@@ -1681,14 +1599,12 @@ msgstr ""
|
|
|
1681
1599
|
#. odoo-python
|
|
1682
1600
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1683
1601
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1684
|
-
#, python-format
|
|
1685
1602
|
msgid "Tax Groups"
|
|
1686
1603
|
msgstr ""
|
|
1687
1604
|
|
|
1688
1605
|
#. module: account_financial_report
|
|
1689
1606
|
#. odoo-python
|
|
1690
1607
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1691
|
-
#, python-format
|
|
1692
1608
|
msgid "Tax Initial balance"
|
|
1693
1609
|
msgstr ""
|
|
1694
1610
|
|
|
@@ -1696,7 +1612,6 @@ msgstr ""
|
|
|
1696
1612
|
#. odoo-python
|
|
1697
1613
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1698
1614
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1699
|
-
#, python-format
|
|
1700
1615
|
msgid "Tax Tags"
|
|
1701
1616
|
msgstr ""
|
|
1702
1617
|
|
|
@@ -1704,7 +1619,6 @@ msgstr ""
|
|
|
1704
1619
|
#. odoo-python
|
|
1705
1620
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1706
1621
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1707
|
-
#, python-format
|
|
1708
1622
|
msgid "Tax ending balance"
|
|
1709
1623
|
msgstr ""
|
|
1710
1624
|
|
|
@@ -1720,14 +1634,12 @@ msgstr ""
|
|
|
1720
1634
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1721
1635
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1722
1636
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1723
|
-
#, python-format
|
|
1724
1637
|
msgid "Taxes"
|
|
1725
1638
|
msgstr ""
|
|
1726
1639
|
|
|
1727
1640
|
#. module: account_financial_report
|
|
1728
1641
|
#. odoo-python
|
|
1729
1642
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1730
|
-
#, python-format
|
|
1731
1643
|
msgid ""
|
|
1732
1644
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1733
1645
|
"the same."
|
|
@@ -1736,7 +1648,6 @@ msgstr ""
|
|
|
1736
1648
|
#. module: account_financial_report
|
|
1737
1649
|
#. odoo-python
|
|
1738
1650
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1739
|
-
#, python-format
|
|
1740
1651
|
msgid ""
|
|
1741
1652
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1742
1653
|
"same."
|
|
@@ -1745,7 +1656,6 @@ msgstr ""
|
|
|
1745
1656
|
#. module: account_financial_report
|
|
1746
1657
|
#. odoo-python
|
|
1747
1658
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1748
|
-
#, python-format
|
|
1749
1659
|
msgid ""
|
|
1750
1660
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1751
1661
|
msgstr ""
|
|
@@ -1753,7 +1663,6 @@ msgstr ""
|
|
|
1753
1663
|
#. module: account_financial_report
|
|
1754
1664
|
#. odoo-python
|
|
1755
1665
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1756
|
-
#, python-format
|
|
1757
1666
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1758
1667
|
msgstr ""
|
|
1759
1668
|
|
|
@@ -1776,7 +1685,6 @@ msgstr ""
|
|
|
1776
1685
|
#. odoo-python
|
|
1777
1686
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1778
1687
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1779
|
-
#, python-format
|
|
1780
1688
|
msgid "Total"
|
|
1781
1689
|
msgstr ""
|
|
1782
1690
|
|
|
@@ -1787,7 +1695,6 @@ msgstr ""
|
|
|
1787
1695
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1788
1696
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1789
1697
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1790
|
-
#, python-format
|
|
1791
1698
|
msgid "Trial Balance"
|
|
1792
1699
|
msgstr ""
|
|
1793
1700
|
|
|
@@ -1877,7 +1784,6 @@ msgstr ""
|
|
|
1877
1784
|
#. module: account_financial_report
|
|
1878
1785
|
#. odoo-python
|
|
1879
1786
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1880
|
-
#, python-format
|
|
1881
1787
|
msgid "Vat Report"
|
|
1882
1788
|
msgstr ""
|
|
1883
1789
|
|
|
@@ -1916,7 +1822,6 @@ msgstr ""
|
|
|
1916
1822
|
#. module: account_financial_report
|
|
1917
1823
|
#. odoo-python
|
|
1918
1824
|
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1919
|
-
#, python-format
|
|
1920
1825
|
msgid "Without analytic account"
|
|
1921
1826
|
msgstr ""
|
|
1922
1827
|
|
|
@@ -1926,14 +1831,12 @@ msgstr ""
|
|
|
1926
1831
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1927
1832
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1928
1833
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1929
|
-
#, python-format
|
|
1930
1834
|
msgid "Yes"
|
|
1931
1835
|
msgstr ""
|
|
1932
1836
|
|
|
1933
1837
|
#. module: account_financial_report
|
|
1934
1838
|
#. odoo-python
|
|
1935
1839
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1936
|
-
#, python-format
|
|
1937
1840
|
msgid "future"
|
|
1938
1841
|
msgstr ""
|
|
1939
1842
|
|