odoo-addon-account-financial-report 15.0.1.1.0.1__py3-none-any.whl → 18.0.1.4.4.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.
Files changed (104) hide show
  1. odoo/addons/account_financial_report/README.rst +131 -74
  2. odoo/addons/account_financial_report/__manifest__.py +6 -9
  3. odoo/addons/account_financial_report/i18n/account_financial_report.pot +313 -188
  4. odoo/addons/account_financial_report/i18n/ar.po +579 -433
  5. odoo/addons/account_financial_report/i18n/ca.po +474 -289
  6. odoo/addons/account_financial_report/i18n/{fr_FR.po → ca_AD.po} +539 -491
  7. odoo/addons/account_financial_report/i18n/ca_ES.po +1891 -0
  8. odoo/addons/account_financial_report/i18n/de.po +455 -295
  9. odoo/addons/account_financial_report/i18n/es.po +458 -394
  10. odoo/addons/account_financial_report/i18n/es_AR.po +464 -283
  11. odoo/addons/account_financial_report/i18n/es_MX.po +315 -220
  12. odoo/addons/account_financial_report/i18n/fr.po +620 -435
  13. odoo/addons/account_financial_report/i18n/fr_CH.po +616 -462
  14. odoo/addons/account_financial_report/i18n/hr.po +506 -355
  15. odoo/addons/account_financial_report/i18n/hr_HR.po +331 -232
  16. odoo/addons/account_financial_report/i18n/it.po +538 -356
  17. odoo/addons/account_financial_report/i18n/ja.po +339 -240
  18. odoo/addons/account_financial_report/i18n/nl.po +462 -324
  19. odoo/addons/account_financial_report/i18n/nl_NL.po +318 -220
  20. odoo/addons/account_financial_report/i18n/pt.po +429 -242
  21. odoo/addons/account_financial_report/i18n/pt_BR.po +588 -438
  22. odoo/addons/account_financial_report/i18n/ro.po +499 -342
  23. odoo/addons/account_financial_report/i18n/sl.po +1945 -0
  24. odoo/addons/account_financial_report/i18n/sv.po +1997 -0
  25. odoo/addons/account_financial_report/i18n/tr.po +1947 -0
  26. odoo/addons/account_financial_report/menuitems.xml +1 -1
  27. odoo/addons/account_financial_report/models/__init__.py +2 -0
  28. odoo/addons/account_financial_report/models/account_age_report_configuration.py +49 -0
  29. odoo/addons/account_financial_report/models/account_group.py +62 -23
  30. odoo/addons/account_financial_report/models/account_move_line.py +33 -3
  31. odoo/addons/account_financial_report/models/ir_actions_report.py +6 -4
  32. odoo/addons/account_financial_report/models/res_config_settings.py +36 -0
  33. odoo/addons/account_financial_report/readme/CONFIGURE.md +26 -0
  34. odoo/addons/account_financial_report/readme/CONTRIBUTORS.md +38 -0
  35. odoo/addons/account_financial_report/readme/CREDITS.md +1 -0
  36. odoo/addons/account_financial_report/readme/DESCRIPTION.md +21 -0
  37. odoo/addons/account_financial_report/readme/HISTORY.md +16 -0
  38. odoo/addons/account_financial_report/readme/ROADMAP.md +6 -0
  39. odoo/addons/account_financial_report/report/abstract_report.py +73 -23
  40. odoo/addons/account_financial_report/report/abstract_report_xlsx.py +28 -23
  41. odoo/addons/account_financial_report/report/aged_partner_balance.py +131 -30
  42. odoo/addons/account_financial_report/report/aged_partner_balance_xlsx.py +158 -118
  43. odoo/addons/account_financial_report/report/general_ledger.py +421 -340
  44. odoo/addons/account_financial_report/report/general_ledger_xlsx.py +127 -75
  45. odoo/addons/account_financial_report/report/journal_ledger.py +84 -68
  46. odoo/addons/account_financial_report/report/journal_ledger_xlsx.py +14 -8
  47. odoo/addons/account_financial_report/report/open_items.py +113 -70
  48. odoo/addons/account_financial_report/report/open_items_xlsx.py +152 -19
  49. odoo/addons/account_financial_report/report/templates/aged_partner_balance.xml +408 -311
  50. odoo/addons/account_financial_report/report/templates/general_ledger.xml +273 -213
  51. odoo/addons/account_financial_report/report/templates/journal_ledger.xml +70 -76
  52. odoo/addons/account_financial_report/report/templates/layouts.xml +12 -1
  53. odoo/addons/account_financial_report/report/templates/open_items.xml +181 -55
  54. odoo/addons/account_financial_report/report/templates/trial_balance.xml +304 -195
  55. odoo/addons/account_financial_report/report/templates/vat_report.xml +10 -10
  56. odoo/addons/account_financial_report/report/trial_balance.py +463 -211
  57. odoo/addons/account_financial_report/report/trial_balance_xlsx.py +37 -38
  58. odoo/addons/account_financial_report/report/vat_report.py +36 -25
  59. odoo/addons/account_financial_report/report/vat_report_xlsx.py +1 -1
  60. odoo/addons/account_financial_report/security/ir.model.access.csv +2 -0
  61. odoo/addons/account_financial_report/security/security.xml +8 -0
  62. odoo/addons/account_financial_report/static/description/index.html +106 -55
  63. odoo/addons/account_financial_report/static/src/css/report.css +77 -42
  64. odoo/addons/account_financial_report/static/src/css/report_html.css +10 -0
  65. odoo/addons/account_financial_report/static/src/js/report.esm.js +72 -0
  66. odoo/addons/account_financial_report/static/src/js/report_action.esm.js +39 -0
  67. odoo/addons/account_financial_report/static/src/xml/report.xml +10 -9
  68. odoo/addons/account_financial_report/tests/__init__.py +1 -0
  69. odoo/addons/account_financial_report/tests/test_age_report_configuration.py +42 -0
  70. odoo/addons/account_financial_report/tests/test_aged_partner_balance.py +99 -9
  71. odoo/addons/account_financial_report/tests/test_general_ledger.py +19 -9
  72. odoo/addons/account_financial_report/tests/test_journal_ledger.py +18 -9
  73. odoo/addons/account_financial_report/tests/test_open_items.py +42 -2
  74. odoo/addons/account_financial_report/tests/test_trial_balance.py +114 -223
  75. odoo/addons/account_financial_report/tests/test_vat_report.py +17 -9
  76. odoo/addons/account_financial_report/view/account_age_report_configuration_views.xml +41 -0
  77. odoo/addons/account_financial_report/view/res_config_settings_views.xml +51 -0
  78. odoo/addons/account_financial_report/wizard/abstract_wizard.py +23 -0
  79. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard.py +22 -8
  80. odoo/addons/account_financial_report/wizard/aged_partner_balance_wizard_view.xml +2 -3
  81. odoo/addons/account_financial_report/wizard/general_ledger_wizard.py +42 -36
  82. odoo/addons/account_financial_report/wizard/general_ledger_wizard_view.xml +26 -41
  83. odoo/addons/account_financial_report/wizard/journal_ledger_wizard.py +19 -7
  84. odoo/addons/account_financial_report/wizard/journal_ledger_wizard_view.xml +15 -14
  85. odoo/addons/account_financial_report/wizard/open_items_wizard.py +34 -8
  86. odoo/addons/account_financial_report/wizard/open_items_wizard_view.xml +16 -14
  87. odoo/addons/account_financial_report/wizard/trial_balance_wizard.py +68 -45
  88. odoo/addons/account_financial_report/wizard/trial_balance_wizard_view.xml +40 -39
  89. odoo/addons/account_financial_report/wizard/vat_report_wizard.py +9 -3
  90. odoo/addons/account_financial_report/wizard/vat_report_wizard_view.xml +14 -14
  91. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/METADATA +234 -0
  92. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/RECORD +107 -0
  93. {odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info → odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info}/WHEEL +1 -1
  94. odoo_addon_account_financial_report-18.0.1.4.4.3.dist-info/top_level.txt +1 -0
  95. odoo/addons/account_financial_report/readme/CONTRIBUTORS.rst +0 -35
  96. odoo/addons/account_financial_report/readme/DESCRIPTION.rst +0 -16
  97. odoo/addons/account_financial_report/readme/HISTORY.rst +0 -19
  98. odoo/addons/account_financial_report/readme/ROADMAP.rst +0 -7
  99. odoo/addons/account_financial_report/static/src/js/action_manager_report.js +0 -37
  100. odoo/addons/account_financial_report/static/src/js/client_action.js +0 -58
  101. odoo/addons/account_financial_report/static/src/js/report.js +0 -58
  102. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/METADATA +0 -179
  103. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/RECORD +0 -95
  104. odoo_addon_account_financial_report-15.0.1.1.0.1.dist-info/top_level.txt +0 -1
