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
|
@@ -7,7 +7,7 @@ msgstr ""
|
|
|
7
7
|
"Project-Id-Version: Odoo Server 14.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
9
|
"PO-Revision-Date: 2021-03-17 04:45+0000\n"
|
|
10
|
-
"Last-Translator:
|
|
10
|
+
"Last-Translator: Jes??s Alan Ramos Rodr??guez <alan.ramos@jarsa.com.mx>\n"
|
|
11
11
|
"Language-Team: none\n"
|
|
12
12
|
"Language: es_MX\n"
|
|
13
13
|
"MIME-Version: 1.0\n"
|
|
@@ -58,6 +58,19 @@ msgstr "91 - 120 d."
|
|
|
58
58
|
msgid "<b>Taxes summary</b>"
|
|
59
59
|
msgstr ""
|
|
60
60
|
|
|
61
|
+
#. module: account_financial_report
|
|
62
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
63
|
+
msgid ""
|
|
64
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
65
|
+
" Duplicate amounts may be shown because more than one "
|
|
66
|
+
"analytical account may be defined in the journal items."
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
#. module: account_financial_report
|
|
70
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
71
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
72
|
+
msgstr ""
|
|
73
|
+
|
|
61
74
|
#. module: account_financial_report
|
|
62
75
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
63
76
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -82,6 +95,7 @@ msgid "Abstract XLSX Account Financial Report"
|
|
|
82
95
|
msgstr ""
|
|
83
96
|
|
|
84
97
|
#. module: account_financial_report
|
|
98
|
+
#. odoo-python
|
|
85
99
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
86
100
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
87
101
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -93,10 +107,14 @@ msgstr ""
|
|
|
93
107
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
94
108
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
95
109
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
96
|
-
#, python-format
|
|
97
110
|
msgid "Account"
|
|
98
111
|
msgstr ""
|
|
99
112
|
|
|
113
|
+
#. module: account_financial_report
|
|
114
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
115
|
+
msgid "Account Age Report Config"
|
|
116
|
+
msgstr ""
|
|
117
|
+
|
|
100
118
|
#. module: account_financial_report
|
|
101
119
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
102
120
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -119,24 +137,24 @@ msgid "Account Group"
|
|
|
119
137
|
msgstr ""
|
|
120
138
|
|
|
121
139
|
#. module: account_financial_report
|
|
140
|
+
#. odoo-python
|
|
122
141
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
123
|
-
#, python-format
|
|
124
142
|
msgid "Account Name"
|
|
125
143
|
msgstr ""
|
|
126
144
|
|
|
127
145
|
#. module: account_financial_report
|
|
146
|
+
#. odoo-python
|
|
128
147
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
129
148
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
130
|
-
#, python-format
|
|
131
149
|
msgid "Account at 0 filter"
|
|
132
150
|
msgstr ""
|
|
133
151
|
|
|
134
152
|
#. module: account_financial_report
|
|
153
|
+
#. odoo-python
|
|
135
154
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
136
155
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
137
156
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
138
157
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
139
|
-
#, python-format
|
|
140
158
|
msgid "Account balance at 0 filter"
|
|
141
159
|
msgstr ""
|
|
142
160
|
|
|
@@ -155,16 +173,21 @@ msgstr ""
|
|
|
155
173
|
msgid "Additional Filtering"
|
|
156
174
|
msgstr ""
|
|
157
175
|
|
|
176
|
+
#. module: account_financial_report
|
|
177
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
178
|
+
msgid "Age Partner Report Configuration"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
158
181
|
#. module: account_financial_report
|
|
159
182
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
160
183
|
msgid ""
|
|
161
184
|
"Age ≤ 120\n"
|
|
162
|
-
"
|
|
185
|
+
" d."
|
|
163
186
|
msgstr ""
|
|
164
187
|
|
|
165
188
|
#. module: account_financial_report
|
|
189
|
+
#. odoo-python
|
|
166
190
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
167
|
-
#, python-format
|
|
168
191
|
msgid "Age ≤ 120 d."
|
|
169
192
|
msgstr ""
|
|
170
193
|
|
|
@@ -172,12 +195,12 @@ msgstr ""
|
|
|
172
195
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
173
196
|
msgid ""
|
|
174
197
|
"Age ≤ 30\n"
|
|
175
|
-
"
|
|
198
|
+
" d."
|
|
176
199
|
msgstr ""
|
|
177
200
|
|
|
178
201
|
#. module: account_financial_report
|
|
202
|
+
#. odoo-python
|
|
179
203
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
180
|
-
#, python-format
|
|
181
204
|
msgid "Age ≤ 30 d."
|
|
182
205
|
msgstr ""
|
|
183
206
|
|
|
@@ -185,12 +208,12 @@ msgstr ""
|
|
|
185
208
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
186
209
|
msgid ""
|
|
187
210
|
"Age ≤ 60\n"
|
|
188
|
-
"
|
|
211
|
+
" d."
|
|
189
212
|
msgstr ""
|
|
190
213
|
|
|
191
214
|
#. module: account_financial_report
|
|
215
|
+
#. odoo-python
|
|
192
216
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
193
|
-
#, python-format
|
|
194
217
|
msgid "Age ≤ 60 d."
|
|
195
218
|
msgstr ""
|
|
196
219
|
|
|
@@ -198,22 +221,22 @@ msgstr ""
|
|
|
198
221
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
199
222
|
msgid ""
|
|
200
223
|
"Age ≤ 90\n"
|
|
201
|
-
"
|
|
224
|
+
" d."
|
|
202
225
|
msgstr ""
|
|
203
226
|
|
|
204
227
|
#. module: account_financial_report
|
|
228
|
+
#. odoo-python
|
|
205
229
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
206
|
-
#, python-format
|
|
207
230
|
msgid "Age ≤ 90 d."
|
|
208
231
|
msgstr ""
|
|
209
232
|
|
|
210
233
|
#. module: account_financial_report
|
|
234
|
+
#. odoo-python
|
|
211
235
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
212
236
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
213
237
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
214
238
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
215
239
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
216
|
-
#, python-format
|
|
217
240
|
msgid "Aged Partner Balance"
|
|
218
241
|
msgstr ""
|
|
219
242
|
|
|
@@ -243,8 +266,8 @@ msgid "Aged Partner Balance XLSX"
|
|
|
243
266
|
msgstr ""
|
|
244
267
|
|
|
245
268
|
#. module: account_financial_report
|
|
269
|
+
#. odoo-python
|
|
246
270
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
247
|
-
#, python-format
|
|
248
271
|
msgid "All"
|
|
249
272
|
msgstr ""
|
|
250
273
|
|
|
@@ -267,6 +290,7 @@ msgid "All Posted Entries"
|
|
|
267
290
|
msgstr ""
|
|
268
291
|
|
|
269
292
|
#. module: account_financial_report
|
|
293
|
+
#. odoo-python
|
|
270
294
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
271
295
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
272
296
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -275,11 +299,11 @@ msgstr ""
|
|
|
275
299
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
276
300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
277
301
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
278
|
-
#, python-format
|
|
279
302
|
msgid "All entries"
|
|
280
303
|
msgstr ""
|
|
281
304
|
|
|
282
305
|
#. module: account_financial_report
|
|
306
|
+
#. odoo-python
|
|
283
307
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
284
308
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
285
309
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -288,7 +312,6 @@ msgstr ""
|
|
|
288
312
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
289
313
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
290
314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
291
|
-
#, python-format
|
|
292
315
|
msgid "All posted entries"
|
|
293
316
|
msgstr ""
|
|
294
317
|
|
|
@@ -298,23 +321,29 @@ msgid "Amount Cur."
|
|
|
298
321
|
msgstr ""
|
|
299
322
|
|
|
300
323
|
#. module: account_financial_report
|
|
324
|
+
#. odoo-python
|
|
301
325
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
302
|
-
#, python-format
|
|
303
326
|
msgid "Amount Currency"
|
|
304
327
|
msgstr ""
|
|
305
328
|
|
|
306
329
|
#. module: account_financial_report
|
|
330
|
+
#. odoo-python
|
|
307
331
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
308
332
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
309
|
-
#, python-format
|
|
310
333
|
msgid "Amount cur."
|
|
311
334
|
msgstr ""
|
|
312
335
|
|
|
313
336
|
#. module: account_financial_report
|
|
337
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
338
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
339
|
+
msgid "Analytic Account"
|
|
340
|
+
msgstr ""
|
|
341
|
+
|
|
342
|
+
#. module: account_financial_report
|
|
343
|
+
#. odoo-python
|
|
314
344
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
315
345
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
316
|
-
|
|
317
|
-
msgid "Analytic Account"
|
|
346
|
+
msgid "Analytic Distribution"
|
|
318
347
|
msgstr ""
|
|
319
348
|
|
|
320
349
|
#. module: account_financial_report
|
|
@@ -330,20 +359,20 @@ msgid "Base Amount"
|
|
|
330
359
|
msgstr ""
|
|
331
360
|
|
|
332
361
|
#. module: account_financial_report
|
|
362
|
+
#. odoo-python
|
|
333
363
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
334
|
-
#, python-format
|
|
335
364
|
msgid "Base Balance"
|
|
336
365
|
msgstr ""
|
|
337
366
|
|
|
338
367
|
#. module: account_financial_report
|
|
368
|
+
#. odoo-python
|
|
339
369
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
340
|
-
#, python-format
|
|
341
370
|
msgid "Base Credit"
|
|
342
371
|
msgstr ""
|
|
343
372
|
|
|
344
373
|
#. module: account_financial_report
|
|
374
|
+
#. odoo-python
|
|
345
375
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
346
|
-
#, python-format
|
|
347
376
|
msgid "Base Debit"
|
|
348
377
|
msgstr ""
|
|
349
378
|
|
|
@@ -354,8 +383,8 @@ msgid "Based On"
|
|
|
354
383
|
msgstr ""
|
|
355
384
|
|
|
356
385
|
#. module: account_financial_report
|
|
386
|
+
#. odoo-python
|
|
357
387
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
358
|
-
#, python-format
|
|
359
388
|
msgid "Based on"
|
|
360
389
|
msgstr ""
|
|
361
390
|
|
|
@@ -370,9 +399,9 @@ msgid "Cancel"
|
|
|
370
399
|
msgstr ""
|
|
371
400
|
|
|
372
401
|
#. module: account_financial_report
|
|
402
|
+
#. odoo-python
|
|
373
403
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
374
404
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
375
|
-
#, python-format
|
|
376
405
|
msgid "Centralize filter"
|
|
377
406
|
msgstr ""
|
|
378
407
|
|
|
@@ -381,27 +410,24 @@ msgstr ""
|
|
|
381
410
|
msgid "Centralized"
|
|
382
411
|
msgstr ""
|
|
383
412
|
|
|
384
|
-
#. module: account_financial_report
|
|
385
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
386
|
-
msgid "Child Accounts"
|
|
387
|
-
msgstr ""
|
|
388
|
-
|
|
389
413
|
#. module: account_financial_report
|
|
390
414
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
391
415
|
msgid "Child Groups"
|
|
392
416
|
msgstr ""
|
|
393
417
|
|
|
394
418
|
#. module: account_financial_report
|
|
419
|
+
#. odoo-python
|
|
395
420
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
396
421
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
397
422
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
398
423
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
399
|
-
#, python-format
|
|
400
424
|
msgid "Code"
|
|
401
425
|
msgstr ""
|
|
402
426
|
|
|
403
427
|
#. module: account_financial_report
|
|
428
|
+
#. odoo-python
|
|
404
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
|
|
405
431
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
406
432
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
407
433
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -409,7 +435,6 @@ msgstr ""
|
|
|
409
435
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
410
436
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
411
437
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
412
|
-
#, python-format
|
|
413
438
|
msgid "Company"
|
|
414
439
|
msgstr ""
|
|
415
440
|
|
|
@@ -419,24 +444,18 @@ msgid "Compute accounts"
|
|
|
419
444
|
msgstr ""
|
|
420
445
|
|
|
421
446
|
#. module: account_financial_report
|
|
422
|
-
#: model:ir.model
|
|
423
|
-
msgid "
|
|
447
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
448
|
+
msgid "Config Settings"
|
|
424
449
|
msgstr ""
|
|
425
450
|
|
|
426
451
|
#. module: account_financial_report
|
|
427
|
-
#:
|
|
428
|
-
msgid ""
|
|
429
|
-
"Computed Accounts: Use when the account group have codes\n"
|
|
430
|
-
" that represent prefixes of the actual accounts.\n"
|
|
431
|
-
"\n"
|
|
432
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
433
|
-
"\n"
|
|
434
|
-
" No hierarchy: Use to display just the accounts, without any "
|
|
435
|
-
"grouping.\n"
|
|
436
|
-
" "
|
|
452
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
453
|
+
msgid "Configurations"
|
|
437
454
|
msgstr ""
|
|
438
455
|
|
|
439
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
|
|
440
459
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
441
460
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
442
461
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -447,6 +466,8 @@ msgid "Created by"
|
|
|
447
466
|
msgstr ""
|
|
448
467
|
|
|
449
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
|
|
450
471
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
451
472
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
452
473
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -457,6 +478,7 @@ msgid "Created on"
|
|
|
457
478
|
msgstr ""
|
|
458
479
|
|
|
459
480
|
#. module: account_financial_report
|
|
481
|
+
#. odoo-python
|
|
460
482
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
461
483
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
462
484
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -465,57 +487,60 @@ msgstr ""
|
|
|
465
487
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
466
488
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
467
489
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
468
|
-
#, python-format
|
|
469
490
|
msgid "Credit"
|
|
470
491
|
msgstr ""
|
|
471
492
|
|
|
472
493
|
#. module: account_financial_report
|
|
494
|
+
#. odoo-python
|
|
473
495
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
474
496
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
475
|
-
|
|
476
|
-
msgid "Cumul. Bal."
|
|
497
|
+
msgid "Cumul cur."
|
|
477
498
|
msgstr ""
|
|
478
499
|
|
|
479
500
|
#. module: account_financial_report
|
|
501
|
+
#. odoo-python
|
|
480
502
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
481
|
-
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
482
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
483
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
|
|
484
510
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
485
511
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
486
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
487
|
-
#, python-format
|
|
488
512
|
msgid "Cur."
|
|
489
513
|
msgstr ""
|
|
490
514
|
|
|
491
515
|
#. module: account_financial_report
|
|
516
|
+
#. odoo-python
|
|
492
517
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
493
518
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
494
|
-
#, python-format
|
|
495
519
|
msgid "Cur. Original"
|
|
496
520
|
msgstr ""
|
|
497
521
|
|
|
498
522
|
#. module: account_financial_report
|
|
523
|
+
#. odoo-python
|
|
499
524
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
500
525
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
501
|
-
#, python-format
|
|
502
526
|
msgid "Cur. Residual"
|
|
503
527
|
msgstr ""
|
|
504
528
|
|
|
505
529
|
#. module: account_financial_report
|
|
530
|
+
#. odoo-python
|
|
506
531
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
507
|
-
#, python-format
|
|
508
532
|
msgid "Currency"
|
|
509
533
|
msgstr ""
|
|
510
534
|
|
|
511
535
|
#. module: account_financial_report
|
|
536
|
+
#. odoo-python
|
|
512
537
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
513
538
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
514
|
-
#, python-format
|
|
515
539
|
msgid "Current"
|
|
516
540
|
msgstr ""
|
|
517
541
|
|
|
518
542
|
#. module: account_financial_report
|
|
543
|
+
#. odoo-python
|
|
519
544
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
520
545
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
521
546
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -525,7 +550,6 @@ msgstr ""
|
|
|
525
550
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
526
551
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
527
552
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
528
|
-
#, python-format
|
|
529
553
|
msgid "Date"
|
|
530
554
|
msgstr ""
|
|
531
555
|
|
|
@@ -552,17 +576,17 @@ msgid "Date To"
|
|
|
552
576
|
msgstr ""
|
|
553
577
|
|
|
554
578
|
#. module: account_financial_report
|
|
579
|
+
#. odoo-python
|
|
555
580
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
556
581
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
557
582
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
558
583
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
559
|
-
#, python-format
|
|
560
584
|
msgid "Date at filter"
|
|
561
585
|
msgstr ""
|
|
562
586
|
|
|
563
587
|
#. module: account_financial_report
|
|
588
|
+
#. odoo-python
|
|
564
589
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
565
|
-
#, python-format
|
|
566
590
|
msgid "Date from"
|
|
567
591
|
msgstr ""
|
|
568
592
|
|
|
@@ -575,22 +599,23 @@ msgid "Date range"
|
|
|
575
599
|
msgstr ""
|
|
576
600
|
|
|
577
601
|
#. module: account_financial_report
|
|
602
|
+
#. odoo-python
|
|
578
603
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
579
604
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
580
605
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
581
606
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
582
607
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
583
|
-
#, python-format
|
|
584
608
|
msgid "Date range filter"
|
|
585
609
|
msgstr ""
|
|
586
610
|
|
|
587
611
|
#. module: account_financial_report
|
|
612
|
+
#. odoo-python
|
|
588
613
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
589
|
-
#, python-format
|
|
590
614
|
msgid "Date to"
|
|
591
615
|
msgstr ""
|
|
592
616
|
|
|
593
617
|
#. module: account_financial_report
|
|
618
|
+
#. odoo-python
|
|
594
619
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
595
620
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
596
621
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
@@ -599,15 +624,14 @@ msgstr ""
|
|
|
599
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
600
625
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
601
626
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
602
|
-
#, python-format
|
|
603
627
|
msgid "Debit"
|
|
604
628
|
msgstr ""
|
|
605
629
|
|
|
606
630
|
#. module: account_financial_report
|
|
631
|
+
#. odoo-python
|
|
607
632
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
608
633
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
609
634
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
610
|
-
#, python-format
|
|
611
635
|
msgid "Description"
|
|
612
636
|
msgstr ""
|
|
613
637
|
|
|
@@ -617,29 +641,12 @@ msgid "Detail Taxes"
|
|
|
617
641
|
msgstr ""
|
|
618
642
|
|
|
619
643
|
#. module: account_financial_report
|
|
620
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
621
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
622
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__display_name
|
|
623
|
-
#: 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
|
|
624
646
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
625
647
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
626
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__display_name
|
|
627
648
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
628
649
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__display_name
|
|
629
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__display_name
|
|
630
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__display_name
|
|
631
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__display_name
|
|
632
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__display_name
|
|
633
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__display_name
|
|
634
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__display_name
|
|
635
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__display_name
|
|
636
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__display_name
|
|
637
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__display_name
|
|
638
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__display_name
|
|
639
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__display_name
|
|
640
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__display_name
|
|
641
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__display_name
|
|
642
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__display_name
|
|
643
650
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__display_name
|
|
644
651
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__display_name
|
|
645
652
|
msgid "Display Name"
|
|
@@ -675,9 +682,9 @@ msgid ""
|
|
|
675
682
|
msgstr ""
|
|
676
683
|
|
|
677
684
|
#. module: account_financial_report
|
|
685
|
+
#. odoo-python
|
|
678
686
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
679
687
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
680
|
-
#, python-format
|
|
681
688
|
msgid "Due date"
|
|
682
689
|
msgstr ""
|
|
683
690
|
|
|
@@ -707,12 +714,12 @@ msgid "Ending account in a range"
|
|
|
707
714
|
msgstr ""
|
|
708
715
|
|
|
709
716
|
#. module: account_financial_report
|
|
717
|
+
#. odoo-python
|
|
710
718
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
711
719
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
712
720
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
713
721
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
714
722
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
715
|
-
#, python-format
|
|
716
723
|
msgid "Ending balance"
|
|
717
724
|
msgstr ""
|
|
718
725
|
|
|
@@ -724,12 +731,13 @@ msgid ""
|
|
|
724
731
|
msgstr ""
|
|
725
732
|
|
|
726
733
|
#. module: account_financial_report
|
|
734
|
+
#. odoo-python
|
|
727
735
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
728
|
-
#, python-format
|
|
729
736
|
msgid "Entries sorted by"
|
|
730
737
|
msgstr ""
|
|
731
738
|
|
|
732
739
|
#. module: account_financial_report
|
|
740
|
+
#. odoo-python
|
|
733
741
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
734
742
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
735
743
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -738,20 +746,18 @@ msgstr ""
|
|
|
738
746
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
739
747
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
740
748
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
741
|
-
#, python-format
|
|
742
749
|
msgid "Entry"
|
|
743
750
|
msgstr ""
|
|
744
751
|
|
|
745
752
|
#. module: account_financial_report
|
|
753
|
+
#. odoo-python
|
|
746
754
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
747
|
-
#, python-format
|
|
748
755
|
msgid "Entry number"
|
|
749
756
|
msgstr ""
|
|
750
757
|
|
|
751
758
|
#. module: account_financial_report
|
|
752
|
-
#.
|
|
759
|
+
#. odoo-javascript
|
|
753
760
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
754
|
-
#, python-format
|
|
755
761
|
msgid "Export"
|
|
756
762
|
msgstr ""
|
|
757
763
|
|
|
@@ -789,12 +795,6 @@ msgstr ""
|
|
|
789
795
|
msgid "Filter analytic accounts"
|
|
790
796
|
msgstr ""
|
|
791
797
|
|
|
792
|
-
#. module: account_financial_report
|
|
793
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
794
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
795
|
-
msgid "Filter analytic tags"
|
|
796
|
-
msgstr ""
|
|
797
|
-
|
|
798
798
|
#. module: account_financial_report
|
|
799
799
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
800
800
|
msgid "Filter cost centers"
|
|
@@ -819,6 +819,11 @@ msgstr ""
|
|
|
819
819
|
msgid "Foreign Currency"
|
|
820
820
|
msgstr ""
|
|
821
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
|
+
|
|
822
827
|
#. module: account_financial_report
|
|
823
828
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
824
829
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -834,11 +839,11 @@ msgid "From:"
|
|
|
834
839
|
msgstr ""
|
|
835
840
|
|
|
836
841
|
#. module: account_financial_report
|
|
842
|
+
#. odoo-python
|
|
837
843
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
838
844
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
839
845
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
840
|
-
|
|
841
|
-
msgid "From: %s To: %s"
|
|
846
|
+
msgid "From: %(date_from)s To: %(date_to)s"
|
|
842
847
|
msgstr ""
|
|
843
848
|
|
|
844
849
|
#. module: account_financial_report
|
|
@@ -858,13 +863,13 @@ msgid "Fy Start Date"
|
|
|
858
863
|
msgstr ""
|
|
859
864
|
|
|
860
865
|
#. module: account_financial_report
|
|
866
|
+
#. odoo-python
|
|
861
867
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
862
868
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
863
869
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
864
870
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
865
871
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
866
872
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
867
|
-
#, python-format
|
|
868
873
|
msgid "General Ledger"
|
|
869
874
|
msgstr ""
|
|
870
875
|
|
|
@@ -906,13 +911,26 @@ msgid "Group entries by"
|
|
|
906
911
|
msgstr ""
|
|
907
912
|
|
|
908
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
|
|
909
928
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
910
929
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
911
930
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
912
931
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
913
932
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
914
933
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
915
|
-
#, python-format
|
|
916
934
|
msgid "Hide"
|
|
917
935
|
msgstr ""
|
|
918
936
|
|
|
@@ -933,34 +951,12 @@ msgid "Hierarchy Levels to display"
|
|
|
933
951
|
msgstr ""
|
|
934
952
|
|
|
935
953
|
#. module: account_financial_report
|
|
936
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
937
|
-
|
|
938
|
-
msgstr ""
|
|
939
|
-
|
|
940
|
-
#. module: account_financial_report
|
|
941
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_account__id
|
|
942
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__id
|
|
943
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__id
|
|
944
|
-
#: 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
|
|
945
956
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
946
957
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
947
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_ir_actions_report__id
|
|
948
958
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
949
959
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__id
|
|
950
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx__id
|
|
951
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx__id
|
|
952
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx__id
|
|
953
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx__id
|
|
954
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx__id
|
|
955
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx__id
|
|
956
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report__id
|
|
957
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx__id
|
|
958
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance__id
|
|
959
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger__id
|
|
960
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger__id
|
|
961
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items__id
|
|
962
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance__id
|
|
963
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report__id
|
|
964
960
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__id
|
|
965
961
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__id
|
|
966
962
|
msgid "ID"
|
|
@@ -973,6 +969,17 @@ msgid ""
|
|
|
973
969
|
"webkit one only), only centralized amounts per period."
|
|
974
970
|
msgstr ""
|
|
975
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
|
+
|
|
976
983
|
#. module: account_financial_report
|
|
977
984
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
978
985
|
msgid ""
|
|
@@ -988,14 +995,21 @@ msgid ""
|
|
|
988
995
|
msgstr ""
|
|
989
996
|
|
|
990
997
|
#. module: account_financial_report
|
|
998
|
+
#. odoo-python
|
|
991
999
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
992
1000
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
993
1001
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
994
|
-
#, python-format
|
|
995
1002
|
msgid "Initial balance"
|
|
996
1003
|
msgstr ""
|
|
997
1004
|
|
|
998
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
|
|
999
1013
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1000
1014
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1001
1015
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -1004,7 +1018,6 @@ msgstr ""
|
|
|
1004
1018
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1005
1019
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1006
1020
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1007
|
-
#, python-format
|
|
1008
1021
|
msgid "Journal"
|
|
1009
1022
|
msgstr ""
|
|
1010
1023
|
|
|
@@ -1019,11 +1032,11 @@ msgid "Journal Items Domain"
|
|
|
1019
1032
|
msgstr ""
|
|
1020
1033
|
|
|
1021
1034
|
#. module: account_financial_report
|
|
1035
|
+
#. odoo-python
|
|
1022
1036
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1023
1037
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
1024
1038
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
1025
1039
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
1026
|
-
#, python-format
|
|
1027
1040
|
msgid "Journal Ledger"
|
|
1028
1041
|
msgstr ""
|
|
1029
1042
|
|
|
@@ -1053,43 +1066,27 @@ msgid "Journal Ledger XLSX Report"
|
|
|
1053
1066
|
msgstr ""
|
|
1054
1067
|
|
|
1055
1068
|
#. module: account_financial_report
|
|
1069
|
+
#. odoo-python
|
|
1056
1070
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1057
1071
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1058
1072
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1059
|
-
#, python-format
|
|
1060
1073
|
msgid "Journals"
|
|
1061
1074
|
msgstr ""
|
|
1062
1075
|
|
|
1063
1076
|
#. module: account_financial_report
|
|
1064
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1065
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1066
|
-
#: model:ir.model.fields,field_description: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
|
-
|
|
1072
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard____last_update
|
|
1073
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_aged_partner_balance_xlsx____last_update
|
|
1074
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_general_ledger_xlsx____last_update
|
|
1075
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_journal_ledger_xlsx____last_update
|
|
1076
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_open_items_xlsx____last_update
|
|
1077
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_trial_balance_xlsx____last_update
|
|
1078
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_a_f_r_report_vat_report_xlsx____last_update
|
|
1079
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report____last_update
|
|
1080
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_abstract_report_xlsx____last_update
|
|
1081
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_aged_partner_balance____last_update
|
|
1082
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_general_ledger____last_update
|
|
1083
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_journal_ledger____last_update
|
|
1084
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_open_items____last_update
|
|
1085
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_trial_balance____last_update
|
|
1086
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_report_account_financial_report_vat_report____last_update
|
|
1087
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard____last_update
|
|
1088
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard____last_update
|
|
1089
|
-
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"
|
|
1090
1085
|
msgstr ""
|
|
1091
1086
|
|
|
1092
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
|
|
1093
1090
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1094
1091
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1095
1092
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1100,6 +1097,8 @@ msgid "Last Updated by"
|
|
|
1100
1097
|
msgstr ""
|
|
1101
1098
|
|
|
1102
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
|
|
1103
1102
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1104
1103
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1105
1104
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1116,19 +1115,49 @@ msgid "Level"
|
|
|
1116
1115
|
msgstr ""
|
|
1117
1116
|
|
|
1118
1117
|
#. module: account_financial_report
|
|
1118
|
+
#. odoo-python
|
|
1119
1119
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1120
|
-
#, python-format
|
|
1121
1120
|
msgid "Level %s"
|
|
1122
1121
|
msgstr ""
|
|
1123
1122
|
|
|
1124
1123
|
#. module: account_financial_report
|
|
1124
|
+
#. odoo-python
|
|
1125
1125
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1126
1126
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1127
1127
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1128
|
-
#, python-format
|
|
1129
1128
|
msgid "Limit hierarchy levels"
|
|
1130
1129
|
msgstr ""
|
|
1131
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
|
+
|
|
1132
1161
|
#. module: account_financial_report
|
|
1133
1162
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1134
1163
|
msgid "Move Target"
|
|
@@ -1140,52 +1169,65 @@ msgid "Moves"
|
|
|
1140
1169
|
msgstr ""
|
|
1141
1170
|
|
|
1142
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
|
|
1143
1179
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1144
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
|
|
1145
1183
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1146
1184
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1147
1185
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1148
|
-
#, python-format
|
|
1149
1186
|
msgid "Name"
|
|
1150
1187
|
msgstr ""
|
|
1151
1188
|
|
|
1152
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
|
|
1153
1196
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1154
1197
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1155
|
-
#, python-format
|
|
1156
1198
|
msgid "Net"
|
|
1157
1199
|
msgstr ""
|
|
1158
1200
|
|
|
1159
1201
|
#. module: account_financial_report
|
|
1202
|
+
#. odoo-python
|
|
1160
1203
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1161
1204
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1162
1205
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1163
1206
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1164
|
-
#, python-format
|
|
1165
1207
|
msgid "No"
|
|
1166
1208
|
msgstr ""
|
|
1167
1209
|
|
|
1168
1210
|
#. module: account_financial_report
|
|
1211
|
+
#. odoo-python
|
|
1169
1212
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1170
|
-
#, python-format
|
|
1171
1213
|
msgid "No group"
|
|
1172
1214
|
msgstr ""
|
|
1173
1215
|
|
|
1174
1216
|
#. module: account_financial_report
|
|
1175
|
-
|
|
1176
|
-
msgid "No hierarchy"
|
|
1177
|
-
msgstr ""
|
|
1178
|
-
|
|
1179
|
-
#. module: account_financial_report
|
|
1217
|
+
#. odoo-python
|
|
1180
1218
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1181
1219
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1182
|
-
#, python-format
|
|
1183
1220
|
msgid "No limit"
|
|
1184
1221
|
msgstr ""
|
|
1185
1222
|
|
|
1186
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
|
|
1187
1230
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1188
|
-
#, python-format
|
|
1189
1231
|
msgid "Not Posted"
|
|
1190
1232
|
msgstr ""
|
|
1191
1233
|
|
|
@@ -1195,9 +1237,8 @@ msgid "Not due"
|
|
|
1195
1237
|
msgstr ""
|
|
1196
1238
|
|
|
1197
1239
|
#. module: account_financial_report
|
|
1198
|
-
#:
|
|
1199
|
-
|
|
1200
|
-
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"
|
|
1201
1242
|
msgstr ""
|
|
1202
1243
|
|
|
1203
1244
|
#. module: account_financial_report
|
|
@@ -1206,19 +1247,25 @@ msgid "OCA accounting reports"
|
|
|
1206
1247
|
msgstr ""
|
|
1207
1248
|
|
|
1208
1249
|
#. module: account_financial_report
|
|
1250
|
+
#. odoo-python
|
|
1209
1251
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1210
1252
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1211
|
-
#, python-format
|
|
1212
1253
|
msgid "Older"
|
|
1213
1254
|
msgstr ""
|
|
1214
1255
|
|
|
1215
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
|
|
1216
1264
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1217
1265
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1218
1266
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1219
1267
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1220
1268
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1221
|
-
#, python-format
|
|
1222
1269
|
msgid "Open Items"
|
|
1223
1270
|
msgstr ""
|
|
1224
1271
|
|
|
@@ -1258,13 +1305,14 @@ msgid "Options"
|
|
|
1258
1305
|
msgstr ""
|
|
1259
1306
|
|
|
1260
1307
|
#. module: account_financial_report
|
|
1308
|
+
#. odoo-python
|
|
1261
1309
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1262
1310
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1263
|
-
#, python-format
|
|
1264
1311
|
msgid "Original"
|
|
1265
1312
|
msgstr ""
|
|
1266
1313
|
|
|
1267
1314
|
#. module: account_financial_report
|
|
1315
|
+
#. odoo-python
|
|
1268
1316
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1269
1317
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1270
1318
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1276,7 +1324,6 @@ msgstr ""
|
|
|
1276
1324
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1277
1325
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1278
1326
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1279
|
-
#, python-format
|
|
1280
1327
|
msgid "Partner"
|
|
1281
1328
|
msgstr ""
|
|
1282
1329
|
|
|
@@ -1288,26 +1335,42 @@ msgid ""
|
|
|
1288
1335
|
msgstr ""
|
|
1289
1336
|
|
|
1290
1337
|
#. module: account_financial_report
|
|
1338
|
+
#. odoo-python
|
|
1291
1339
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1292
|
-
#, python-format
|
|
1293
1340
|
msgid "Partner Initial balance"
|
|
1294
1341
|
msgstr ""
|
|
1295
1342
|
|
|
1296
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
|
|
1297
1350
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1298
|
-
#, python-format
|
|
1299
1351
|
msgid "Partner cumul aged balance"
|
|
1300
1352
|
msgstr ""
|
|
1301
1353
|
|
|
1302
1354
|
#. module: account_financial_report
|
|
1355
|
+
#. odoo-python
|
|
1303
1356
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1304
1357
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1305
1358
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1306
1359
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1307
|
-
#, python-format
|
|
1308
1360
|
msgid "Partner ending balance"
|
|
1309
1361
|
msgstr ""
|
|
1310
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
|
+
|
|
1311
1374
|
#. module: account_financial_report
|
|
1312
1375
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1313
1376
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
@@ -1322,9 +1385,9 @@ msgid "Percents"
|
|
|
1322
1385
|
msgstr ""
|
|
1323
1386
|
|
|
1324
1387
|
#. module: account_financial_report
|
|
1388
|
+
#. odoo-python
|
|
1325
1389
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1326
1390
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1327
|
-
#, python-format
|
|
1328
1391
|
msgid "Period balance"
|
|
1329
1392
|
msgstr ""
|
|
1330
1393
|
|
|
@@ -1334,22 +1397,15 @@ msgid "Periods"
|
|
|
1334
1397
|
msgstr ""
|
|
1335
1398
|
|
|
1336
1399
|
#. module: account_financial_report
|
|
1400
|
+
#. odoo-python
|
|
1337
1401
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1338
|
-
#, python-format
|
|
1339
1402
|
msgid "Posted"
|
|
1340
1403
|
msgstr ""
|
|
1341
1404
|
|
|
1342
1405
|
#. module: account_financial_report
|
|
1343
|
-
#.
|
|
1344
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1345
|
-
#, python-format
|
|
1346
|
-
msgid "Print"
|
|
1347
|
-
msgstr ""
|
|
1348
|
-
|
|
1349
|
-
#. module: account_financial_report
|
|
1406
|
+
#. odoo-python
|
|
1350
1407
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1351
1408
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1352
|
-
#, python-format
|
|
1353
1409
|
msgid "Rec."
|
|
1354
1410
|
msgstr ""
|
|
1355
1411
|
|
|
@@ -1377,12 +1433,12 @@ msgid ""
|
|
|
1377
1433
|
msgstr ""
|
|
1378
1434
|
|
|
1379
1435
|
#. module: account_financial_report
|
|
1436
|
+
#. odoo-python
|
|
1380
1437
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1381
1438
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1382
1439
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1383
1440
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1384
1441
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1385
|
-
#, python-format
|
|
1386
1442
|
msgid "Ref - Label"
|
|
1387
1443
|
msgstr ""
|
|
1388
1444
|
|
|
@@ -1392,30 +1448,30 @@ msgid "Report Action"
|
|
|
1392
1448
|
msgstr ""
|
|
1393
1449
|
|
|
1394
1450
|
#. module: account_financial_report
|
|
1451
|
+
#. odoo-python
|
|
1395
1452
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1396
1453
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1397
1454
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1398
1455
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1399
1456
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1400
|
-
#, python-format
|
|
1401
1457
|
msgid "Residual"
|
|
1402
1458
|
msgstr ""
|
|
1403
1459
|
|
|
1404
1460
|
#. module: account_financial_report
|
|
1461
|
+
#. odoo-python
|
|
1405
1462
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1406
1463
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1407
|
-
#, python-format
|
|
1408
1464
|
msgid "Sequence"
|
|
1409
1465
|
msgstr ""
|
|
1410
1466
|
|
|
1411
1467
|
#. module: account_financial_report
|
|
1468
|
+
#. odoo-python
|
|
1412
1469
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1413
1470
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1414
1471
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1415
1472
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1416
1473
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1417
1474
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1418
|
-
#, python-format
|
|
1419
1475
|
msgid "Show"
|
|
1420
1476
|
msgstr ""
|
|
1421
1477
|
|
|
@@ -1435,31 +1491,27 @@ msgid "Show Move Line Details"
|
|
|
1435
1491
|
msgstr ""
|
|
1436
1492
|
|
|
1437
1493
|
#. module: account_financial_report
|
|
1438
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1439
1494
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1440
1495
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1441
1496
|
msgid "Show Partner Details"
|
|
1442
1497
|
msgstr ""
|
|
1443
1498
|
|
|
1444
1499
|
#. module: account_financial_report
|
|
1445
|
-
|
|
1446
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1447
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1448
|
-
#, python-format
|
|
1449
|
-
msgid "Show analytic tags"
|
|
1450
|
-
msgstr ""
|
|
1451
|
-
|
|
1452
|
-
#. module: account_financial_report
|
|
1500
|
+
#. odoo-python
|
|
1453
1501
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1454
1502
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1455
1503
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1456
1504
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1457
1505
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1458
1506
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1459
|
-
#, python-format
|
|
1460
1507
|
msgid "Show foreign currency"
|
|
1461
1508
|
msgstr ""
|
|
1462
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
|
+
|
|
1463
1515
|
#. module: account_financial_report
|
|
1464
1516
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1465
1517
|
msgid "Sort entries by"
|
|
@@ -1478,15 +1530,19 @@ msgstr ""
|
|
|
1478
1530
|
#. module: account_financial_report
|
|
1479
1531
|
#: model:ir.model.fields,help:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
1480
1532
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
1481
|
-
#: model:ir.model.fields,help:account_financial_report.field_open_items_report_wizard__account_code_from
|
|
1482
1533
|
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__account_code_from
|
|
1483
1534
|
msgid "Starting account in a range"
|
|
1484
1535
|
msgstr ""
|
|
1485
1536
|
|
|
1486
1537
|
#. module: account_financial_report
|
|
1487
|
-
|
|
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
|
|
1488
1545
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1489
|
-
#, python-format
|
|
1490
1546
|
msgid "Tags"
|
|
1491
1547
|
msgstr ""
|
|
1492
1548
|
|
|
@@ -1500,6 +1556,7 @@ msgid "Target Moves"
|
|
|
1500
1556
|
msgstr ""
|
|
1501
1557
|
|
|
1502
1558
|
#. module: account_financial_report
|
|
1559
|
+
#. odoo-python
|
|
1503
1560
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1504
1561
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1505
1562
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1509,14 +1566,13 @@ msgstr ""
|
|
|
1509
1566
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1510
1567
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1511
1568
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1512
|
-
#, python-format
|
|
1513
1569
|
msgid "Target moves filter"
|
|
1514
1570
|
msgstr ""
|
|
1515
1571
|
|
|
1516
1572
|
#. module: account_financial_report
|
|
1573
|
+
#. odoo-python
|
|
1517
1574
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1518
1575
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1519
|
-
#, python-format
|
|
1520
1576
|
msgid "Tax"
|
|
1521
1577
|
msgstr ""
|
|
1522
1578
|
|
|
@@ -1527,75 +1583,102 @@ msgid "Tax Amount"
|
|
|
1527
1583
|
msgstr ""
|
|
1528
1584
|
|
|
1529
1585
|
#. module: account_financial_report
|
|
1586
|
+
#. odoo-python
|
|
1530
1587
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1531
|
-
#, python-format
|
|
1532
1588
|
msgid "Tax Balance"
|
|
1533
1589
|
msgstr ""
|
|
1534
1590
|
|
|
1535
1591
|
#. module: account_financial_report
|
|
1592
|
+
#. odoo-python
|
|
1536
1593
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1537
|
-
#, python-format
|
|
1538
1594
|
msgid "Tax Credit"
|
|
1539
1595
|
msgstr ""
|
|
1540
1596
|
|
|
1541
1597
|
#. module: account_financial_report
|
|
1598
|
+
#. odoo-python
|
|
1542
1599
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1543
|
-
#, python-format
|
|
1544
1600
|
msgid "Tax Debit"
|
|
1545
1601
|
msgstr ""
|
|
1546
1602
|
|
|
1547
1603
|
#. module: account_financial_report
|
|
1604
|
+
#. odoo-python
|
|
1548
1605
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1549
1606
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1550
|
-
#, python-format
|
|
1551
1607
|
msgid "Tax Groups"
|
|
1552
1608
|
msgstr ""
|
|
1553
1609
|
|
|
1554
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
|
|
1555
1618
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1556
1619
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1557
|
-
#, python-format
|
|
1558
1620
|
msgid "Tax Tags"
|
|
1559
1621
|
msgstr ""
|
|
1560
1622
|
|
|
1561
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
|
|
1562
1637
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1563
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
|
|
1564
1640
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1565
1641
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1566
|
-
#, python-format
|
|
1567
1642
|
msgid "Taxes"
|
|
1568
1643
|
msgstr ""
|
|
1569
1644
|
|
|
1570
1645
|
#. module: account_financial_report
|
|
1646
|
+
#. odoo-python
|
|
1571
1647
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1572
|
-
#, python-format
|
|
1573
1648
|
msgid ""
|
|
1574
1649
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1575
1650
|
"the same."
|
|
1576
1651
|
msgstr ""
|
|
1577
1652
|
|
|
1578
1653
|
#. module: account_financial_report
|
|
1654
|
+
#. odoo-python
|
|
1579
1655
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1580
|
-
#, python-format
|
|
1581
1656
|
msgid ""
|
|
1582
1657
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the "
|
|
1583
1658
|
"same."
|
|
1584
1659
|
msgstr ""
|
|
1585
1660
|
|
|
1586
1661
|
#. module: account_financial_report
|
|
1662
|
+
#. odoo-python
|
|
1587
1663
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1588
|
-
#, python-format
|
|
1589
1664
|
msgid ""
|
|
1590
1665
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1591
1666
|
msgstr ""
|
|
1592
1667
|
|
|
1593
1668
|
#. module: account_financial_report
|
|
1669
|
+
#. odoo-python
|
|
1594
1670
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1595
|
-
#, python-format
|
|
1596
1671
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1597
1672
|
msgstr ""
|
|
1598
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
|
+
|
|
1599
1682
|
#. module: account_financial_report
|
|
1600
1683
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1601
1684
|
msgid "This domain will be used to select specific domain for Journal Items"
|
|
@@ -1612,17 +1695,19 @@ msgid "To:"
|
|
|
1612
1695
|
msgstr ""
|
|
1613
1696
|
|
|
1614
1697
|
#. module: account_financial_report
|
|
1698
|
+
#. odoo-python
|
|
1699
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1615
1700
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1616
1701
|
msgid "Total"
|
|
1617
1702
|
msgstr ""
|
|
1618
1703
|
|
|
1619
1704
|
#. module: account_financial_report
|
|
1705
|
+
#. odoo-python
|
|
1620
1706
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1621
1707
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1622
1708
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1623
1709
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1624
1710
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1625
|
-
#, python-format
|
|
1626
1711
|
msgid "Trial Balance"
|
|
1627
1712
|
msgstr ""
|
|
1628
1713
|
|
|
@@ -1673,6 +1758,11 @@ msgid ""
|
|
|
1673
1758
|
"balance."
|
|
1674
1759
|
msgstr ""
|
|
1675
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
|
+
|
|
1676
1766
|
#. module: account_financial_report
|
|
1677
1767
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
1678
1768
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
|
|
@@ -1702,8 +1792,8 @@ msgid "VAT Report XLSX"
|
|
|
1702
1792
|
msgstr ""
|
|
1703
1793
|
|
|
1704
1794
|
#. module: account_financial_report
|
|
1795
|
+
#. odoo-python
|
|
1705
1796
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1706
|
-
#, python-format
|
|
1707
1797
|
msgid "Vat Report"
|
|
1708
1798
|
msgstr ""
|
|
1709
1799
|
|
|
@@ -1740,22 +1830,27 @@ msgid "With Account Name"
|
|
|
1740
1830
|
msgstr ""
|
|
1741
1831
|
|
|
1742
1832
|
#. module: account_financial_report
|
|
1833
|
+
#. odoo-python
|
|
1834
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1835
|
+
msgid "Without analytic account"
|
|
1836
|
+
msgstr ""
|
|
1837
|
+
|
|
1838
|
+
#. module: account_financial_report
|
|
1839
|
+
#. odoo-python
|
|
1743
1840
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1744
1841
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1745
1842
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1746
1843
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1747
|
-
#, python-format
|
|
1748
1844
|
msgid "Yes"
|
|
1749
1845
|
msgstr ""
|
|
1750
1846
|
|
|
1751
1847
|
#. module: account_financial_report
|
|
1848
|
+
#. odoo-python
|
|
1752
1849
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1753
|
-
#, python-format
|
|
1754
1850
|
msgid "future"
|
|
1755
1851
|
msgstr ""
|
|
1756
1852
|
|
|
1757
1853
|
#. module: account_financial_report
|
|
1758
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1759
1854
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1760
1855
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1761
1856
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|