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