@@ -19,12 +19,12 @@ msgstr ""
19
19
  #. module: account_financial_report
20
20
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
21
21
  msgid "> 120 d."
22
- msgstr "> 120"
22
+ msgstr "> 120???"
23
23
 
24
24
  #. module: account_financial_report
25
25
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
26
26
  msgid "1 - 30 d."
27
- msgstr "1 - 30 "
27
+ msgstr "1 - 30 ???"
28
28
 
29
29
  #. module: account_financial_report
30
30
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
@@ -35,23 +35,36 @@ msgstr "10"
35
35
  #. module: account_financial_report
36
36
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
37
37
  msgid "31 - 60 d."
38
- msgstr "31 - 60 "
38
+ msgstr "31 - 60 ???"
39
39
 
40
40
  #. module: account_financial_report
41
41
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
42
42
  msgid "61 - 90 d."
43
- msgstr "61 - 90 "
43
+ msgstr "61 - 90 ???"
44
44
 
45
45
  #. module: account_financial_report
46
46
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
47
47
  msgid "91 - 120 d."
48
- msgstr "91 - 120 "
48
+ msgstr "91 - 120 ???"
49
49
 
50
50
  #. module: account_financial_report
51
51
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
52
52
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
53
53
  msgid "<b>Taxes summary</b>"
54
- msgstr "<b>税サマリ</b>"
54
+ msgstr "<b>????????????</b>"
55
+
56
+ #. module: account_financial_report
57
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
58
+ msgid ""
59
+ "<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
60
+ " Duplicate amounts may be shown because more than one "
61
+ "analytical account may be defined in the journal items."
62
+ msgstr ""
63
+
64
+ #. module: account_financial_report
65
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
66
+ msgid "<span class=\"o_form_label\">Intervals configuration</span>"
67
+ msgstr ""
55
68
 
56
69
  #. module: account_financial_report
57
70
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
@@ -69,7 +82,7 @@ msgstr ""
69
82
  #. module: account_financial_report
70
83
  #: model:ir.model,name:account_financial_report.model_account_financial_report_abstract_wizard
71
84
  msgid "Abstract Wizard"
72
- msgstr "アブストラクトウィザード"
85
+ msgstr "????????????????????????????????????"
73
86
 
74
87
  #. module: account_financial_report
75
88
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_abstract_report_xlsx
@@ -77,6 +90,7 @@ msgid "Abstract XLSX Account Financial Report"
77
90
  msgstr ""
78
91
 
79
92
  #. module: account_financial_report
93
+ #. odoo-python
80
94
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
81
95
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
82
96
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -88,9 +102,13 @@ msgstr ""
88
102
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
89
103
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
90
104
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
91
- #, python-format
92
105
  msgid "Account"
93
- msgstr "勘定科目"
106
+ msgstr "????????????"
107
+
108
+ #. module: account_financial_report
109
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
110
+ msgid "Account Age Report Config"
111
+ msgstr ""
94
112
 
95
113
  #. module: account_financial_report
96
114
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
@@ -99,7 +117,7 @@ msgstr "勘定科目"
99
117
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_from
100
118
  #, fuzzy
101
119
  msgid "Account Code From"
102
- msgstr "勘定科目コード"
120
+ msgstr "?????????????????????"
103
121
 
104
122
  #. module: account_financial_report
105
123
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_to
@@ -108,60 +126,67 @@ msgstr "勘定科目コード"
108
126
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__account_code_to
109
127
  #, fuzzy
110
128
  msgid "Account Code To"
111
- msgstr "勘定科目コード"
129
+ msgstr "?????????????????????"
112
130
 
113
131
  #. module: account_financial_report
114
132
  #: model:ir.model,name:account_financial_report.model_account_group
115
133
  msgid "Account Group"
116
- msgstr "勘定科目グループ"
134
+ msgstr "????????????????????????"
117
135
 
118
136
  #. module: account_financial_report
137
+ #. odoo-python
119
138
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
120
- #, python-format
121
139
  msgid "Account Name"
122
- msgstr "勘定科目名"
140
+ msgstr "???????????????"
123
141
 
124
142
  #. module: account_financial_report
143
+ #. odoo-python
125
144
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
126
145
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
127
- #, fuzzy, python-format
146
+ #, fuzzy
128
147
  msgid "Account at 0 filter"
129
148
  msgstr "Account at 0 filter"
130
149
 
131
150
  #. module: account_financial_report
151
+ #. odoo-python
132
152
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
133
153
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
134
154
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
135
155
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
136
- #, fuzzy, python-format
156
+ #, fuzzy
137
157
  msgid "Account balance at 0 filter"
138
158
  msgstr "Account balance at 0 filter"
139
159
 
140
160
  #. module: account_financial_report
141
161
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__account_ids
142
162
  msgid "Accounts"
143
- msgstr "勘定科目"
163
+ msgstr "????????????"
144
164
 
145
165
  #. module: account_financial_report
