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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#
|
|
5
5
|
msgid ""
|
|
6
6
|
msgstr ""
|
|
7
|
-
"Project-Id-Version: Odoo Server
|
|
7
|
+
"Project-Id-Version: Odoo Server 18.0\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
9
|
"Last-Translator: \n"
|
|
10
10
|
"Language-Team: \n"
|
|
@@ -49,6 +49,18 @@ msgstr ""
|
|
|
49
49
|
msgid "<b>Taxes summary</b>"
|
|
50
50
|
msgstr ""
|
|
51
51
|
|
|
52
|
+
#. module: account_financial_report
|
|
53
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.trial_balance_wizard
|
|
54
|
+
msgid ""
|
|
55
|
+
"<i class=\"fa fa-exclamation-triangle mr-3\"/>\n"
|
|
56
|
+
" Duplicate amounts may be shown because more than one analytical account may be defined in the journal items."
|
|
57
|
+
msgstr ""
|
|
58
|
+
|
|
59
|
+
#. module: account_financial_report
|
|
60
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
61
|
+
msgid "<span class=\"o_form_label\">Intervals configuration</span>"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
52
64
|
#. module: account_financial_report
|
|
53
65
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
54
66
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -73,6 +85,7 @@ msgid "Abstract XLSX Account Financial Report"
|
|
|
73
85
|
msgstr ""
|
|
74
86
|
|
|
75
87
|
#. module: account_financial_report
|
|
88
|
+
#. odoo-python
|
|
76
89
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
77
90
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
78
91
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -84,10 +97,14 @@ msgstr ""
|
|
|
84
97
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
85
98
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
86
99
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
87
|
-
#, python-format
|
|
88
100
|
msgid "Account"
|
|
89
101
|
msgstr ""
|
|
90
102
|
|
|
103
|
+
#. module: account_financial_report
|
|
104
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__account_age_report_config_id
|
|
105
|
+
msgid "Account Age Report Config"
|
|
106
|
+
msgstr ""
|
|
107
|
+
|
|
91
108
|
#. module: account_financial_report
|
|
92
109
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__account_code_from
|
|
93
110
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__account_code_from
|
|
@@ -110,24 +127,24 @@ msgid "Account Group"
|
|
|
110
127
|
msgstr ""
|
|
111
128
|
|
|
112
129
|
#. module: account_financial_report
|
|
130
|
+
#. odoo-python
|
|
113
131
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
114
|
-
#, python-format
|
|
115
132
|
msgid "Account Name"
|
|
116
133
|
msgstr ""
|
|
117
134
|
|
|
118
135
|
#. module: account_financial_report
|
|
136
|
+
#. odoo-python
|
|
119
137
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
120
138
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
121
|
-
#, python-format
|
|
122
139
|
msgid "Account at 0 filter"
|
|
123
140
|
msgstr ""
|
|
124
141
|
|
|
125
142
|
#. module: account_financial_report
|
|
143
|
+
#. odoo-python
|
|
126
144
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
127
145
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
128
146
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
129
147
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
130
|
-
#, python-format
|
|
131
148
|
msgid "Account balance at 0 filter"
|
|
132
149
|
msgstr ""
|
|
133
150
|
|
|
@@ -146,17 +163,21 @@ msgstr ""
|
|
|
146
163
|
msgid "Additional Filtering"
|
|
147
164
|
msgstr ""
|
|
148
165
|
|
|
166
|
+
#. module: account_financial_report
|
|
167
|
+
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_report_configuration
|
|
168
|
+
msgid "Age Partner Report Configuration"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
149
171
|
#. module: account_financial_report
|
|
150
172
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
151
173
|
msgid ""
|
|
152
174
|
"Age ≤ 120\n"
|
|
153
|
-
"
|
|
175
|
+
" d."
|
|
154
176
|
msgstr ""
|
|
155
177
|
|
|
156
178
|
#. module: account_financial_report
|
|
179
|
+
#. odoo-python
|
|
157
180
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
158
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
159
|
-
#, python-format
|
|
160
181
|
msgid "Age ≤ 120 d."
|
|
161
182
|
msgstr ""
|
|
162
183
|
|
|
@@ -164,13 +185,12 @@ msgstr ""
|
|
|
164
185
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
165
186
|
msgid ""
|
|
166
187
|
"Age ≤ 30\n"
|
|
167
|
-
"
|
|
188
|
+
" d."
|
|
168
189
|
msgstr ""
|
|
169
190
|
|
|
170
191
|
#. module: account_financial_report
|
|
192
|
+
#. odoo-python
|
|
171
193
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
172
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
173
|
-
#, python-format
|
|
174
194
|
msgid "Age ≤ 30 d."
|
|
175
195
|
msgstr ""
|
|
176
196
|
|
|
@@ -178,13 +198,12 @@ msgstr ""
|
|
|
178
198
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
179
199
|
msgid ""
|
|
180
200
|
"Age ≤ 60\n"
|
|
181
|
-
"
|
|
201
|
+
" d."
|
|
182
202
|
msgstr ""
|
|
183
203
|
|
|
184
204
|
#. module: account_financial_report
|
|
205
|
+
#. odoo-python
|
|
185
206
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
186
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
187
|
-
#, python-format
|
|
188
207
|
msgid "Age ≤ 60 d."
|
|
189
208
|
msgstr ""
|
|
190
209
|
|
|
@@ -192,23 +211,22 @@ msgstr ""
|
|
|
192
211
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
193
212
|
msgid ""
|
|
194
213
|
"Age ≤ 90\n"
|
|
195
|
-
"
|
|
214
|
+
" d."
|
|
196
215
|
msgstr ""
|
|
197
216
|
|
|
198
217
|
#. module: account_financial_report
|
|
218
|
+
#. odoo-python
|
|
199
219
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
200
|
-
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
201
|
-
#, python-format
|
|
202
220
|
msgid "Age ≤ 90 d."
|
|
203
221
|
msgstr ""
|
|
204
222
|
|
|
205
223
|
#. module: account_financial_report
|
|
224
|
+
#. odoo-python
|
|
206
225
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
207
226
|
#: model:ir.actions.act_window,name:account_financial_report.action_aged_partner_balance_wizard
|
|
208
227
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_html
|
|
209
228
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_aged_partner_balance_qweb
|
|
210
229
|
#: model:ir.ui.menu,name:account_financial_report.menu_aged_partner_balance_wizard
|
|
211
|
-
#, python-format
|
|
212
230
|
msgid "Aged Partner Balance"
|
|
213
231
|
msgstr ""
|
|
214
232
|
|
|
@@ -238,8 +256,8 @@ msgid "Aged Partner Balance XLSX"
|
|
|
238
256
|
msgstr ""
|
|
239
257
|
|
|
240
258
|
#. module: account_financial_report
|
|
259
|
+
#. odoo-python
|
|
241
260
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
242
|
-
#, python-format
|
|
243
261
|
msgid "All"
|
|
244
262
|
msgstr ""
|
|
245
263
|
|
|
@@ -262,6 +280,7 @@ msgid "All Posted Entries"
|
|
|
262
280
|
msgstr ""
|
|
263
281
|
|
|
264
282
|
#. module: account_financial_report
|
|
283
|
+
#. odoo-python
|
|
265
284
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
266
285
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
267
286
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -270,11 +289,11 @@ msgstr ""
|
|
|
270
289
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
271
290
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
272
291
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
273
|
-
#, python-format
|
|
274
292
|
msgid "All entries"
|
|
275
293
|
msgstr ""
|
|
276
294
|
|
|
277
295
|
#. module: account_financial_report
|
|
296
|
+
#. odoo-python
|
|
278
297
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
279
298
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
280
299
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -283,7 +302,6 @@ msgstr ""
|
|
|
283
302
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
284
303
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
285
304
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
286
|
-
#, python-format
|
|
287
305
|
msgid "All posted entries"
|
|
288
306
|
msgstr ""
|
|
289
307
|
|
|
@@ -293,23 +311,29 @@ msgid "Amount Cur."
|
|
|
293
311
|
msgstr ""
|
|
294
312
|
|
|
295
313
|
#. module: account_financial_report
|
|
314
|
+
#. odoo-python
|
|
296
315
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
297
|
-
#, python-format
|
|
298
316
|
msgid "Amount Currency"
|
|
299
317
|
msgstr ""
|
|
300
318
|
|
|
301
319
|
#. module: account_financial_report
|
|
320
|
+
#. odoo-python
|
|
302
321
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
303
322
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
304
|
-
#, python-format
|
|
305
323
|
msgid "Amount cur."
|
|
306
324
|
msgstr ""
|
|
307
325
|
|
|
308
326
|
#. module: account_financial_report
|
|
327
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_move_line__analytic_account_ids
|
|
328
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__grouped_by__analytic_account
|
|
329
|
+
msgid "Analytic Account"
|
|
330
|
+
msgstr ""
|
|
331
|
+
|
|
332
|
+
#. module: account_financial_report
|
|
333
|
+
#. odoo-python
|
|
309
334
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
310
335
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
311
|
-
|
|
312
|
-
msgid "Analytic Account"
|
|
336
|
+
msgid "Analytic Distribution"
|
|
313
337
|
msgstr ""
|
|
314
338
|
|
|
315
339
|
#. module: account_financial_report
|
|
@@ -325,20 +349,20 @@ msgid "Base Amount"
|
|
|
325
349
|
msgstr ""
|
|
326
350
|
|
|
327
351
|
#. module: account_financial_report
|
|
352
|
+
#. odoo-python
|
|
328
353
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
329
|
-
#, python-format
|
|
330
354
|
msgid "Base Balance"
|
|
331
355
|
msgstr ""
|
|
332
356
|
|
|
333
357
|
#. module: account_financial_report
|
|
358
|
+
#. odoo-python
|
|
334
359
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
335
|
-
#, python-format
|
|
336
360
|
msgid "Base Credit"
|
|
337
361
|
msgstr ""
|
|
338
362
|
|
|
339
363
|
#. module: account_financial_report
|
|
364
|
+
#. odoo-python
|
|
340
365
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
341
|
-
#, python-format
|
|
342
366
|
msgid "Base Debit"
|
|
343
367
|
msgstr ""
|
|
344
368
|
|
|
@@ -349,8 +373,8 @@ msgid "Based On"
|
|
|
349
373
|
msgstr ""
|
|
350
374
|
|
|
351
375
|
#. module: account_financial_report
|
|
376
|
+
#. odoo-python
|
|
352
377
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
353
|
-
#, python-format
|
|
354
378
|
msgid "Based on"
|
|
355
379
|
msgstr ""
|
|
356
380
|
|
|
@@ -365,9 +389,9 @@ msgid "Cancel"
|
|
|
365
389
|
msgstr ""
|
|
366
390
|
|
|
367
391
|
#. module: account_financial_report
|
|
392
|
+
#. odoo-python
|
|
368
393
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
369
394
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
370
|
-
#, python-format
|
|
371
395
|
msgid "Centralize filter"
|
|
372
396
|
msgstr ""
|
|
373
397
|
|
|
@@ -376,27 +400,24 @@ msgstr ""
|
|
|
376
400
|
msgid "Centralized"
|
|
377
401
|
msgstr ""
|
|
378
402
|
|
|
379
|
-
#. module: account_financial_report
|
|
380
|
-
#: model:ir.model.fields.selection,name:account_financial_report.selection__trial_balance_report_wizard__hierarchy_on__relation
|
|
381
|
-
msgid "Child Accounts"
|
|
382
|
-
msgstr ""
|
|
383
|
-
|
|
384
403
|
#. module: account_financial_report
|
|
385
404
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_group__group_child_ids
|
|
386
405
|
msgid "Child Groups"
|
|
387
406
|
msgstr ""
|
|
388
407
|
|
|
389
408
|
#. module: account_financial_report
|
|
409
|
+
#. odoo-python
|
|
390
410
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
391
411
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
392
412
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
393
413
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
394
|
-
#, python-format
|
|
395
414
|
msgid "Code"
|
|
396
415
|
msgstr ""
|
|
397
416
|
|
|
398
417
|
#. module: account_financial_report
|
|
418
|
+
#. odoo-python
|
|
399
419
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
420
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__company_id
|
|
400
421
|
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__company_id
|
|
401
422
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__company_id
|
|
402
423
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__company_id
|
|
@@ -404,7 +425,6 @@ msgstr ""
|
|
|
404
425
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__company_id
|
|
405
426
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__company_id
|
|
406
427
|
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__company_id
|
|
407
|
-
#, python-format
|
|
408
428
|
msgid "Company"
|
|
409
429
|
msgstr ""
|
|
410
430
|
|
|
@@ -414,23 +434,18 @@ msgid "Compute accounts"
|
|
|
414
434
|
msgstr ""
|
|
415
435
|
|
|
416
436
|
#. module: account_financial_report
|
|
417
|
-
#: model:ir.model
|
|
418
|
-
msgid "
|
|
437
|
+
#: model:ir.model,name:account_financial_report.model_res_config_settings
|
|
438
|
+
msgid "Config Settings"
|
|
419
439
|
msgstr ""
|
|
420
440
|
|
|
421
441
|
#. module: account_financial_report
|
|
422
|
-
#:
|
|
423
|
-
msgid ""
|
|
424
|
-
"Computed Accounts: Use when the account group have codes\n"
|
|
425
|
-
" that represent prefixes of the actual accounts.\n"
|
|
426
|
-
"\n"
|
|
427
|
-
" Child Accounts: Use when your account groups are hierarchical.\n"
|
|
428
|
-
"\n"
|
|
429
|
-
" No hierarchy: Use to display just the accounts, without any grouping.\n"
|
|
430
|
-
" "
|
|
442
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
443
|
+
msgid "Configurations"
|
|
431
444
|
msgstr ""
|
|
432
445
|
|
|
433
446
|
#. module: account_financial_report
|
|
447
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_uid
|
|
448
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_uid
|
|
434
449
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_uid
|
|
435
450
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_uid
|
|
436
451
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_uid
|
|
@@ -441,6 +456,8 @@ msgid "Created by"
|
|
|
441
456
|
msgstr ""
|
|
442
457
|
|
|
443
458
|
#. module: account_financial_report
|
|
459
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__create_date
|
|
460
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__create_date
|
|
444
461
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__create_date
|
|
445
462
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__create_date
|
|
446
463
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__create_date
|
|
@@ -451,68 +468,69 @@ msgid "Created on"
|
|
|
451
468
|
msgstr ""
|
|
452
469
|
|
|
453
470
|
#. module: account_financial_report
|
|
471
|
+
#. odoo-python
|
|
454
472
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
455
473
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
456
474
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
457
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
458
475
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
459
476
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
460
477
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
461
478
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
462
479
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
463
|
-
#, python-format
|
|
464
480
|
msgid "Credit"
|
|
465
481
|
msgstr ""
|
|
466
482
|
|
|
467
483
|
#. module: account_financial_report
|
|
484
|
+
#. odoo-python
|
|
468
485
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
469
486
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
470
|
-
|
|
471
|
-
msgid "Cumul. Bal."
|
|
487
|
+
msgid "Cumul cur."
|
|
472
488
|
msgstr ""
|
|
473
489
|
|
|
474
490
|
#. module: account_financial_report
|
|
491
|
+
#. odoo-python
|
|
475
492
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
476
|
-
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
477
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
478
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
479
493
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
494
|
+
msgid "Cumul. Bal."
|
|
495
|
+
msgstr ""
|
|
496
|
+
|
|
497
|
+
#. module: account_financial_report
|
|
498
|
+
#. odoo-python
|
|
499
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
480
500
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
481
501
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
482
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
483
|
-
#, python-format
|
|
484
502
|
msgid "Cur."
|
|
485
503
|
msgstr ""
|
|
486
504
|
|
|
487
505
|
#. module: account_financial_report
|
|
506
|
+
#. odoo-python
|
|
488
507
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
489
508
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
490
|
-
#, python-format
|
|
491
509
|
msgid "Cur. Original"
|
|
492
510
|
msgstr ""
|
|
493
511
|
|
|
494
512
|
#. module: account_financial_report
|
|
513
|
+
#. odoo-python
|
|
495
514
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
496
515
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
497
|
-
#, python-format
|
|
498
516
|
msgid "Cur. Residual"
|
|
499
517
|
msgstr ""
|
|
500
518
|
|
|
501
519
|
#. module: account_financial_report
|
|
520
|
+
#. odoo-python
|
|
502
521
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
503
|
-
#, python-format
|
|
504
522
|
msgid "Currency"
|
|
505
523
|
msgstr ""
|
|
506
524
|
|
|
507
525
|
#. module: account_financial_report
|
|
508
|
-
|
|
526
|
+
#. odoo-python
|
|
509
527
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
510
528
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
511
|
-
#, python-format
|
|
512
529
|
msgid "Current"
|
|
513
530
|
msgstr ""
|
|
514
531
|
|
|
515
532
|
#. module: account_financial_report
|
|
533
|
+
#. odoo-python
|
|
516
534
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
517
535
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
518
536
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -522,7 +540,6 @@ msgstr ""
|
|
|
522
540
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
523
541
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
524
542
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
525
|
-
#, python-format
|
|
526
543
|
msgid "Date"
|
|
527
544
|
msgstr ""
|
|
528
545
|
|
|
@@ -549,17 +566,17 @@ msgid "Date To"
|
|
|
549
566
|
msgstr ""
|
|
550
567
|
|
|
551
568
|
#. module: account_financial_report
|
|
569
|
+
#. odoo-python
|
|
552
570
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
553
571
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
554
572
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_filters
|
|
555
573
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
556
|
-
#, python-format
|
|
557
574
|
msgid "Date at filter"
|
|
558
575
|
msgstr ""
|
|
559
576
|
|
|
560
577
|
#. module: account_financial_report
|
|
578
|
+
#. odoo-python
|
|
561
579
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
562
|
-
#, python-format
|
|
563
580
|
msgid "Date from"
|
|
564
581
|
msgstr ""
|
|
565
582
|
|
|
@@ -572,40 +589,39 @@ msgid "Date range"
|
|
|
572
589
|
msgstr ""
|
|
573
590
|
|
|
574
591
|
#. module: account_financial_report
|
|
592
|
+
#. odoo-python
|
|
575
593
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
576
594
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
577
595
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
578
596
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
579
597
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
580
|
-
#, python-format
|
|
581
598
|
msgid "Date range filter"
|
|
582
599
|
msgstr ""
|
|
583
600
|
|
|
584
601
|
#. module: account_financial_report
|
|
602
|
+
#. odoo-python
|
|
585
603
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
586
|
-
#, python-format
|
|
587
604
|
msgid "Date to"
|
|
588
605
|
msgstr ""
|
|
589
606
|
|
|
590
607
|
#. module: account_financial_report
|
|
608
|
+
#. odoo-python
|
|
591
609
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
592
610
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
593
611
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
594
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
595
612
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
596
613
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
597
614
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
598
615
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
599
616
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
600
|
-
#, python-format
|
|
601
617
|
msgid "Debit"
|
|
602
618
|
msgstr ""
|
|
603
619
|
|
|
604
620
|
#. module: account_financial_report
|
|
621
|
+
#. odoo-python
|
|
605
622
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
606
623
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
607
624
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
608
|
-
#, python-format
|
|
609
625
|
msgid "Description"
|
|
610
626
|
msgstr ""
|
|
611
627
|
|
|
@@ -615,6 +631,8 @@ msgid "Detail Taxes"
|
|
|
615
631
|
msgstr ""
|
|
616
632
|
|
|
617
633
|
#. module: account_financial_report
|
|
634
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__display_name
|
|
635
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__display_name
|
|
618
636
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__display_name
|
|
619
637
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__display_name
|
|
620
638
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__display_name
|
|
@@ -654,9 +672,9 @@ msgid ""
|
|
|
654
672
|
msgstr ""
|
|
655
673
|
|
|
656
674
|
#. module: account_financial_report
|
|
675
|
+
#. odoo-python
|
|
657
676
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
658
677
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
659
|
-
#, python-format
|
|
660
678
|
msgid "Due date"
|
|
661
679
|
msgstr ""
|
|
662
680
|
|
|
@@ -686,15 +704,12 @@ msgid "Ending account in a range"
|
|
|
686
704
|
msgstr ""
|
|
687
705
|
|
|
688
706
|
#. module: account_financial_report
|
|
707
|
+
#. odoo-python
|
|
689
708
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
690
709
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
691
710
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
692
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
693
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
694
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
695
711
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
696
712
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
697
|
-
#, python-format
|
|
698
713
|
msgid "Ending balance"
|
|
699
714
|
msgstr ""
|
|
700
715
|
|
|
@@ -706,12 +721,13 @@ msgid ""
|
|
|
706
721
|
msgstr ""
|
|
707
722
|
|
|
708
723
|
#. module: account_financial_report
|
|
724
|
+
#. odoo-python
|
|
709
725
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
710
|
-
#, python-format
|
|
711
726
|
msgid "Entries sorted by"
|
|
712
727
|
msgstr ""
|
|
713
728
|
|
|
714
729
|
#. module: account_financial_report
|
|
730
|
+
#. odoo-python
|
|
715
731
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
716
732
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
717
733
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -720,21 +736,18 @@ msgstr ""
|
|
|
720
736
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
721
737
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
722
738
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
723
|
-
#, python-format
|
|
724
739
|
msgid "Entry"
|
|
725
740
|
msgstr ""
|
|
726
741
|
|
|
727
742
|
#. module: account_financial_report
|
|
743
|
+
#. odoo-python
|
|
728
744
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
729
|
-
#, python-format
|
|
730
745
|
msgid "Entry number"
|
|
731
746
|
msgstr ""
|
|
732
747
|
|
|
733
748
|
#. module: account_financial_report
|
|
734
|
-
#.
|
|
749
|
+
#. odoo-javascript
|
|
735
750
|
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
736
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
737
|
-
#, python-format
|
|
738
751
|
msgid "Export"
|
|
739
752
|
msgstr ""
|
|
740
753
|
|
|
@@ -772,12 +785,6 @@ msgstr ""
|
|
|
772
785
|
msgid "Filter analytic accounts"
|
|
773
786
|
msgstr ""
|
|
774
787
|
|
|
775
|
-
#. module: account_financial_report
|
|
776
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__analytic_tag_ids
|
|
777
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
778
|
-
msgid "Filter analytic tags"
|
|
779
|
-
msgstr ""
|
|
780
|
-
|
|
781
788
|
#. module: account_financial_report
|
|
782
789
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__cost_center_ids
|
|
783
790
|
msgid "Filter cost centers"
|
|
@@ -802,6 +809,11 @@ msgstr ""
|
|
|
802
809
|
msgid "Foreign Currency"
|
|
803
810
|
msgstr ""
|
|
804
811
|
|
|
812
|
+
#. module: account_financial_report
|
|
813
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
814
|
+
msgid "Format"
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
805
817
|
#. module: account_financial_report
|
|
806
818
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
807
819
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
@@ -817,10 +829,10 @@ msgid "From:"
|
|
|
817
829
|
msgstr ""
|
|
818
830
|
|
|
819
831
|
#. module: account_financial_report
|
|
832
|
+
#. odoo-python
|
|
820
833
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
821
834
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
822
835
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
823
|
-
#, python-format
|
|
824
836
|
msgid "From: %(date_from)s To: %(date_to)s"
|
|
825
837
|
msgstr ""
|
|
826
838
|
|
|
@@ -841,13 +853,13 @@ msgid "Fy Start Date"
|
|
|
841
853
|
msgstr ""
|
|
842
854
|
|
|
843
855
|
#. module: account_financial_report
|
|
856
|
+
#. odoo-python
|
|
844
857
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
845
858
|
#: model:ir.actions.act_window,name:account_financial_report.act_action_general_ledger_wizard_partner_relation
|
|
846
859
|
#: model:ir.actions.act_window,name:account_financial_report.action_general_ledger_wizard
|
|
847
860
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_html
|
|
848
861
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_general_ledger_qweb
|
|
849
862
|
#: model:ir.ui.menu,name:account_financial_report.menu_general_ledger_wizard
|
|
850
|
-
#, python-format
|
|
851
863
|
msgid "General Ledger"
|
|
852
864
|
msgstr ""
|
|
853
865
|
|
|
@@ -889,13 +901,26 @@ msgid "Group entries by"
|
|
|
889
901
|
msgstr ""
|
|
890
902
|
|
|
891
903
|
#. module: account_financial_report
|
|
904
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__grouped_by
|
|
905
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__grouped_by
|
|
906
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__grouped_by
|
|
907
|
+
msgid "Grouped By"
|
|
908
|
+
msgstr ""
|
|
909
|
+
|
|
910
|
+
#. module: account_financial_report
|
|
911
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
912
|
+
msgid ""
|
|
913
|
+
"Here you can set the intervals that will appear on the Aged Partner Balance."
|
|
914
|
+
msgstr ""
|
|
915
|
+
|
|
916
|
+
#. module: account_financial_report
|
|
917
|
+
#. odoo-python
|
|
892
918
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
893
919
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
894
920
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
895
921
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
896
922
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
897
923
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
898
|
-
#, python-format
|
|
899
924
|
msgid "Hide"
|
|
900
925
|
msgstr ""
|
|
901
926
|
|
|
@@ -916,11 +941,8 @@ msgid "Hierarchy Levels to display"
|
|
|
916
941
|
msgstr ""
|
|
917
942
|
|
|
918
943
|
#. module: account_financial_report
|
|
919
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
920
|
-
|
|
921
|
-
msgstr ""
|
|
922
|
-
|
|
923
|
-
#. module: account_financial_report
|
|
944
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__id
|
|
945
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__id
|
|
924
946
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__id
|
|
925
947
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__id
|
|
926
948
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__id
|
|
@@ -937,6 +959,17 @@ msgid ""
|
|
|
937
959
|
"webkit one only), only centralized amounts per period."
|
|
938
960
|
msgstr ""
|
|
939
961
|
|
|
962
|
+
#. module: account_financial_report
|
|
963
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__inferior_limit
|
|
964
|
+
msgid "Inferior Limit"
|
|
965
|
+
msgstr ""
|
|
966
|
+
|
|
967
|
+
#. module: account_financial_report
|
|
968
|
+
#. odoo-python
|
|
969
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
970
|
+
msgid "Inferior Limit must be greather than zero"
|
|
971
|
+
msgstr ""
|
|
972
|
+
|
|
940
973
|
#. module: account_financial_report
|
|
941
974
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
942
975
|
msgid ""
|
|
@@ -952,17 +985,21 @@ msgid ""
|
|
|
952
985
|
msgstr ""
|
|
953
986
|
|
|
954
987
|
#. module: account_financial_report
|
|
988
|
+
#. odoo-python
|
|
955
989
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
956
990
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
957
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
958
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
959
|
-
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
960
991
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
961
|
-
#, python-format
|
|
962
992
|
msgid "Initial balance"
|
|
963
993
|
msgstr ""
|
|
964
994
|
|
|
965
995
|
#. module: account_financial_report
|
|
996
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__age_partner_config_id
|
|
997
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_res_config_settings__age_partner_config_id
|
|
998
|
+
msgid "Intervals configuration"
|
|
999
|
+
msgstr ""
|
|
1000
|
+
|
|
1001
|
+
#. module: account_financial_report
|
|
1002
|
+
#. odoo-python
|
|
966
1003
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
967
1004
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
968
1005
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
@@ -971,7 +1008,6 @@ msgstr ""
|
|
|
971
1008
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
972
1009
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
973
1010
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
974
|
-
#, python-format
|
|
975
1011
|
msgid "Journal"
|
|
976
1012
|
msgstr ""
|
|
977
1013
|
|
|
@@ -986,11 +1022,11 @@ msgid "Journal Items Domain"
|
|
|
986
1022
|
msgstr ""
|
|
987
1023
|
|
|
988
1024
|
#. module: account_financial_report
|
|
1025
|
+
#. odoo-python
|
|
989
1026
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
990
1027
|
#: model:ir.actions.act_window,name:account_financial_report.action_journal_ledger_wizard
|
|
991
1028
|
#: model:ir.actions.report,name:account_financial_report.action_print_journal_ledger_wizard_html
|
|
992
1029
|
#: model:ir.ui.menu,name:account_financial_report.menu_journal_ledger_wizard
|
|
993
|
-
#, python-format
|
|
994
1030
|
msgid "Journal Ledger"
|
|
995
1031
|
msgstr ""
|
|
996
1032
|
|
|
@@ -1020,24 +1056,27 @@ msgid "Journal Ledger XLSX Report"
|
|
|
1020
1056
|
msgstr ""
|
|
1021
1057
|
|
|
1022
1058
|
#. module: account_financial_report
|
|
1059
|
+
#. odoo-python
|
|
1023
1060
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1024
1061
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__journal_ids
|
|
1025
1062
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1026
|
-
#, python-format
|
|
1027
1063
|
msgid "Journals"
|
|
1028
1064
|
msgstr ""
|
|
1029
1065
|
|
|
1030
1066
|
#. module: account_financial_report
|
|
1031
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1032
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1033
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1034
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1035
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1036
|
-
#: model:ir.model.fields,field_description:account_financial_report.
|
|
1037
|
-
|
|
1067
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_financial_report_abstract_wizard__label_text_limit
|
|
1068
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__label_text_limit
|
|
1069
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__label_text_limit
|
|
1070
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__label_text_limit
|
|
1071
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__label_text_limit
|
|
1072
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__label_text_limit
|
|
1073
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_vat_report_wizard__label_text_limit
|
|
1074
|
+
msgid "Label Text Limit"
|
|
1038
1075
|
msgstr ""
|
|
1039
1076
|
|
|
1040
1077
|
#. module: account_financial_report
|
|
1078
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_uid
|
|
1079
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_uid
|
|
1041
1080
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_uid
|
|
1042
1081
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_uid
|
|
1043
1082
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_uid
|
|
@@ -1048,6 +1087,8 @@ msgid "Last Updated by"
|
|
|
1048
1087
|
msgstr ""
|
|
1049
1088
|
|
|
1050
1089
|
#. module: account_financial_report
|
|
1090
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__write_date
|
|
1091
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__write_date
|
|
1051
1092
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__write_date
|
|
1052
1093
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__write_date
|
|
1053
1094
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__write_date
|
|
@@ -1064,19 +1105,49 @@ msgid "Level"
|
|
|
1064
1105
|
msgstr ""
|
|
1065
1106
|
|
|
1066
1107
|
#. module: account_financial_report
|
|
1108
|
+
#. odoo-python
|
|
1067
1109
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1068
|
-
#, python-format
|
|
1069
1110
|
msgid "Level %s"
|
|
1070
1111
|
msgstr ""
|
|
1071
1112
|
|
|
1072
1113
|
#. module: account_financial_report
|
|
1114
|
+
#. odoo-python
|
|
1073
1115
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1074
1116
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__limit_hierarchy_level
|
|
1075
1117
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1076
|
-
#, python-format
|
|
1077
1118
|
msgid "Limit hierarchy levels"
|
|
1078
1119
|
msgstr ""
|
|
1079
1120
|
|
|
1121
|
+
#. module: account_financial_report
|
|
1122
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__line_ids
|
|
1123
|
+
msgid "Line"
|
|
1124
|
+
msgstr ""
|
|
1125
|
+
|
|
1126
|
+
#. module: account_financial_report
|
|
1127
|
+
#. odoo-python
|
|
1128
|
+
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1129
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1130
|
+
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1131
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1132
|
+
msgid "Missing Partner"
|
|
1133
|
+
msgstr ""
|
|
1134
|
+
|
|
1135
|
+
#. module: account_financial_report
|
|
1136
|
+
#. odoo-python
|
|
1137
|
+
#: code:addons/account_financial_report/report/open_items.py:0
|
|
1138
|
+
msgid "Missing Salesperson"
|
|
1139
|
+
msgstr ""
|
|
1140
|
+
|
|
1141
|
+
#. module: account_financial_report
|
|
1142
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration_line
|
|
1143
|
+
msgid "Model to set interval lines for Age partner balance report"
|
|
1144
|
+
msgstr ""
|
|
1145
|
+
|
|
1146
|
+
#. module: account_financial_report
|
|
1147
|
+
#: model:ir.model,name:account_financial_report.model_account_age_report_configuration
|
|
1148
|
+
msgid "Model to set intervals for Age partner balance report"
|
|
1149
|
+
msgstr ""
|
|
1150
|
+
|
|
1080
1151
|
#. module: account_financial_report
|
|
1081
1152
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__move_target
|
|
1082
1153
|
msgid "Move Target"
|
|
@@ -1088,60 +1159,65 @@ msgid "Moves"
|
|
|
1088
1159
|
msgstr ""
|
|
1089
1160
|
|
|
1090
1161
|
#. module: account_financial_report
|
|
1162
|
+
#. odoo-python
|
|
1163
|
+
#: code:addons/account_financial_report/models/account_age_report_configuration.py:0
|
|
1164
|
+
msgid "Must complete Configuration Lines"
|
|
1165
|
+
msgstr ""
|
|
1166
|
+
|
|
1167
|
+
#. module: account_financial_report
|
|
1168
|
+
#. odoo-python
|
|
1091
1169
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1092
1170
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1171
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration__name
|
|
1172
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_account_age_report_configuration_line__name
|
|
1093
1173
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_all_taxes
|
|
1094
1174
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_taxes
|
|
1095
1175
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1096
|
-
#, python-format
|
|
1097
1176
|
msgid "Name"
|
|
1098
1177
|
msgstr ""
|
|
1099
1178
|
|
|
1100
1179
|
#. module: account_financial_report
|
|
1180
|
+
#: model:ir.model.constraint,message:account_financial_report.constraint_account_age_report_configuration_line_unique_name_config_combination
|
|
1181
|
+
msgid "Name must be unique per report configuration"
|
|
1182
|
+
msgstr ""
|
|
1183
|
+
|
|
1184
|
+
#. module: account_financial_report
|
|
1185
|
+
#. odoo-python
|
|
1101
1186
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1102
1187
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1103
|
-
#, python-format
|
|
1104
1188
|
msgid "Net"
|
|
1105
1189
|
msgstr ""
|
|
1106
1190
|
|
|
1107
1191
|
#. module: account_financial_report
|
|
1108
|
-
|
|
1109
|
-
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1192
|
+
#. odoo-python
|
|
1110
1193
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1111
1194
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1112
1195
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1113
1196
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1114
|
-
#, python-format
|
|
1115
1197
|
msgid "No"
|
|
1116
1198
|
msgstr ""
|
|
1117
1199
|
|
|
1118
1200
|
#. module: account_financial_report
|
|
1201
|
+
#. odoo-python
|
|
1119
1202
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1120
|
-
#, python-format
|
|
1121
1203
|
msgid "No group"
|
|
1122
1204
|
msgstr ""
|
|
1123
1205
|
|
|
1124
1206
|
#. module: account_financial_report
|
|
1125
|
-
|
|
1126
|
-
msgid "No hierarchy"
|
|
1127
|
-
msgstr ""
|
|
1128
|
-
|
|
1129
|
-
#. module: account_financial_report
|
|
1207
|
+
#. odoo-python
|
|
1130
1208
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1131
1209
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1132
|
-
#, python-format
|
|
1133
1210
|
msgid "No limit"
|
|
1134
1211
|
msgstr ""
|
|
1135
1212
|
|
|
1136
1213
|
#. module: account_financial_report
|
|
1137
|
-
#: model:ir.model.fields,
|
|
1138
|
-
|
|
1139
|
-
msgid "Not Only One Unaffected Earnings Account"
|
|
1214
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__none
|
|
1215
|
+
msgid "None"
|
|
1140
1216
|
msgstr ""
|
|
1141
1217
|
|
|
1142
1218
|
#. module: account_financial_report
|
|
1219
|
+
#. odoo-python
|
|
1143
1220
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1144
|
-
#, python-format
|
|
1145
1221
|
msgid "Not Posted"
|
|
1146
1222
|
msgstr ""
|
|
1147
1223
|
|
|
@@ -1150,26 +1226,36 @@ msgstr ""
|
|
|
1150
1226
|
msgid "Not due"
|
|
1151
1227
|
msgstr ""
|
|
1152
1228
|
|
|
1229
|
+
#. module: account_financial_report
|
|
1230
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.res_config_settings_view_form
|
|
1231
|
+
msgid "OCA Aged Report Configuration"
|
|
1232
|
+
msgstr ""
|
|
1233
|
+
|
|
1153
1234
|
#. module: account_financial_report
|
|
1154
1235
|
#: model:ir.ui.menu,name:account_financial_report.menu_oca_reports
|
|
1155
1236
|
msgid "OCA accounting reports"
|
|
1156
1237
|
msgstr ""
|
|
1157
1238
|
|
|
1158
1239
|
#. module: account_financial_report
|
|
1159
|
-
|
|
1240
|
+
#. odoo-python
|
|
1160
1241
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1161
1242
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1162
|
-
#, python-format
|
|
1163
1243
|
msgid "Older"
|
|
1164
1244
|
msgstr ""
|
|
1165
1245
|
|
|
1166
1246
|
#. module: account_financial_report
|
|
1247
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__only_one_unaffected_earnings_account
|
|
1248
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__only_one_unaffected_earnings_account
|
|
1249
|
+
msgid "Only One Unaffected Earnings Account"
|
|
1250
|
+
msgstr ""
|
|
1251
|
+
|
|
1252
|
+
#. module: account_financial_report
|
|
1253
|
+
#. odoo-python
|
|
1167
1254
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1168
1255
|
#: model:ir.actions.act_window,name:account_financial_report.action_open_items_wizard
|
|
1169
1256
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_html
|
|
1170
1257
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_open_items_qweb
|
|
1171
1258
|
#: model:ir.ui.menu,name:account_financial_report.menu_open_items_wizard
|
|
1172
|
-
#, python-format
|
|
1173
1259
|
msgid "Open Items"
|
|
1174
1260
|
msgstr ""
|
|
1175
1261
|
|
|
@@ -1209,14 +1295,14 @@ msgid "Options"
|
|
|
1209
1295
|
msgstr ""
|
|
1210
1296
|
|
|
1211
1297
|
#. module: account_financial_report
|
|
1298
|
+
#. odoo-python
|
|
1212
1299
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1213
1300
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1214
|
-
#, python-format
|
|
1215
1301
|
msgid "Original"
|
|
1216
1302
|
msgstr ""
|
|
1217
1303
|
|
|
1218
1304
|
#. module: account_financial_report
|
|
1219
|
-
|
|
1305
|
+
#. odoo-python
|
|
1220
1306
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1221
1307
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1222
1308
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1228,7 +1314,6 @@ msgstr ""
|
|
|
1228
1314
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1229
1315
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1230
1316
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1231
|
-
#, python-format
|
|
1232
1317
|
msgid "Partner"
|
|
1233
1318
|
msgstr ""
|
|
1234
1319
|
|
|
@@ -1240,26 +1325,42 @@ msgid ""
|
|
|
1240
1325
|
msgstr ""
|
|
1241
1326
|
|
|
1242
1327
|
#. module: account_financial_report
|
|
1328
|
+
#. odoo-python
|
|
1243
1329
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1244
|
-
#, python-format
|
|
1245
1330
|
msgid "Partner Initial balance"
|
|
1246
1331
|
msgstr ""
|
|
1247
1332
|
|
|
1248
1333
|
#. module: account_financial_report
|
|
1334
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__salesperson
|
|
1335
|
+
msgid "Partner Salesperson"
|
|
1336
|
+
msgstr ""
|
|
1337
|
+
|
|
1338
|
+
#. module: account_financial_report
|
|
1339
|
+
#. odoo-python
|
|
1249
1340
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1250
|
-
#, python-format
|
|
1251
1341
|
msgid "Partner cumul aged balance"
|
|
1252
1342
|
msgstr ""
|
|
1253
1343
|
|
|
1254
1344
|
#. module: account_financial_report
|
|
1345
|
+
#. odoo-python
|
|
1255
1346
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1256
1347
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1257
1348
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1258
1349
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_ending_cumul
|
|
1259
|
-
#, python-format
|
|
1260
1350
|
msgid "Partner ending balance"
|
|
1261
1351
|
msgstr ""
|
|
1262
1352
|
|
|
1353
|
+
#. module: account_financial_report
|
|
1354
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1355
|
+
msgid "Partner initial balance"
|
|
1356
|
+
msgstr ""
|
|
1357
|
+
|
|
1358
|
+
#. module: account_financial_report
|
|
1359
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__partners
|
|
1360
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__open_items_report_wizard__grouped_by__partners
|
|
1361
|
+
msgid "Partners"
|
|
1362
|
+
msgstr ""
|
|
1363
|
+
|
|
1263
1364
|
#. module: account_financial_report
|
|
1264
1365
|
#: model:ir.model.fields,field_description:account_financial_report.field_aged_partner_balance_report_wizard__payable_accounts_only
|
|
1265
1366
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__payable_accounts_only
|
|
@@ -1274,10 +1375,9 @@ msgid "Percents"
|
|
|
1274
1375
|
msgstr ""
|
|
1275
1376
|
|
|
1276
1377
|
#. module: account_financial_report
|
|
1277
|
-
|
|
1378
|
+
#. odoo-python
|
|
1278
1379
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1279
1380
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_lines_header
|
|
1280
|
-
#, python-format
|
|
1281
1381
|
msgid "Period balance"
|
|
1282
1382
|
msgstr ""
|
|
1283
1383
|
|
|
@@ -1287,23 +1387,15 @@ msgid "Periods"
|
|
|
1287
1387
|
msgstr ""
|
|
1288
1388
|
|
|
1289
1389
|
#. module: account_financial_report
|
|
1390
|
+
#. odoo-python
|
|
1290
1391
|
#: code:addons/account_financial_report/wizard/journal_ledger_wizard.py:0
|
|
1291
|
-
#, python-format
|
|
1292
1392
|
msgid "Posted"
|
|
1293
1393
|
msgstr ""
|
|
1294
1394
|
|
|
1295
1395
|
#. module: account_financial_report
|
|
1296
|
-
#.
|
|
1297
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1298
|
-
#: code:addons/account_financial_report/static/src/xml/report.xml:0
|
|
1299
|
-
#, python-format
|
|
1300
|
-
msgid "Print"
|
|
1301
|
-
msgstr ""
|
|
1302
|
-
|
|
1303
|
-
#. module: account_financial_report
|
|
1396
|
+
#. odoo-python
|
|
1304
1397
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1305
1398
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1306
|
-
#, python-format
|
|
1307
1399
|
msgid "Rec."
|
|
1308
1400
|
msgstr ""
|
|
1309
1401
|
|
|
@@ -1331,12 +1423,12 @@ msgid ""
|
|
|
1331
1423
|
msgstr ""
|
|
1332
1424
|
|
|
1333
1425
|
#. module: account_financial_report
|
|
1426
|
+
#. odoo-python
|
|
1334
1427
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1335
1428
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1336
1429
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1337
1430
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1338
1431
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1339
|
-
#, python-format
|
|
1340
1432
|
msgid "Ref - Label"
|
|
1341
1433
|
msgstr ""
|
|
1342
1434
|
|
|
@@ -1346,31 +1438,30 @@ msgid "Report Action"
|
|
|
1346
1438
|
msgstr ""
|
|
1347
1439
|
|
|
1348
1440
|
#. module: account_financial_report
|
|
1349
|
-
|
|
1441
|
+
#. odoo-python
|
|
1350
1442
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1351
1443
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1352
1444
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_lines_header
|
|
1353
1445
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_move_lines
|
|
1354
1446
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_lines_header
|
|
1355
|
-
#, python-format
|
|
1356
1447
|
msgid "Residual"
|
|
1357
1448
|
msgstr ""
|
|
1358
1449
|
|
|
1359
1450
|
#. module: account_financial_report
|
|
1451
|
+
#. odoo-python
|
|
1360
1452
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1361
1453
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1362
|
-
#, python-format
|
|
1363
1454
|
msgid "Sequence"
|
|
1364
1455
|
msgstr ""
|
|
1365
1456
|
|
|
1366
1457
|
#. module: account_financial_report
|
|
1458
|
+
#. odoo-python
|
|
1367
1459
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1368
1460
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1369
1461
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1370
1462
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1371
1463
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1372
1464
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1373
|
-
#, python-format
|
|
1374
1465
|
msgid "Show"
|
|
1375
1466
|
msgstr ""
|
|
1376
1467
|
|
|
@@ -1379,11 +1470,6 @@ msgstr ""
|
|
|
1379
1470
|
msgid "Show Analytic Account"
|
|
1380
1471
|
msgstr ""
|
|
1381
1472
|
|
|
1382
|
-
#. module: account_financial_report
|
|
1383
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_analytic_tags
|
|
1384
|
-
msgid "Show Analytic Tags"
|
|
1385
|
-
msgstr ""
|
|
1386
|
-
|
|
1387
1473
|
#. module: account_financial_report
|
|
1388
1474
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__with_auto_sequence
|
|
1389
1475
|
msgid "Show Auto Sequence"
|
|
@@ -1395,30 +1481,27 @@ msgid "Show Move Line Details"
|
|
|
1395
1481
|
msgstr ""
|
|
1396
1482
|
|
|
1397
1483
|
#. module: account_financial_report
|
|
1398
|
-
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__show_partner_details
|
|
1399
1484
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__show_partner_details
|
|
1400
1485
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_partner_details
|
|
1401
1486
|
msgid "Show Partner Details"
|
|
1402
1487
|
msgstr ""
|
|
1403
1488
|
|
|
1404
1489
|
#. module: account_financial_report
|
|
1405
|
-
|
|
1406
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1407
|
-
#, python-format
|
|
1408
|
-
msgid "Show analytic tags"
|
|
1409
|
-
msgstr ""
|
|
1410
|
-
|
|
1411
|
-
#. module: account_financial_report
|
|
1490
|
+
#. odoo-python
|
|
1412
1491
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1413
1492
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1414
1493
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1415
1494
|
#: model:ir.model.fields,field_description:account_financial_report.field_general_ledger_report_wizard__foreign_currency
|
|
1416
1495
|
#: model:ir.model.fields,field_description:account_financial_report.field_open_items_report_wizard__foreign_currency
|
|
1417
1496
|
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__foreign_currency
|
|
1418
|
-
#, python-format
|
|
1419
1497
|
msgid "Show foreign currency"
|
|
1420
1498
|
msgstr ""
|
|
1421
1499
|
|
|
1500
|
+
#. module: account_financial_report
|
|
1501
|
+
#: model:ir.model.fields,field_description:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1502
|
+
msgid "Show hierarchy"
|
|
1503
|
+
msgstr ""
|
|
1504
|
+
|
|
1422
1505
|
#. module: account_financial_report
|
|
1423
1506
|
#: model:ir.model.fields,field_description:account_financial_report.field_journal_ledger_report_wizard__sort_option
|
|
1424
1507
|
msgid "Sort entries by"
|
|
@@ -1442,9 +1525,14 @@ msgid "Starting account in a range"
|
|
|
1442
1525
|
msgstr ""
|
|
1443
1526
|
|
|
1444
1527
|
#. module: account_financial_report
|
|
1445
|
-
|
|
1528
|
+
#. odoo-python
|
|
1529
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1530
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1531
|
+
msgid "TOTAL"
|
|
1532
|
+
msgstr ""
|
|
1533
|
+
|
|
1534
|
+
#. module: account_financial_report
|
|
1446
1535
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1447
|
-
#, python-format
|
|
1448
1536
|
msgid "Tags"
|
|
1449
1537
|
msgstr ""
|
|
1450
1538
|
|
|
@@ -1458,6 +1546,7 @@ msgid "Target Moves"
|
|
|
1458
1546
|
msgstr ""
|
|
1459
1547
|
|
|
1460
1548
|
#. module: account_financial_report
|
|
1549
|
+
#. odoo-python
|
|
1461
1550
|
#: code:addons/account_financial_report/report/aged_partner_balance_xlsx.py:0
|
|
1462
1551
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1463
1552
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
@@ -1467,14 +1556,13 @@ msgstr ""
|
|
|
1467
1556
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1468
1557
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_open_items_filters
|
|
1469
1558
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_trial_balance_filters
|
|
1470
|
-
#, python-format
|
|
1471
1559
|
msgid "Target moves filter"
|
|
1472
1560
|
msgstr ""
|
|
1473
1561
|
|
|
1474
1562
|
#. module: account_financial_report
|
|
1563
|
+
#. odoo-python
|
|
1475
1564
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1476
1565
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_vat_report_base
|
|
1477
|
-
#, python-format
|
|
1478
1566
|
msgid "Tax"
|
|
1479
1567
|
msgstr ""
|
|
1480
1568
|
|
|
@@ -1485,75 +1573,102 @@ msgid "Tax Amount"
|
|
|
1485
1573
|
msgstr ""
|
|
1486
1574
|
|
|
1487
1575
|
#. module: account_financial_report
|
|
1576
|
+
#. odoo-python
|
|
1488
1577
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1489
|
-
#, python-format
|
|
1490
1578
|
msgid "Tax Balance"
|
|
1491
1579
|
msgstr ""
|
|
1492
1580
|
|
|
1493
1581
|
#. module: account_financial_report
|
|
1582
|
+
#. odoo-python
|
|
1494
1583
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1495
|
-
#, python-format
|
|
1496
1584
|
msgid "Tax Credit"
|
|
1497
1585
|
msgstr ""
|
|
1498
1586
|
|
|
1499
1587
|
#. module: account_financial_report
|
|
1588
|
+
#. odoo-python
|
|
1500
1589
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1501
|
-
#, python-format
|
|
1502
1590
|
msgid "Tax Debit"
|
|
1503
1591
|
msgstr ""
|
|
1504
1592
|
|
|
1505
1593
|
#. module: account_financial_report
|
|
1594
|
+
#. odoo-python
|
|
1506
1595
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1507
1596
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxgroups
|
|
1508
|
-
#, python-format
|
|
1509
1597
|
msgid "Tax Groups"
|
|
1510
1598
|
msgstr ""
|
|
1511
1599
|
|
|
1512
1600
|
#. module: account_financial_report
|
|
1601
|
+
#. odoo-python
|
|
1602
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1603
|
+
msgid "Tax Initial balance"
|
|
1604
|
+
msgstr ""
|
|
1605
|
+
|
|
1606
|
+
#. module: account_financial_report
|
|
1607
|
+
#. odoo-python
|
|
1513
1608
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1514
1609
|
#: model:ir.model.fields.selection,name:account_financial_report.selection__vat_report_wizard__based_on__taxtags
|
|
1515
|
-
#, python-format
|
|
1516
1610
|
msgid "Tax Tags"
|
|
1517
1611
|
msgstr ""
|
|
1518
1612
|
|
|
1519
1613
|
#. module: account_financial_report
|
|
1614
|
+
#. odoo-python
|
|
1615
|
+
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1616
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_ending_cumul
|
|
1617
|
+
msgid "Tax ending balance"
|
|
1618
|
+
msgstr ""
|
|
1619
|
+
|
|
1620
|
+
#. module: account_financial_report
|
|
1621
|
+
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1622
|
+
msgid "Tax initial balance"
|
|
1623
|
+
msgstr ""
|
|
1624
|
+
|
|
1625
|
+
#. module: account_financial_report
|
|
1626
|
+
#. odoo-python
|
|
1520
1627
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1521
1628
|
#: code:addons/account_financial_report/report/journal_ledger_xlsx.py:0
|
|
1629
|
+
#: model:ir.model.fields.selection,name:account_financial_report.selection__general_ledger_report_wizard__grouped_by__taxes
|
|
1522
1630
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_lines
|
|
1523
1631
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_journal_ledger_journal_table_header
|
|
1524
|
-
#, python-format
|
|
1525
1632
|
msgid "Taxes"
|
|
1526
1633
|
msgstr ""
|
|
1527
1634
|
|
|
1528
1635
|
#. module: account_financial_report
|
|
1636
|
+
#. odoo-python
|
|
1529
1637
|
#: code:addons/account_financial_report/wizard/general_ledger_wizard.py:0
|
|
1530
|
-
#, python-format
|
|
1531
1638
|
msgid ""
|
|
1532
1639
|
"The Company in the General Ledger Report Wizard and in Date Range must be "
|
|
1533
1640
|
"the same."
|
|
1534
1641
|
msgstr ""
|
|
1535
1642
|
|
|
1536
1643
|
#. module: account_financial_report
|
|
1644
|
+
#. odoo-python
|
|
1537
1645
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1538
|
-
#, python-format
|
|
1539
1646
|
msgid ""
|
|
1540
1647
|
"The Company in the Trial Balance Report Wizard and in Date Range must be the"
|
|
1541
1648
|
" same."
|
|
1542
1649
|
msgstr ""
|
|
1543
1650
|
|
|
1544
1651
|
#. module: account_financial_report
|
|
1652
|
+
#. odoo-python
|
|
1545
1653
|
#: code:addons/account_financial_report/wizard/vat_report_wizard.py:0
|
|
1546
|
-
#, python-format
|
|
1547
1654
|
msgid ""
|
|
1548
1655
|
"The Company in the Vat Report Wizard and in Date Range must be the same."
|
|
1549
1656
|
msgstr ""
|
|
1550
1657
|
|
|
1551
1658
|
#. module: account_financial_report
|
|
1659
|
+
#. odoo-python
|
|
1552
1660
|
#: code:addons/account_financial_report/wizard/trial_balance_wizard.py:0
|
|
1553
|
-
#, python-format
|
|
1554
1661
|
msgid "The hierarchy level to filter on must be greater than 0."
|
|
1555
1662
|
msgstr ""
|
|
1556
1663
|
|
|
1664
|
+
#. module: account_financial_report
|
|
1665
|
+
#. odoo-python
|
|
1666
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1667
|
+
msgid ""
|
|
1668
|
+
"There is a problem in the structure of the account groups. You may need to "
|
|
1669
|
+
"create some child group of %s."
|
|
1670
|
+
msgstr ""
|
|
1671
|
+
|
|
1557
1672
|
#. module: account_financial_report
|
|
1558
1673
|
#: model:ir.model.fields,help:account_financial_report.field_general_ledger_report_wizard__domain
|
|
1559
1674
|
msgid "This domain will be used to select specific domain for Journal Items"
|
|
@@ -1570,17 +1685,19 @@ msgid "To:"
|
|
|
1570
1685
|
msgstr ""
|
|
1571
1686
|
|
|
1572
1687
|
#. module: account_financial_report
|
|
1688
|
+
#. odoo-python
|
|
1689
|
+
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1573
1690
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_aged_partner_balance_account_ending_cumul
|
|
1574
1691
|
msgid "Total"
|
|
1575
1692
|
msgstr ""
|
|
1576
1693
|
|
|
1577
1694
|
#. module: account_financial_report
|
|
1695
|
+
#. odoo-python
|
|
1578
1696
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1579
1697
|
#: model:ir.actions.act_window,name:account_financial_report.action_trial_balance_wizard
|
|
1580
1698
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_html
|
|
1581
1699
|
#: model:ir.actions.report,name:account_financial_report.action_report_trial_balance_qweb
|
|
1582
1700
|
#: model:ir.ui.menu,name:account_financial_report.menu_trial_balance_wizard
|
|
1583
|
-
#, python-format
|
|
1584
1701
|
msgid "Trial Balance"
|
|
1585
1702
|
msgstr ""
|
|
1586
1703
|
|
|
@@ -1631,6 +1748,11 @@ msgid ""
|
|
|
1631
1748
|
"trial balance."
|
|
1632
1749
|
msgstr ""
|
|
1633
1750
|
|
|
1751
|
+
#. module: account_financial_report
|
|
1752
|
+
#: model:ir.model.fields,help:account_financial_report.field_trial_balance_report_wizard__show_hierarchy
|
|
1753
|
+
msgid "Use when your account groups are hierarchical"
|
|
1754
|
+
msgstr ""
|
|
1755
|
+
|
|
1634
1756
|
#. module: account_financial_report
|
|
1635
1757
|
#: model:ir.actions.act_window,name:account_financial_report.action_vat_report_wizard
|
|
1636
1758
|
#: model:ir.actions.report,name:account_financial_report.action_print_report_vat_report_html
|
|
@@ -1660,8 +1782,8 @@ msgid "VAT Report XLSX"
|
|
|
1660
1782
|
msgstr ""
|
|
1661
1783
|
|
|
1662
1784
|
#. module: account_financial_report
|
|
1785
|
+
#. odoo-python
|
|
1663
1786
|
#: code:addons/account_financial_report/report/vat_report_xlsx.py:0
|
|
1664
|
-
#, python-format
|
|
1665
1787
|
msgid "Vat Report"
|
|
1666
1788
|
msgstr ""
|
|
1667
1789
|
|
|
@@ -1698,24 +1820,27 @@ msgid "With Account Name"
|
|
|
1698
1820
|
msgstr ""
|
|
1699
1821
|
|
|
1700
1822
|
#. module: account_financial_report
|
|
1701
|
-
|
|
1702
|
-
#: code:addons/account_financial_report/report/
|
|
1823
|
+
#. odoo-python
|
|
1824
|
+
#: code:addons/account_financial_report/report/trial_balance.py:0
|
|
1825
|
+
msgid "Without analytic account"
|
|
1826
|
+
msgstr ""
|
|
1827
|
+
|
|
1828
|
+
#. module: account_financial_report
|
|
1829
|
+
#. odoo-python
|
|
1703
1830
|
#: code:addons/account_financial_report/report/general_ledger_xlsx.py:0
|
|
1704
1831
|
#: code:addons/account_financial_report/report/open_items_xlsx.py:0
|
|
1705
1832
|
#: code:addons/account_financial_report/report/trial_balance_xlsx.py:0
|
|
1706
1833
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.report_general_ledger_filters
|
|
1707
|
-
#, python-format
|
|
1708
1834
|
msgid "Yes"
|
|
1709
1835
|
msgstr ""
|
|
1710
1836
|
|
|
1711
1837
|
#. module: account_financial_report
|
|
1838
|
+
#. odoo-python
|
|
1712
1839
|
#: code:addons/account_financial_report/report/general_ledger.py:0
|
|
1713
|
-
#, python-format
|
|
1714
1840
|
msgid "future"
|
|
1715
1841
|
msgstr ""
|
|
1716
1842
|
|
|
1717
1843
|
#. module: account_financial_report
|
|
1718
|
-
#: model_terms:ir.ui.view,arch_db:account_financial_report.aged_partner_balance_wizard
|
|
1719
1844
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.general_ledger_wizard
|
|
1720
1845
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.journal_ledger_wizard
|
|
1721
1846
|
#: model_terms:ir.ui.view,arch_db:account_financial_report.open_items_wizard
|