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