146
166
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__centralize
147
167
  msgid "Activate centralization"
148
- msgstr "集約を有効化"
168
+ msgstr "??????????????????"
149
169
 
150
170
  #. module: account_financial_report
151
171
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
152
172
  msgid "Additional Filtering"
153
173
  msgstr ""
154
174
 
175
+ #. module: account_financial_report
176
+ #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
177
+ msgid "Age Partner Report Configuration"
178
+ msgstr ""
179
+
155
180
  #. module: account_financial_report
156
181
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
157
182
  msgid ""
158
183
  "Age ≤ 120\n"
159
- " d."
184
+ " d."
160
185
  msgstr ""
161
186
 
162
187
  #. module: account_financial_report
188
+ #. odoo-python
163
189
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
164
- #, python-format
165
190
  msgid "Age ≤ 120 d."
166
191
  msgstr ""
167
192
 
@@ -169,12 +194,12 @@ msgstr ""
169
194
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
170
195
  msgid ""
171
196
  "Age ≤ 30\n"
172
- " d."
197
+ " d."
173
198
  msgstr ""
174
199
 
175
200
  #. module: account_financial_report
201
+ #. odoo-python
176
202
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
177
- #, python-format
178
203
  msgid "Age ≤ 30 d."
179
204
  msgstr ""
180
205
 
@@ -182,12 +207,12 @@ msgstr ""
182
207
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
183
208
  msgid ""
184
209
  "Age ≤ 60\n"
185
- " d."
210
+ " d."
186
211
  msgstr ""
187
212
 
188
213
  #. module: account_financial_report
214
+ #. odoo-python
189
215
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
190
- #, python-format
191
216
  msgid "Age ≤ 60 d."
192
217
  msgstr ""
193
218
 
@@ -195,22 +220,22 @@ msgstr ""
195
220
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
196
221
  msgid ""
197
222
  "Age ≤ 90\n"
198
- " d."
223
+ " d."
199
224
  msgstr ""
200
225
 
201
226
  #. module: account_financial_report
227
+ #. odoo-python
202
228
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
203
- #, python-format
204
229
  msgid "Age ≤ 90 d."
205
230
  msgstr ""
206
231
 
207
232
  #. module: account_financial_report
233
+ #. odoo-python
208
234
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
209
235
  #: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
210
236
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
211
237
  #: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
212
238
  #: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
213
- #, python-format
214
239
  msgid "Aged Partner Balance"
215
240
  msgstr ""
216
241
 
@@ -240,8 +265,8 @@ msgid "Aged Partner Balance XLSX"
240
265
  msgstr ""
241
266
 
242
267
  #. module: account_financial_report
268
+ #. odoo-python
243
269
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
244
- #, python-format
245
270
  msgid "All"
246
271
  msgstr ""
247
272
 
@@ -264,6 +289,7 @@ msgid "All Posted Entries"
264
289
  msgstr ""
265
290
 
266
291
  #. module: account_financial_report
292
+ #. odoo-python
267
293
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
268
294
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
269
295
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -272,11 +298,11 @@ msgstr ""
272
298
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
273
299
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
274
300
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
275
- #, python-format
276
301
  msgid "All entries"
277
302
  msgstr ""
278
303
 
279
304
  #. module: account_financial_report
305
+ #. odoo-python
280
306
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
281
307
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
282
308
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -285,7 +311,6 @@ msgstr ""
285
311
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
286
312
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
287
313
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
288
- #, python-format
289
314
  msgid "All posted entries"
290
315
  msgstr ""
291
316
 
@@ -295,24 +320,31 @@ msgid "Amount Cur."
295
320
  msgstr ""
296
321
 
297
322
  #. module: account_financial_report
323
+ #. odoo-python
298
324
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
299
- #, python-format
300
325
  msgid "Amount Currency"
301
326
  msgstr ""
302
327
 
303
328
  #. module: account_financial_report
329
+ #. odoo-python
304
330
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
305
331
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
306
- #, python-format
307
332
  msgid "Amount cur."
308
333
  msgstr ""
309
334
 
310
335
  #. module: account_financial_report
336
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
337
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
338
+ #, fuzzy
339
+ msgid "Analytic Account"
340
+ msgstr "????????????"
341
+
342
+ #. module: account_financial_report
343
+ #. odoo-python
311
344
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
312
345
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
313
- #, fuzzy, python-format
314
- msgid "Analytic Account"
315
- msgstr "勘定科目"
346
+ msgid "Analytic Distribution"
347
+ msgstr ""
316
348
 
317
349
  #. module: account_financial_report
318
350
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
@@ -327,20 +359,20 @@ msgid "Base Amount"
327
359
  msgstr ""
328
360
 
329
361
  #. module: account_financial_report
362
+ #. odoo-python
330
363
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
331
- #, python-format
332
364
  msgid "Base Balance"
333
365
  msgstr ""
334
366
 
335
367
  #. module: account_financial_report
368
+ #. odoo-python
336
369
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
337
- #, python-format
338
370
  msgid "Base Credit"
339
371
  msgstr ""
340
372
 
341
373
  #. module: account_financial_report
374
+ #. odoo-python
342
375
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
343
- #, python-format
344
376
  msgid "Base Debit"
345
377
  msgstr ""
346
378
 
@@ -351,8 +383,8 @@ msgid "Based On"
351
383
  msgstr ""
352
384
 
353
385
  #. module: account_financial_report
386
+ #. odoo-python
354
387
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
355
- #, python-format
356
388
  msgid "Based on"
357
389
  msgstr ""
358
390
 
@@ -367,9 +399,9 @@ msgid "Cancel"
367
399
  msgstr ""
368
400
 
369
401
  #. module: account_financial_report
402
+ #. odoo-python
370
403
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
371
404
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
372
- #, python-format
373
405
  msgid "Centralize filter"
374
406
  msgstr ""
375
407
 
@@ -378,27 +410,24 @@ msgstr ""
378
410
  msgid "Centralized"
379
411
  msgstr ""
380
412
 
381
- #. module: account_financial_report
382
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
383
- msgid "Child Accounts"
384
- msgstr ""
385
-
386
413
  #. module: account_financial_report
387
414
  #: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
388
415
  msgid "Child Groups"
389
416
  msgstr ""
390
417
 
391
418
  #. module: account_financial_report
419
+ #. odoo-python
392
420
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
393
421
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
394
422
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
395
423
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
396
- #, python-format
397
424
  msgid "Code"
398
425
  msgstr ""
399
426
 
400
427
  #. module: account_financial_report
428
+ #. odoo-python
401
429
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
430
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
402
431
  #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
403
432
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
404
433
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
@@ -406,7 +435,6 @@ msgstr ""
406
435
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
407
436
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
408
437
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
409
- #, python-format
410
438
  msgid "Company"
411
439
  msgstr ""
412
440
 
@@ -416,24 +444,18 @@ msgid "Compute accounts"
416
444
  msgstr ""
417
445
 
418
446
  #. module: account_financial_report
419
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__computed
420
- msgid "Computed Accounts"
447
+ #: model:ir.model,name:account_financial_report.model_res_config_settings
448
+ msgid "Config Settings"
421
449
  msgstr ""
422
450
 
423
451
  #. module: account_financial_report
424
- #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
425
- msgid ""
426
- "Computed Accounts: Use when the account group have codes\n"
427
- " that represent prefixes of the actual accounts.\n"
428
- "\n"
429
- " Child Accounts: Use when your account groups are hierarchical.\n"
430
- "\n"
431
- " No hierarchy: Use to display just the accounts, without any "
432
- "grouping.\n"
433
- " "
452
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
453
+ msgid "Configurations"
434
454
  msgstr ""
435
455
 
436
456
  #. module: account_financial_report
457
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
458
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
437
459
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
438
460
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
439
461
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
@@ -444,6 +466,8 @@ msgid "Created by"
444
466
  msgstr ""
445
467
 
446
468
  #. module: account_financial_report
469
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
470
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
447
471
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
448
472
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
449
473
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
@@ -454,6 +478,7 @@ msgid "Created on"
454
478
  msgstr ""
455
479
 
456
480
  #. module: account_financial_report
481
+ #. odoo-python
457
482
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
458
483
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
459
484
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -462,57 +487,60 @@ msgstr ""
462
487
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
463
488
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
464
489
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
465
- #, python-format
466
490
  msgid "Credit"
467
491
  msgstr ""
468
492
 
469
493
  #. module: account_financial_report
494
+ #. odoo-python
470
495
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
471
496
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
472
- #, python-format
473
- msgid "Cumul. Bal."
497
+ msgid "Cumul cur."
474
498
  msgstr ""
475
499
 
476
500
  #. module: account_financial_report
501
+ #. odoo-python
477
502
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
478
- #: code:addons/account_financial_report/report/open_items_xlsx.py:0
479
- #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
480
503
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
504
+ msgid "Cumul. Bal."
505
+ msgstr ""
506
+
507
+ #. module: account_financial_report
508
+ #. odoo-python
509
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
481
510
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
482
511
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
483
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
484
- #, python-format
485
512
  msgid "Cur."
486
513
  msgstr ""
487
514
 
488
515
  #. module: account_financial_report
516
+ #. odoo-python
489
517
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
490
518
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
491
- #, python-format
492
519
  msgid "Cur. Original"
493
520
  msgstr ""
494
521
 
495
522
  #. module: account_financial_report
523
+ #. odoo-python
496
524
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
497
525
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
498
- #, python-format
499
526
  msgid "Cur. Residual"
500
527
  msgstr ""
501
528
 
502
529
  #. module: account_financial_report
530
+ #. odoo-python
503
531
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
504
- #, python-format
505
532
  msgid "Currency"
506
533
  msgstr ""
507
534
 
508
535
  #. module: account_financial_report
536
+ #. odoo-python
509
537
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
510
538
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
511
- #, python-format
512
539
  msgid "Current"
513
540
  msgstr ""
514
541
 
515
542
  #. module: account_financial_report
543
+ #. odoo-python
516
544
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
517
545
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
518
546
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -522,7 +550,6 @@ msgstr ""
522
550
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
523
551
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
524
552
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
525
- #, python-format
526
553
  msgid "Date"
527
554
  msgstr ""
528
555
 
@@ -549,17 +576,17 @@ msgid "Date To"
549
576
  msgstr ""
550
577
 
551
578
  #. module: account_financial_report
579
+ #. odoo-python
552
580
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
553
581
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
554
582
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
555
583
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
556
- #, python-format
557
584
  msgid "Date at filter"
558
585
  msgstr ""
559
586
 
560
587
  #. module: account_financial_report
588
+ #. odoo-python
561
589
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
562
- #, python-format
563
590
  msgid "Date from"
564
591
  msgstr ""
565
592
 
@@ -572,22 +599,23 @@ msgid "Date range"
572
599
  msgstr ""
573
600
 
574
601
  #. module: account_financial_report
602
+ #. odoo-python
575
603
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
576
604
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
577
605
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
578
606
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
579
607
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
580
- #, python-format
581
608
  msgid "Date range filter"
582
609
  msgstr ""
583
610
 
584
611
  #. module: account_financial_report
612
+ #. odoo-python
585
613
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
586
- #, python-format
587
614
  msgid "Date to"
588
615
  msgstr ""
589
616
 
590
617
  #. module: account_financial_report
618
+ #. odoo-python
591
619
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
592
620
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
593
621
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
@@ -596,15 +624,14 @@ msgstr ""
596
624
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
597
625
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
598
626
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
599
- #, python-format
600
627
  msgid "Debit"
601
628
  msgstr ""
602
629
 
603
630
  #. module: account_financial_report
631
+ #. odoo-python
604
632
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
605
633
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
606
634
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
607
- #, python-format
608
635
  msgid "Description"
609
636
  msgstr ""
610
637
 
@@ -614,29 +641,12 @@ msgid "Detail Taxes"
614
641
  msgstr ""
615
642
 
616
643
  #. module: account_financial_report
617
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__display_name
618
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__display_name
619
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
620
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__display_name
644
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
645
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
621
646
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
622
647
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
623
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
624
648
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
625
649
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
626
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
627
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
628
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
629
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
630
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
631
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
632
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
633
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
634
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
635
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
636
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
637
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
638
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
639
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
640
650
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
641
651
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
642
652
  msgid "Display Name"
@@ -672,9 +682,9 @@ msgid ""
672
682
  msgstr ""
673
683
 
674
684
  #. module: account_financial_report
685
+ #. odoo-python
675
686
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
676
687
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
677
- #, python-format
678
688
  msgid "Due date"
679
689
  msgstr ""
680
690
 
@@ -704,12 +714,12 @@ msgid "Ending account in a range"
704
714
  msgstr ""
705
715
 
706
716
  #. module: account_financial_report
717
+ #. odoo-python
707
718
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
708
719
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
709
720
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
710
721
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
711
722
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
712
- #, python-format
713
723
  msgid "Ending balance"
714
724
  msgstr ""
715
725
 
@@ -721,12 +731,13 @@ msgid ""
721
731
  msgstr ""
722
732
 
723
733
  #. module: account_financial_report
734
+ #. odoo-python
724
735
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
725
- #, python-format
726
736
  msgid "Entries sorted by"
727
737
  msgstr ""
728
738
 
729
739
  #. module: account_financial_report
740
+ #. odoo-python
730
741
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
731
742
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
732
743
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -735,20 +746,18 @@ msgstr ""
735
746
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
736
747
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
737
748
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
738
- #, python-format
739
749
  msgid "Entry"
740
750
  msgstr ""
741
751
 
742
752
  #. module: account_financial_report
753
+ #. odoo-python
743
754
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
744
- #, python-format
745
755
  msgid "Entry number"
746
756
  msgstr ""
747
757
 
748
758
  #. module: account_financial_report
749
- #. openerp-web
759
+ #. odoo-javascript
750
760
  #: code:addons/account_financial_report/static/src/xml/report.xml:0
751
- #, python-format
752
761
  msgid "Export"
753
762
  msgstr ""
754
763
 
@@ -786,12 +795,6 @@ msgstr ""
786
795
  msgid "Filter analytic accounts"
787
796
  msgstr ""
788
797
 
789
- #. module: account_financial_report
790
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
791
- #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
792
- msgid "Filter analytic tags"
793
- msgstr ""
794
-
795
798
  #. module: account_financial_report
796
799
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
797
800
  msgid "Filter cost centers"
@@ -816,6 +819,11 @@ msgstr ""
816
819
  msgid "Foreign Currency"
817
820
  msgstr ""
818
821
 
822
+ #. module: account_financial_report
823
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
824
+ msgid "Format"
825
+ msgstr ""
826
+
819
827
  #. module: account_financial_report
820
828
  #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
821
829
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
@@ -831,11 +839,11 @@ msgid "From:"
831
839
  msgstr ""
832
840
 
833
841
  #. module: account_financial_report
842
+ #. odoo-python
834
843
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
835
844
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
836
845
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
837
- #, python-format
838
- msgid "From: %s To: %s"
846
+ msgid "From: %(date_from)s To: %(date_to)s"
839
847
  msgstr ""
840
848
 
841
849
  #. module: account_financial_report
@@ -855,13 +863,13 @@ msgid "Fy Start Date"
855
863
  msgstr ""
856
864
 
857
865
  #. module: account_financial_report
866
+ #. odoo-python
858
867
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
859
868
  #: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
860
869
  #: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
861
870
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
862
871
  #: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
863
872
  #: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
864
- #, python-format
865
873
  msgid "General Ledger"
866
874
  msgstr ""
867
875
 
@@ -903,13 +911,26 @@ msgid "Group entries by"
903
911
  msgstr ""
904
912
 
905
913
  #. module: account_financial_report
914
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
915
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
916
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
917
+ msgid "Grouped By"
918
+ msgstr ""
919
+
920
+ #. module: account_financial_report
921
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
922
+ msgid ""
923
+ "Here you can set the intervals that will appear on the Aged Partner Balance."
924
+ msgstr ""
925
+
926
+ #. module: account_financial_report
927
+ #. odoo-python
906
928
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
907
929
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
908
930
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
909
931
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
910
932
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
911
933
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
912
- #, python-format
913
934
  msgid "Hide"
914
935
  msgstr ""
915
936
 
@@ -930,34 +951,12 @@ msgid "Hierarchy Levels to display"
930
951
  msgstr ""
931
952
 
932
953
  #. module: account_financial_report
933
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__hierarchy_on
934
- msgid "Hierarchy On"
935
- msgstr ""
936
-
937
- #. module: account_financial_report
938
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
939
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
940
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
941
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__id
954
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
955
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
942
956
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
943
957
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
944
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
945
958
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
946
959
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
947
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
948
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
949
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
950
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
951
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
952
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
953
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
954
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
955
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
956
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
957
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
958
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
959
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
960
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
961
960
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
962
961
  #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
963
962
  msgid "ID"
@@ -970,6 +969,17 @@ msgid ""
970
969
  "webkit one only), only centralized amounts per period."
971
970
  msgstr ""
972
971
 
972
+ #. module: account_financial_report
973
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
974
+ msgid "Inferior Limit"
975
+ msgstr ""
976
+
977
+ #. module: account_financial_report
978
+ #. odoo-python
979
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
980
+ msgid "Inferior Limit must be greather than zero"
981
+ msgstr ""
982
+
973
983
  #. module: account_financial_report
974
984
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
975
985
  msgid ""
@@ -985,14 +995,21 @@ msgid ""
985
995
  msgstr ""
986
996
 
987
997
  #. module: account_financial_report
998
+ #. odoo-python
988
999
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
989
1000
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
990
1001
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
991
- #, python-format
992
1002
  msgid "Initial balance"
993
1003
  msgstr ""
994
1004
 
995
1005
  #. module: account_financial_report
1006
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
1007
+ #: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
1008
+ msgid "Intervals configuration"
1009
+ msgstr ""
1010
+
1011
+ #. module: account_financial_report
1012
+ #. odoo-python
996
1013
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
997
1014
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
998
1015
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
@@ -1001,7 +1018,6 @@ msgstr ""
1001
1018
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1002
1019
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1003
1020
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1004
- #, python-format
1005
1021
  msgid "Journal"
1006
1022
  msgstr ""
1007
1023
 
@@ -1016,11 +1032,11 @@ msgid "Journal Items Domain"
1016
1032
  msgstr ""
1017
1033
 
1018
1034
  #. module: account_financial_report
1035
+ #. odoo-python
1019
1036
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1020
1037
  #: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
1021
1038
  #: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
1022
1039
  #: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
1023
- #, python-format
1024
1040
  msgid "Journal Ledger"
1025
1041
  msgstr ""
1026
1042
 
@@ -1050,43 +1066,27 @@ msgid "Journal Ledger XLSX Report"
1050
1066
  msgstr ""
1051
1067
 
1052
1068
  #. module: account_financial_report
1069
+ #. odoo-python
1053
1070
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1054
1071
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
1055
1072
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1056
- #, python-format
1057
1073
  msgid "Journals"
1058
1074
  msgstr ""
1059
1075
 
1060
1076
  #. module: account_financial_report
1061
- #: model:ir.model.fields,field_description:account_financial_report.field_account_account____last_update
1062
- #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard____last_update
1063
- #: model:ir.model.fields,field_description:account_financial_report.field_account_group____last_update
1064
- #: model:ir.model.fields,field_description:account_financial_report.field_account_move_line____last_update
1065
- #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard____last_update
1066
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard____last_update
1067
- #: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report____last_update
1068
- #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard____last_update
1069
- #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard____last_update
1070
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
1071
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
1072
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
1073
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
1074
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
1075
- #: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
1076
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
1077
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
1078
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
1079
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
1080
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
1081
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
1082
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
1083
- #: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
1084
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
1085
- #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
1086
- msgid "Last Modified on"
1077
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
1078
+ #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
1079
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
1080
+ #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
1081
+ #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
1082
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
1083
+ #: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
1084
+ msgid "Label Text Limit"
1087
1085
  msgstr ""
1088
1086
 
1089
1087
  #. module: account_financial_report
1088
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
1089
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
1090
1090
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
1091
1091
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
1092
1092
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
@@ -1097,6 +1097,8 @@ msgid "Last Updated by"
1097
1097
  msgstr ""
1098
1098
 
1099
1099
  #. module: account_financial_report
1100
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
1101
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
1100
1102
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
1101
1103
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
1102
1104
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
@@ -1113,19 +1115,49 @@ msgid "Level"
1113
1115
  msgstr ""
1114
1116
 
1115
1117
  #. module: account_financial_report
1118
+ #. odoo-python
1116
1119
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1117
- #, python-format
1118
1120
  msgid "Level %s"
1119
1121
  msgstr ""
1120
1122
 
1121
1123
  #. module: account_financial_report
1124
+ #. odoo-python
1122
1125
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1123
1126
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
1124
1127
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1125
- #, python-format
1126
1128
  msgid "Limit hierarchy levels"
1127
1129
  msgstr ""
1128
1130
 
1131
+ #. module: account_financial_report
1132
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
1133
+ msgid "Line"
1134
+ msgstr ""
1135
+
1136
+ #. module: account_financial_report
1137
+ #. odoo-python
1138
+ #: code:addons/account_financial_report/report/general_ledger.py:0
1139
+ #: code:addons/account_financial_report/report/open_items.py:0
1140
+ #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1141
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1142
+ msgid "Missing Partner"
1143
+ msgstr ""
1144
+
1145
+ #. module: account_financial_report
1146
+ #. odoo-python
1147
+ #: code:addons/account_financial_report/report/open_items.py:0
1148
+ msgid "Missing Salesperson"
1149
+ msgstr ""
1150
+
1151
+ #. module: account_financial_report
1152
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
1153
+ msgid "Model to set interval lines for Age partner balance report"
1154
+ msgstr ""
1155
+
1156
+ #. module: account_financial_report
1157
+ #: model:ir.model,name:account_financial_report.model_account_age_report_configuration
1158
+ msgid "Model to set intervals for Age partner balance report"
1159
+ msgstr ""
1160
+
1129
1161
  #. module: account_financial_report
1130
1162
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
1131
1163
  msgid "Move Target"
@@ -1137,52 +1169,65 @@ msgid "Moves"
1137
1169
  msgstr ""
1138
1170
 
1139
1171
  #. module: account_financial_report
1172
+ #. odoo-python
1173
+ #: code:addons/account_financial_report/models/account_age_report_configuration.py:0
1174
+ msgid "Must complete Configuration Lines"
1175
+ msgstr ""
1176
+
1177
+ #. module: account_financial_report
1178
+ #. odoo-python
1140
1179
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1141
1180
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1181
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
1182
+ #: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
1142
1183
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
1143
1184
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
1144
1185
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1145
- #, python-format
1146
1186
  msgid "Name"
1147
1187
  msgstr ""
1148
1188
 
1149
1189
  #. module: account_financial_report
1190
+ #: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
1191
+ msgid "Name must be unique per report configuration"
1192
+ msgstr ""
1193
+
1194
+ #. module: account_financial_report
1195
+ #. odoo-python
1150
1196
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1151
1197
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1152
- #, python-format
1153
1198
  msgid "Net"
1154
1199
  msgstr ""
1155
1200
 
1156
1201
  #. module: account_financial_report
1202
+ #. odoo-python
1157
1203
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1158
1204
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1159
1205
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1160
1206
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1161
- #, python-format
1162
1207
  msgid "No"
1163
1208
  msgstr ""
1164
1209
 
1165
1210
  #. module: account_financial_report
1211
+ #. odoo-python
1166
1212
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1167
- #, python-format
1168
1213
  msgid "No group"
1169
1214
  msgstr ""
1170
1215
 
1171
1216
  #. module: account_financial_report
1172
- #: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__none
1173
- msgid "No hierarchy"
1174
- msgstr ""
1175
-
1176
- #. module: account_financial_report
1217
+ #. odoo-python
1177
1218
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1178
1219
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1179
- #, python-format
1180
1220
  msgid "No limit"
1181
1221
  msgstr ""
1182
1222
 
1183
1223
  #. module: account_financial_report
1224
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
1225
+ msgid "None"
1226
+ msgstr ""
1227
+
1228
+ #. module: account_financial_report
1229
+ #. odoo-python
1184
1230
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1185
- #, python-format
1186
1231
  msgid "Not Posted"
1187
1232
  msgstr ""
1188
1233
 
@@ -1192,9 +1237,8 @@ msgid "Not due"
1192
1237
  msgstr ""
1193
1238
 
1194
1239
  #. module: account_financial_report
1195
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__not_only_one_unaffected_earnings_account
1196
- #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__not_only_one_unaffected_earnings_account
1197
- msgid "Not only one unaffected earnings account"
1240
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
1241
+ msgid "OCA Aged Report Configuration"
1198
1242
  msgstr ""
1199
1243
 
1200
1244
  #. module: account_financial_report
@@ -1203,19 +1247,25 @@ msgid "OCA accounting reports"
1203
1247
  msgstr ""
1204
1248
 
1205
1249
  #. module: account_financial_report
1250
+ #. odoo-python
1206
1251
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1207
1252
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1208
- #, python-format
1209
1253
  msgid "Older"
1210
1254
  msgstr ""
1211
1255
 
1212
1256
  #. module: account_financial_report
1257
+ #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
1258
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
1259
+ msgid "Only One Unaffected Earnings Account"
1260
+ msgstr ""
1261
+
1262
+ #. module: account_financial_report
1263
+ #. odoo-python
1213
1264
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1214
1265
  #: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
1215
1266
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
1216
1267
  #: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
1217
1268
  #: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
1218
- #, python-format
1219
1269
  msgid "Open Items"
1220
1270
  msgstr ""
1221
1271
 
@@ -1255,13 +1305,14 @@ msgid "Options"
1255
1305
  msgstr ""
1256
1306
 
1257
1307
  #. module: account_financial_report
1308
+ #. odoo-python
1258
1309
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1259
1310
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1260
- #, python-format
1261
1311
  msgid "Original"
1262
1312
  msgstr ""
1263
1313
 
1264
1314
  #. module: account_financial_report
1315
+ #. odoo-python
1265
1316
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1266
1317
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1267
1318
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1273,7 +1324,6 @@ msgstr ""
1273
1324
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1274
1325
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1275
1326
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1276
- #, python-format
1277
1327
  msgid "Partner"
1278
1328
  msgstr ""
1279
1329
 
@@ -1285,26 +1335,42 @@ msgid ""
1285
1335
  msgstr ""
1286
1336
 
1287
1337
  #. module: account_financial_report
1338
+ #. odoo-python
1288
1339
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1289
- #, python-format
1290
1340
  msgid "Partner Initial balance"
1291
1341
  msgstr ""
1292
1342
 
1293
1343
  #. module: account_financial_report
1344
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
1345
+ msgid "Partner Salesperson"
1346
+ msgstr ""
1347
+
1348
+ #. module: account_financial_report
1349
+ #. odoo-python
1294
1350
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1295
- #, python-format
1296
1351
  msgid "Partner cumul aged balance"
1297
1352
  msgstr ""
1298
1353
 
1299
1354
  #. module: account_financial_report
1355
+ #. odoo-python
1300
1356
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1301
1357
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1302
1358
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1303
1359
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
1304
- #, python-format
1305
1360
  msgid "Partner ending balance"
1306
1361
  msgstr ""
1307
1362
 
1363
+ #. module: account_financial_report
1364
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1365
+ msgid "Partner initial balance"
1366
+ msgstr ""
1367
+
1368
+ #. module: account_financial_report
1369
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
1370
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
1371
+ msgid "Partners"
1372
+ msgstr ""
1373
+
1308
1374
  #. module: account_financial_report
1309
1375
  #: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
1310
1376
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
@@ -1319,9 +1385,9 @@ msgid "Percents"
1319
1385
  msgstr ""
1320
1386
 
1321
1387
  #. module: account_financial_report
1388
+ #. odoo-python
1322
1389
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1323
1390
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
1324
- #, python-format
1325
1391
  msgid "Period balance"
1326
1392
  msgstr ""
1327
1393
 
@@ -1331,22 +1397,15 @@ msgid "Periods"
1331
1397
  msgstr ""
1332
1398
 
1333
1399
  #. module: account_financial_report
1400
+ #. odoo-python
1334
1401
  #: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
1335
- #, python-format
1336
1402
  msgid "Posted"
1337
1403
  msgstr ""
1338
1404
 
1339
1405
  #. module: account_financial_report
1340
- #. openerp-web
1341
- #: code:addons/account_financial_report/static/src/xml/report.xml:0
1342
- #, python-format
1343
- msgid "Print"
1344
- msgstr ""
1345
-
1346
- #. module: account_financial_report
1406
+ #. odoo-python
1347
1407
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1348
1408
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1349
- #, python-format
1350
1409
  msgid "Rec."
1351
1410
  msgstr ""
1352
1411
 
@@ -1374,12 +1433,12 @@ msgid ""
1374
1433
  msgstr ""
1375
1434
 
1376
1435
  #. module: account_financial_report
1436
+ #. odoo-python
1377
1437
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1378
1438
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1379
1439
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1380
1440
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1381
1441
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1382
- #, python-format
1383
1442
  msgid "Ref - Label"
1384
1443
  msgstr ""
1385
1444
 
@@ -1389,30 +1448,30 @@ msgid "Report Action"
1389
1448
  msgstr ""
1390
1449
 
1391
1450
  #. module: account_financial_report
1451
+ #. odoo-python
1392
1452
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1393
1453
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1394
1454
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
1395
1455
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
1396
1456
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
1397
- #, python-format
1398
1457
  msgid "Residual"
1399
1458
  msgstr ""
1400
1459
 
1401
1460
  #. module: account_financial_report
1461
+ #. odoo-python
1402
1462
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1403
1463
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1404
- #, python-format
1405
1464
  msgid "Sequence"
1406
1465
  msgstr ""
1407
1466
 
1408
1467
  #. module: account_financial_report
1468
+ #. odoo-python
1409
1469
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1410
1470
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1411
1471
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1412
1472
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1413
1473
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1414
1474
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1415
- #, python-format
1416
1475
  msgid "Show"
1417
1476
  msgstr ""
1418
1477
 
@@ -1432,31 +1491,27 @@ msgid "Show Move Line Details"
1432
1491
  msgstr ""
1433
1492
 
1434
1493
  #. module: account_financial_report
1435
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
1436
1494
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
1437
1495
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
1438
1496
  msgid "Show Partner Details"
1439
1497
  msgstr ""
1440
1498
 
1441
1499
  #. module: account_financial_report
1442
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1443
- #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
1444
- #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1445
- #, python-format
1446
- msgid "Show analytic tags"
1447
- msgstr ""
1448
-
1449
- #. module: account_financial_report
1500
+ #. odoo-python
1450
1501
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1451
1502
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1452
1503
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1453
1504
  #: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
1454
1505
  #: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
1455
1506
  #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
1456
- #, python-format
1457
1507
  msgid "Show foreign currency"
1458
1508
  msgstr ""
1459
1509
 
1510
+ #. module: account_financial_report
1511
+ #: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1512
+ msgid "Show hierarchy"
1513
+ msgstr ""
1514
+
1460
1515
  #. module: account_financial_report
1461
1516
  #: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
1462
1517
  msgid "Sort entries by"
@@ -1475,15 +1530,19 @@ msgstr ""
1475
1530
  #. module: account_financial_report
1476
1531
  #: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
1477
1532
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
1478
- #: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
1479
1533
  #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
1480
1534
  msgid "Starting account in a range"
1481
1535
  msgstr ""
1482
1536
 
1483
1537
  #. module: account_financial_report
1484
- #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1538
+ #. odoo-python
1539
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1540
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1541
+ msgid "TOTAL"
1542
+ msgstr ""
1543
+
1544
+ #. module: account_financial_report
1485
1545
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1486
- #, python-format
1487
1546
  msgid "Tags"
1488
1547
  msgstr ""
1489
1548
 
@@ -1497,6 +1556,7 @@ msgid "Target Moves"
1497
1556
  msgstr ""
1498
1557
 
1499
1558
  #. module: account_financial_report
1559
+ #. odoo-python
1500
1560
  #: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
1501
1561
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1502
1562
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
@@ -1506,14 +1566,13 @@ msgstr ""
1506
1566
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1507
1567
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
1508
1568
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
1509
- #, python-format
1510
1569
  msgid "Target moves filter"
1511
1570
  msgstr ""
1512
1571
 
1513
1572
  #. module: account_financial_report
1573
+ #. odoo-python
1514
1574
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1515
1575
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
1516
- #, python-format
1517
1576
  msgid "Tax"
1518
1577
  msgstr ""
1519
1578
 
@@ -1524,75 +1583,102 @@ msgid "Tax Amount"
1524
1583
  msgstr ""
1525
1584
 
1526
1585
  #. module: account_financial_report
1586
+ #. odoo-python
1527
1587
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1528
- #, python-format
1529
1588
  msgid "Tax Balance"
1530
1589
  msgstr ""
1531
1590
 
1532
1591
  #. module: account_financial_report
1592
+ #. odoo-python
1533
1593
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1534
- #, python-format
1535
1594
  msgid "Tax Credit"
1536
1595
  msgstr ""
1537
1596
 
1538
1597
  #. module: account_financial_report
1598
+ #. odoo-python
1539
1599
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1540
- #, python-format
1541
1600
  msgid "Tax Debit"
1542
1601
  msgstr ""
1543
1602
 
1544
1603
  #. module: account_financial_report
1604
+ #. odoo-python
1545
1605
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1546
1606
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
1547
- #, python-format
1548
1607
  msgid "Tax Groups"
1549
1608
  msgstr ""
1550
1609
 
1551
1610
  #. module: account_financial_report
1611
+ #. odoo-python
1612
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1613
+ msgid "Tax Initial balance"
1614
+ msgstr ""
1615
+
1616
+ #. module: account_financial_report
1617
+ #. odoo-python
1552
1618
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1553
1619
  #: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
1554
- #, python-format
1555
1620
  msgid "Tax Tags"
1556
1621
  msgstr ""
1557
1622
 
1558
1623
  #. module: account_financial_report
1624
+ #. odoo-python
1625
+ #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1626
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
1627
+ msgid "Tax ending balance"
1628
+ msgstr ""
1629
+
1630
+ #. module: account_financial_report
1631
+ #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1632
+ msgid "Tax initial balance"
1633
+ msgstr ""
1634
+
1635
+ #. module: account_financial_report
1636
+ #. odoo-python
1559
1637
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1560
1638
  #: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
1639
+ #: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
1561
1640
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
1562
1641
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
1563
- #, python-format
1564
1642
  msgid "Taxes"
1565
1643
  msgstr ""
1566
1644
 
1567
1645
  #. module: account_financial_report
1646
+ #. odoo-python
1568
1647
  #: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
1569
- #, python-format
1570
1648
  msgid ""
1571
1649
  "The Company in the General Ledger Report Wizard and in Date Range must be "
1572
1650
  "the same."
1573
1651
  msgstr ""
1574
1652
 
1575
1653
  #. module: account_financial_report
1654
+ #. odoo-python
1576
1655
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1577
- #, python-format
1578
1656
  msgid ""
1579
1657
  "The Company in the Trial Balance Report Wizard and in Date Range must be the "
1580
1658
  "same."
1581
1659
  msgstr ""
1582
1660
 
1583
1661
  #. module: account_financial_report
1662
+ #. odoo-python
1584
1663
  #: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
1585
- #, python-format
1586
1664
  msgid ""
1587
1665
  "The Company in the Vat Report Wizard and in Date Range must be the same."
1588
1666
  msgstr ""
1589
1667
 
1590
1668
  #. module: account_financial_report
1669
+ #. odoo-python
1591
1670
  #: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
1592
- #, python-format
1593
1671
  msgid "The hierarchy level to filter on must be greater than 0."
1594
1672
  msgstr ""
1595
1673
 
1674
+ #. module: account_financial_report
1675
+ #. odoo-python
1676
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1677
+ msgid ""
1678
+ "There is a problem in the structure of the account groups. You may need to "
1679
+ "create some child group of %s."
1680
+ msgstr ""
1681
+
1596
1682
  #. module: account_financial_report
1597
1683
  #: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
1598
1684
  msgid "This domain will be used to select specific domain for Journal Items"
@@ -1609,17 +1695,19 @@ msgid "To:"
1609
1695
  msgstr ""
1610
1696
 
1611
1697
  #. module: account_financial_report
1698
+ #. odoo-python
1699
+ #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1612
1700
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
1613
1701
  msgid "Total"
1614
1702
  msgstr ""
1615
1703
 
1616
1704
  #. module: account_financial_report
1705
+ #. odoo-python
1617
1706
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1618
1707
  #: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
1619
1708
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
1620
1709
  #: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
1621
1710
  #: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
1622
- #, python-format
1623
1711
  msgid "Trial Balance"
1624
1712
  msgstr ""
1625
1713
 
@@ -1670,6 +1758,11 @@ msgid ""
1670
1758
  "balance."
1671
1759
  msgstr ""
1672
1760
 
1761
+ #. module: account_financial_report
1762
+ #: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
1763
+ msgid "Use when your account groups are hierarchical"
1764
+ msgstr ""
1765
+
1673
1766
  #. module: account_financial_report
1674
1767
  #: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
1675
1768
  #: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
@@ -1699,16 +1792,17 @@ msgid "VAT Report XLSX"
1699
1792
  msgstr ""
1700
1793
 
1701
1794
  #. module: account_financial_report
1795
+ #. odoo-python
1702
1796
  #: code:addons/account_financial_report/report/vat_report_xlsx.py:0
1703
- #, fuzzy, python-format
1797
+ #, fuzzy
1704
1798
  msgid "Vat Report"
1705
- msgstr "アブストラクトレポート"
1799
+ msgstr "?????????????????????????????????"
1706
1800
 
1707
1801
  #. module: account_financial_report
1708
1802
  #: model:ir.model,name:account_financial_report.model_report_account_financial_report_vat_report
1709
1803
  #, fuzzy
1710
1804
  msgid "Vat Report Report"
1711
- msgstr "アブストラクトレポート"
1805
+ msgstr "?????????????????????????????????"
1712
1806
 
1713
1807
  #. module: account_financial_report
1714
1808
  #: model:ir.model,name:account_financial_report.model_report_a_f_r_report_vat_report_xlsx
@@ -1738,22 +1832,27 @@ msgid "With Account Name"
1738
1832
  msgstr ""
1739
1833
 
1740
1834
  #. module: account_financial_report
1835
+ #. odoo-python
1836
+ #: code:addons/account_financial_report/report/trial_balance.py:0
1837
+ msgid "Without analytic account"
1838
+ msgstr ""
1839
+
1840
+ #. module: account_financial_report
1841
+ #. odoo-python
1741
1842
  #: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
1742
1843
  #: code:addons/account_financial_report/report/open_items_xlsx.py:0
1743
1844
  #: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
1744
1845
  #: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
1745
- #, python-format
1746
1846
  msgid "Yes"
1747
1847
  msgstr ""
1748
1848
 
1749
1849
  #. module: account_financial_report
1850
+ #. odoo-python
1750
1851
  #: code:addons/account_financial_report/report/general_ledger.py:0
1751
- #, python-format
1752
1852
  msgid "future"
1753
1853
  msgstr ""
1754
1854
 
1755
1855
  #. module: account_financial_report
1756
- #: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
1757
1856
  #: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
1758
1857
  #: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
1759
1858
  #: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
@@ -1803,13 +1902,13 @@ msgid "width: 8.11%;"
1803
1902
  msgstr ""
1804
1903
 
1805
1904
  #~ msgid "<span class=\"fa fa-download\"/> Export"
1806
- #~ msgstr "<span class=\"fa fa-download\"/> エクスポート"
1905
+ #~ msgstr "<span class=\"fa fa-download\"/> ??????????????????"
1807
1906
 
1808
1907
  #~ msgid "<span class=\"fa fa-print\"/> Print"
1809
- #~ msgstr "<span class=\"fa fa-print\"/> 印刷"
1908
+ #~ msgstr "<span class=\"fa fa-print\"/> ??????"
1810
1909
 
1811
1910
  #~ msgid "Account ID"
1812
- #~ msgstr "勘定科目ID"
1911
+ #~ msgstr "????????????ID"
1813
1912
 
1814
1913
  #~ msgid "Account Type"
1815
- #~ msgstr "勘定科目タイプ"
1914
+ #~ msgstr "?????????????????????"