odoo-addon-openupgrade-scripts 18.0.1.0.0.79__py3-none-any.whl → 18.0.1.0.0.98__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/openupgrade_scripts/apriori.py +1 -1
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/post-migration.py +1 -1
- odoo/addons/openupgrade_scripts/scripts/base_vat/18.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/hr/18.0.1.1/post-migration.py +10 -0
- odoo/addons/openupgrade_scripts/scripts/hr/18.0.1.1/pre-migration.py +52 -0
- odoo/addons/openupgrade_scripts/scripts/hr/18.0.1.1/upgrade_analysis_work.txt +76 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_es/18.0.5.4/upgrade_analysis_work.txt +76 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py +687 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/upgrade_analysis_work.txt +384 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/post-migration.py +26 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/pre-migration.py +24 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_fr_account/18.0.2.2/upgrade_analysis_work.txt +3185 -0
- odoo/addons/openupgrade_scripts/scripts/purchase/18.0.1.2/post-migration.py +28 -0
- odoo/addons/openupgrade_scripts/scripts/purchase/18.0.1.2/pre-migration.py +24 -0
- odoo/addons/openupgrade_scripts/scripts/purchase/18.0.1.2/upgrade_analysis_work.txt +51 -0
- odoo/addons/openupgrade_scripts/scripts/sale/18.0.1.2/end-migration.py +49 -0
- odoo/addons/openupgrade_scripts/scripts/sale/18.0.1.2/post-migration.py +21 -0
- odoo/addons/openupgrade_scripts/scripts/sale/18.0.1.2/pre-migration.py +34 -0
- odoo/addons/openupgrade_scripts/scripts/sale/18.0.1.2/upgrade_analysis_work.txt +85 -0
- odoo/addons/openupgrade_scripts/scripts/sale_crm/18.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/sale_stock/18.0.1.0/post-migration.py +12 -0
- odoo/addons/openupgrade_scripts/scripts/sale_stock/18.0.1.0/pre-migration.py +62 -0
- odoo/addons/openupgrade_scripts/scripts/sale_stock/18.0.1.0/upgrade_analysis_work.txt +18 -0
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/post-migration.py +99 -0
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/pre-migration.py +81 -0
- odoo/addons/openupgrade_scripts/scripts/stock/18.0.1.1/upgrade_analysis_work.txt +139 -0
- odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/end-migration.py +23 -0
- odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/post-migration.py +36 -0
- odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/pre-migration.py +22 -0
- odoo/addons/openupgrade_scripts/scripts/stock_account/18.0.1.1/upgrade_analysis_work.txt +34 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.79.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.79.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info}/RECORD +34 -6
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.79.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.79.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.98.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,687 @@
|
|
1
|
+
# Copyright 2025 Le Filament (https://le-filament.com)
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
_xmlids_renames = [
|
7
|
+
(
|
8
|
+
"l10n_fr.account_fr_tag_charges_sociales",
|
9
|
+
"l10n_fr_account.account_fr_tag_charges_sociales",
|
10
|
+
),
|
11
|
+
("l10n_fr.account_fr_tag_salaires", "l10n_fr_account.account_fr_tag_salaires"),
|
12
|
+
("l10n_fr.tax_report", "l10n_fr_account.tax_report"),
|
13
|
+
("l10n_fr.tax_report_adjustment", "l10n_fr_account.tax_report_adjustment"),
|
14
|
+
("l10n_fr.tax_report_balance", "l10n_fr_account.tax_report_balance"),
|
15
|
+
(
|
16
|
+
"l10n_fr.tax_report_08_base_adjustment",
|
17
|
+
"l10n_fr_account.tax_report_08_base_adjustment",
|
18
|
+
),
|
19
|
+
(
|
20
|
+
"l10n_fr.tax_report_08_base_balance_from_tags",
|
21
|
+
"l10n_fr_account.tax_report_08_base_balance_from_tags",
|
22
|
+
),
|
23
|
+
("l10n_fr.tax_report_08_base_tag", "l10n_fr_account.tax_report_08_base_tag"),
|
24
|
+
("l10n_fr.tax_report_08_taxe_tag", "l10n_fr_account.tax_report_08_taxe_tag"),
|
25
|
+
(
|
26
|
+
"l10n_fr.tax_report_08_taxe_tag_no_rounding",
|
27
|
+
"l10n_fr_account.tax_report_08_taxe_tag_no_rounding",
|
28
|
+
),
|
29
|
+
(
|
30
|
+
"l10n_fr.tax_report_09_base_adjustment",
|
31
|
+
"l10n_fr_account.tax_report_09_base_adjustment",
|
32
|
+
),
|
33
|
+
(
|
34
|
+
"l10n_fr.tax_report_09_base_balance_from_tags",
|
35
|
+
"l10n_fr_account.tax_report_09_base_balance_from_tags",
|
36
|
+
),
|
37
|
+
("l10n_fr.tax_report_09_base_tag", "l10n_fr_account.tax_report_09_base_tag"),
|
38
|
+
("l10n_fr.tax_report_09_taxe_tag", "l10n_fr_account.tax_report_09_taxe_tag"),
|
39
|
+
(
|
40
|
+
"l10n_fr.tax_report_09_taxe_tag_no_rounding",
|
41
|
+
"l10n_fr_account.tax_report_09_taxe_tag_no_rounding",
|
42
|
+
),
|
43
|
+
(
|
44
|
+
"l10n_fr.tax_report_10_base_adjustment",
|
45
|
+
"l10n_fr_account.tax_report_10_base_adjustment",
|
46
|
+
),
|
47
|
+
(
|
48
|
+
"l10n_fr.tax_report_10_base_balance_from_tags",
|
49
|
+
"l10n_fr_account.tax_report_10_base_balance_from_tags",
|
50
|
+
),
|
51
|
+
("l10n_fr.tax_report_10_base_tag", "l10n_fr_account.tax_report_10_base_tag"),
|
52
|
+
("l10n_fr.tax_report_10_taxe_tag", "l10n_fr_account.tax_report_10_taxe_tag"),
|
53
|
+
(
|
54
|
+
"l10n_fr.tax_report_10_taxe_tag_no_rounding",
|
55
|
+
"l10n_fr_account.tax_report_10_taxe_tag_no_rounding",
|
56
|
+
),
|
57
|
+
(
|
58
|
+
"l10n_fr.tax_report_11_base_adjustment",
|
59
|
+
"l10n_fr_account.tax_report_11_base_adjustment",
|
60
|
+
),
|
61
|
+
(
|
62
|
+
"l10n_fr.tax_report_11_base_balance_from_tags",
|
63
|
+
"l10n_fr_account.tax_report_11_base_balance_from_tags",
|
64
|
+
),
|
65
|
+
("l10n_fr.tax_report_11_base_tag", "l10n_fr_account.tax_report_11_base_tag"),
|
66
|
+
("l10n_fr.tax_report_11_taxe_tag", "l10n_fr_account.tax_report_11_taxe_tag"),
|
67
|
+
(
|
68
|
+
"l10n_fr.tax_report_11_taxe_tag_no_rounding",
|
69
|
+
"l10n_fr_account.tax_report_11_taxe_tag_no_rounding",
|
70
|
+
),
|
71
|
+
(
|
72
|
+
"l10n_fr.tax_report_13_base_adjustment",
|
73
|
+
"l10n_fr_account.tax_report_13_base_adjustment",
|
74
|
+
),
|
75
|
+
(
|
76
|
+
"l10n_fr.tax_report_13_base_balance_from_tags",
|
77
|
+
"l10n_fr_account.tax_report_13_base_balance_from_tags",
|
78
|
+
),
|
79
|
+
("l10n_fr.tax_report_13_base_tag", "l10n_fr_account.tax_report_13_base_tag"),
|
80
|
+
("l10n_fr.tax_report_13_taxe_tag", "l10n_fr_account.tax_report_13_taxe_tag"),
|
81
|
+
(
|
82
|
+
"l10n_fr.tax_report_14_base_adjustment",
|
83
|
+
"l10n_fr_account.tax_report_14_base_adjustment",
|
84
|
+
),
|
85
|
+
(
|
86
|
+
"l10n_fr.tax_report_14_base_balance_from_tags",
|
87
|
+
"l10n_fr_account.tax_report_14_base_balance_from_tags",
|
88
|
+
),
|
89
|
+
("l10n_fr.tax_report_14_base_tag", "l10n_fr_account.tax_report_14_base_tag"),
|
90
|
+
("l10n_fr.tax_report_14_taxe_tag", "l10n_fr_account.tax_report_14_taxe_tag"),
|
91
|
+
("l10n_fr.tax_report_15_1_tag", "l10n_fr_account.tax_report_15_1_tag"),
|
92
|
+
("l10n_fr.tax_report_15_2_tag", "l10n_fr_account.tax_report_15_2_tag"),
|
93
|
+
("l10n_fr.tax_report_15_tag", "l10n_fr_account.tax_report_15_tag"),
|
94
|
+
("l10n_fr.tax_report_16_formula", "l10n_fr_account.tax_report_16_formula"),
|
95
|
+
("l10n_fr.tax_report_17_tag", "l10n_fr_account.tax_report_17_tag"),
|
96
|
+
("l10n_fr.tax_report_18_tag", "l10n_fr_account.tax_report_18_tag"),
|
97
|
+
("l10n_fr.tax_report_19_tag", "l10n_fr_account.tax_report_19_tag"),
|
98
|
+
("l10n_fr.tax_report_20_tag", "l10n_fr_account.tax_report_20_tag"),
|
99
|
+
("l10n_fr.tax_report_21_tag", "l10n_fr_account.tax_report_21_tag"),
|
100
|
+
("l10n_fr.tax_report_22A_tag", "l10n_fr_account.tax_report_22A_tag"),
|
101
|
+
(
|
102
|
+
"l10n_fr.tax_report_22_applied_carryover",
|
103
|
+
"l10n_fr_account.tax_report_22_applied_carryover",
|
104
|
+
),
|
105
|
+
("l10n_fr.tax_report_22_balance", "l10n_fr_account.tax_report_22_balance"),
|
106
|
+
("l10n_fr.tax_report_22_tag", "l10n_fr_account.tax_report_22_tag"),
|
107
|
+
("l10n_fr.tax_report_23_formula", "l10n_fr_account.tax_report_23_formula"),
|
108
|
+
("l10n_fr.tax_report_24_tag", "l10n_fr_account.tax_report_24_tag"),
|
109
|
+
("l10n_fr.tax_report_25_formula", "l10n_fr_account.tax_report_25_formula"),
|
110
|
+
("l10n_fr.tax_report_27_carryover", "l10n_fr_account.tax_report_27_carryover"),
|
111
|
+
("l10n_fr.tax_report_27_formula", "l10n_fr_account.tax_report_27_formula"),
|
112
|
+
(
|
113
|
+
"l10n_fr.tax_report_27_formula_temp",
|
114
|
+
"l10n_fr_account.tax_report_27_formula_temp",
|
115
|
+
),
|
116
|
+
("l10n_fr.tax_report_28_formula", "l10n_fr_account.tax_report_28_formula"),
|
117
|
+
("l10n_fr.tax_report_29_tag", "l10n_fr_account.tax_report_29_tag"),
|
118
|
+
("l10n_fr.tax_report_2C_tag", "l10n_fr_account.tax_report_2C_tag"),
|
119
|
+
("l10n_fr.tax_report_2E_tag", "l10n_fr_account.tax_report_2E_tag"),
|
120
|
+
("l10n_fr.tax_report_32_formula", "l10n_fr_account.tax_report_32_formula"),
|
121
|
+
("l10n_fr.tax_report_5B_tag", "l10n_fr_account.tax_report_5B_tag"),
|
122
|
+
(
|
123
|
+
"l10n_fr.tax_report_9B_base_adjustment",
|
124
|
+
"l10n_fr_account.tax_report_9B_base_adjustment",
|
125
|
+
),
|
126
|
+
(
|
127
|
+
"l10n_fr.tax_report_9B_base_balance_from_tags",
|
128
|
+
"l10n_fr_account.tax_report_9B_base_balance_from_tags",
|
129
|
+
),
|
130
|
+
("l10n_fr.tax_report_9B_base_tag", "l10n_fr_account.tax_report_9B_base_tag"),
|
131
|
+
("l10n_fr.tax_report_9B_taxe_tag", "l10n_fr_account.tax_report_9B_taxe_tag"),
|
132
|
+
(
|
133
|
+
"l10n_fr.tax_report_9B_taxe_tag_no_rounding",
|
134
|
+
"l10n_fr_account.tax_report_9B_taxe_tag_no_rounding",
|
135
|
+
),
|
136
|
+
("l10n_fr.tax_report_A1_adjustment", "l10n_fr_account.tax_report_A1_adjustment"),
|
137
|
+
(
|
138
|
+
"l10n_fr.tax_report_A1_balance_from_tags",
|
139
|
+
"l10n_fr_account.tax_report_A1_balance_from_tags",
|
140
|
+
),
|
141
|
+
("l10n_fr.tax_report_A1_tag", "l10n_fr_account.tax_report_A1_tag"),
|
142
|
+
("l10n_fr.tax_report_A2_adjustment", "l10n_fr_account.tax_report_A2_adjustment"),
|
143
|
+
(
|
144
|
+
"l10n_fr.tax_report_A2_balance_from_tags",
|
145
|
+
"l10n_fr_account.tax_report_A2_balance_from_tags",
|
146
|
+
),
|
147
|
+
("l10n_fr.tax_report_A2_tag", "l10n_fr_account.tax_report_A2_tag"),
|
148
|
+
("l10n_fr.tax_report_A3_adjustment", "l10n_fr_account.tax_report_A3_adjustment"),
|
149
|
+
(
|
150
|
+
"l10n_fr.tax_report_A3_balance_from_tags",
|
151
|
+
"l10n_fr_account.tax_report_A3_balance_from_tags",
|
152
|
+
),
|
153
|
+
("l10n_fr.tax_report_A3_tag", "l10n_fr_account.tax_report_A3_tag"),
|
154
|
+
("l10n_fr.tax_report_A4_adjustment", "l10n_fr_account.tax_report_A4_adjustment"),
|
155
|
+
(
|
156
|
+
"l10n_fr.tax_report_A4_balance_from_tags",
|
157
|
+
"l10n_fr_account.tax_report_A4_balance_from_tags",
|
158
|
+
),
|
159
|
+
("l10n_fr.tax_report_A4_tag", "l10n_fr_account.tax_report_A4_tag"),
|
160
|
+
("l10n_fr.tax_report_A5_adjustment", "l10n_fr_account.tax_report_A5_adjustment"),
|
161
|
+
(
|
162
|
+
"l10n_fr.tax_report_A5_balance_from_tags",
|
163
|
+
"l10n_fr_account.tax_report_A5_balance_from_tags",
|
164
|
+
),
|
165
|
+
("l10n_fr.tax_report_A5_tag", "l10n_fr_account.tax_report_A5_tag"),
|
166
|
+
("l10n_fr.tax_report_AA_tag", "l10n_fr_account.tax_report_AA_tag"),
|
167
|
+
("l10n_fr.tax_report_B1_adjustment", "l10n_fr_account.tax_report_B1_adjustment"),
|
168
|
+
(
|
169
|
+
"l10n_fr.tax_report_B1_balance_from_tags",
|
170
|
+
"l10n_fr_account.tax_report_B1_balance_from_tags",
|
171
|
+
),
|
172
|
+
("l10n_fr.tax_report_B1_tag", "l10n_fr_account.tax_report_B1_tag"),
|
173
|
+
("l10n_fr.tax_report_B2_adjustment", "l10n_fr_account.tax_report_B2_adjustment"),
|
174
|
+
(
|
175
|
+
"l10n_fr.tax_report_B2_balance_from_tags",
|
176
|
+
"l10n_fr_account.tax_report_B2_balance_from_tags",
|
177
|
+
),
|
178
|
+
("l10n_fr.tax_report_B2_tag", "l10n_fr_account.tax_report_B2_tag"),
|
179
|
+
("l10n_fr.tax_report_B3_adjustment", "l10n_fr_account.tax_report_B3_adjustment"),
|
180
|
+
(
|
181
|
+
"l10n_fr.tax_report_B3_balance_from_tags",
|
182
|
+
"l10n_fr_account.tax_report_B3_balance_from_tags",
|
183
|
+
),
|
184
|
+
("l10n_fr.tax_report_B3_tag", "l10n_fr_account.tax_report_B3_tag"),
|
185
|
+
("l10n_fr.tax_report_B4_adjustment", "l10n_fr_account.tax_report_B4_adjustment"),
|
186
|
+
(
|
187
|
+
"l10n_fr.tax_report_B4_balance_from_tags",
|
188
|
+
"l10n_fr_account.tax_report_B4_balance_from_tags",
|
189
|
+
),
|
190
|
+
("l10n_fr.tax_report_B4_tag", "l10n_fr_account.tax_report_B4_tag"),
|
191
|
+
("l10n_fr.tax_report_B5_adjustment", "l10n_fr_account.tax_report_B5_adjustment"),
|
192
|
+
(
|
193
|
+
"l10n_fr.tax_report_B5_balance_from_tags",
|
194
|
+
"l10n_fr_account.tax_report_B5_balance_from_tags",
|
195
|
+
),
|
196
|
+
("l10n_fr.tax_report_B5_tag", "l10n_fr_account.tax_report_B5_tag"),
|
197
|
+
("l10n_fr.tax_report_E1_adjustment", "l10n_fr_account.tax_report_E1_adjustment"),
|
198
|
+
(
|
199
|
+
"l10n_fr.tax_report_E1_balance_from_tags",
|
200
|
+
"l10n_fr_account.tax_report_E1_balance_from_tags",
|
201
|
+
),
|
202
|
+
("l10n_fr.tax_report_E1_tag", "l10n_fr_account.tax_report_E1_tag"),
|
203
|
+
("l10n_fr.tax_report_E2_adjustment", "l10n_fr_account.tax_report_E2_adjustment"),
|
204
|
+
(
|
205
|
+
"l10n_fr.tax_report_E2_balance_from_tags",
|
206
|
+
"l10n_fr_account.tax_report_E2_balance_from_tags",
|
207
|
+
),
|
208
|
+
("l10n_fr.tax_report_E2_tag", "l10n_fr_account.tax_report_E2_tag"),
|
209
|
+
("l10n_fr.tax_report_E3_adjustment", "l10n_fr_account.tax_report_E3_adjustment"),
|
210
|
+
(
|
211
|
+
"l10n_fr.tax_report_E3_balance_from_tags",
|
212
|
+
"l10n_fr_account.tax_report_E3_balance_from_tags",
|
213
|
+
),
|
214
|
+
("l10n_fr.tax_report_E3_tag", "l10n_fr_account.tax_report_E3_tag"),
|
215
|
+
("l10n_fr.tax_report_E4_adjustment", "l10n_fr_account.tax_report_E4_adjustment"),
|
216
|
+
(
|
217
|
+
"l10n_fr.tax_report_E4_balance_from_tags",
|
218
|
+
"l10n_fr_account.tax_report_E4_balance_from_tags",
|
219
|
+
),
|
220
|
+
("l10n_fr.tax_report_E4_tag", "l10n_fr_account.tax_report_E4_tag"),
|
221
|
+
("l10n_fr.tax_report_E5_adjustment", "l10n_fr_account.tax_report_E5_adjustment"),
|
222
|
+
(
|
223
|
+
"l10n_fr.tax_report_E5_balance_from_tags",
|
224
|
+
"l10n_fr_account.tax_report_E5_balance_from_tags",
|
225
|
+
),
|
226
|
+
("l10n_fr.tax_report_E5_tag", "l10n_fr_account.tax_report_E5_tag"),
|
227
|
+
("l10n_fr.tax_report_E6_adjustment", "l10n_fr_account.tax_report_E6_adjustment"),
|
228
|
+
(
|
229
|
+
"l10n_fr.tax_report_E6_balance_from_tags",
|
230
|
+
"l10n_fr_account.tax_report_E6_balance_from_tags",
|
231
|
+
),
|
232
|
+
("l10n_fr.tax_report_E6_tag", "l10n_fr_account.tax_report_E6_tag"),
|
233
|
+
("l10n_fr.tax_report_F1_adjustment", "l10n_fr_account.tax_report_F1_adjustment"),
|
234
|
+
(
|
235
|
+
"l10n_fr.tax_report_F1_balance_from_tags",
|
236
|
+
"l10n_fr_account.tax_report_F1_balance_from_tags",
|
237
|
+
),
|
238
|
+
("l10n_fr.tax_report_F1_tag", "l10n_fr_account.tax_report_F1_tag"),
|
239
|
+
("l10n_fr.tax_report_F2_adjustment", "l10n_fr_account.tax_report_F2_adjustment"),
|
240
|
+
(
|
241
|
+
"l10n_fr.tax_report_F2_balance_from_tags",
|
242
|
+
"l10n_fr_account.tax_report_F2_balance_from_tags",
|
243
|
+
),
|
244
|
+
("l10n_fr.tax_report_F2_tag", "l10n_fr_account.tax_report_F2_tag"),
|
245
|
+
("l10n_fr.tax_report_F3_adjustment", "l10n_fr_account.tax_report_F3_adjustment"),
|
246
|
+
(
|
247
|
+
"l10n_fr.tax_report_F3_balance_from_tags",
|
248
|
+
"l10n_fr_account.tax_report_F3_balance_from_tags",
|
249
|
+
),
|
250
|
+
("l10n_fr.tax_report_F3_tag", "l10n_fr_account.tax_report_F3_tag"),
|
251
|
+
("l10n_fr.tax_report_F4_adjustment", "l10n_fr_account.tax_report_F4_adjustment"),
|
252
|
+
(
|
253
|
+
"l10n_fr.tax_report_F4_balance_from_tags",
|
254
|
+
"l10n_fr_account.tax_report_F4_balance_from_tags",
|
255
|
+
),
|
256
|
+
("l10n_fr.tax_report_F4_tag", "l10n_fr_account.tax_report_F4_tag"),
|
257
|
+
("l10n_fr.tax_report_F5_adjustment", "l10n_fr_account.tax_report_F5_adjustment"),
|
258
|
+
(
|
259
|
+
"l10n_fr.tax_report_F5_balance_from_tags",
|
260
|
+
"l10n_fr_account.tax_report_F5_balance_from_tags",
|
261
|
+
),
|
262
|
+
("l10n_fr.tax_report_F5_tag", "l10n_fr_account.tax_report_F5_tag"),
|
263
|
+
("l10n_fr.tax_report_F6_adjustment", "l10n_fr_account.tax_report_F6_adjustment"),
|
264
|
+
(
|
265
|
+
"l10n_fr.tax_report_F6_balance_from_tags",
|
266
|
+
"l10n_fr_account.tax_report_F6_balance_from_tags",
|
267
|
+
),
|
268
|
+
("l10n_fr.tax_report_F6_tag", "l10n_fr_account.tax_report_F6_tag"),
|
269
|
+
("l10n_fr.tax_report_F7_adjustment", "l10n_fr_account.tax_report_F7_adjustment"),
|
270
|
+
(
|
271
|
+
"l10n_fr.tax_report_F7_balance_from_tags",
|
272
|
+
"l10n_fr_account.tax_report_F7_balance_from_tags",
|
273
|
+
),
|
274
|
+
("l10n_fr.tax_report_F7_tag", "l10n_fr_account.tax_report_F7_tag"),
|
275
|
+
("l10n_fr.tax_report_F8_adjustment", "l10n_fr_account.tax_report_F8_adjustment"),
|
276
|
+
(
|
277
|
+
"l10n_fr.tax_report_F8_balance_from_tags",
|
278
|
+
"l10n_fr_account.tax_report_F8_balance_from_tags",
|
279
|
+
),
|
280
|
+
("l10n_fr.tax_report_F8_tag", "l10n_fr_account.tax_report_F8_tag"),
|
281
|
+
("l10n_fr.tax_report_F9_adjustment", "l10n_fr_account.tax_report_F9_adjustment"),
|
282
|
+
(
|
283
|
+
"l10n_fr.tax_report_F9_balance_from_tags",
|
284
|
+
"l10n_fr_account.tax_report_F9_balance_from_tags",
|
285
|
+
),
|
286
|
+
("l10n_fr.tax_report_F9_tag", "l10n_fr_account.tax_report_F9_tag"),
|
287
|
+
(
|
288
|
+
"l10n_fr.tax_report_I1_base_adjustment",
|
289
|
+
"l10n_fr_account.tax_report_I1_base_adjustment",
|
290
|
+
),
|
291
|
+
(
|
292
|
+
"l10n_fr.tax_report_I1_base_balance_from_tags",
|
293
|
+
"l10n_fr_account.tax_report_I1_base_balance_from_tags",
|
294
|
+
),
|
295
|
+
("l10n_fr.tax_report_I1_base_tag", "l10n_fr_account.tax_report_I1_base_tag"),
|
296
|
+
("l10n_fr.tax_report_I1_taxe_tag", "l10n_fr_account.tax_report_I1_taxe_tag"),
|
297
|
+
(
|
298
|
+
"l10n_fr.tax_report_I1_taxe_tag_no_rounding",
|
299
|
+
"l10n_fr_account.tax_report_I1_taxe_tag_no_rounding",
|
300
|
+
),
|
301
|
+
(
|
302
|
+
"l10n_fr.tax_report_I2_base_adjustment",
|
303
|
+
"l10n_fr_account.tax_report_I2_base_adjustment",
|
304
|
+
),
|
305
|
+
(
|
306
|
+
"l10n_fr.tax_report_I2_base_balance_from_tags",
|
307
|
+
"l10n_fr_account.tax_report_I2_base_balance_from_tags",
|
308
|
+
),
|
309
|
+
("l10n_fr.tax_report_I2_base_tag", "l10n_fr_account.tax_report_I2_base_tag"),
|
310
|
+
("l10n_fr.tax_report_I2_taxe_tag", "l10n_fr_account.tax_report_I2_taxe_tag"),
|
311
|
+
(
|
312
|
+
"l10n_fr.tax_report_I2_taxe_tag_no_rounding",
|
313
|
+
"l10n_fr_account.tax_report_I2_taxe_tag_no_rounding",
|
314
|
+
),
|
315
|
+
(
|
316
|
+
"l10n_fr.tax_report_I3_base_adjustment",
|
317
|
+
"l10n_fr_account.tax_report_I3_base_adjustment",
|
318
|
+
),
|
319
|
+
(
|
320
|
+
"l10n_fr.tax_report_I3_base_balance_from_tags",
|
321
|
+
"l10n_fr_account.tax_report_I3_base_balance_from_tags",
|
322
|
+
),
|
323
|
+
("l10n_fr.tax_report_I3_base_tag", "l10n_fr_account.tax_report_I3_base_tag"),
|
324
|
+
("l10n_fr.tax_report_I3_taxe_tag", "l10n_fr_account.tax_report_I3_taxe_tag"),
|
325
|
+
(
|
326
|
+
"l10n_fr.tax_report_I3_taxe_tag_no_rounding",
|
327
|
+
"l10n_fr_account.tax_report_I3_taxe_tag_no_rounding",
|
328
|
+
),
|
329
|
+
(
|
330
|
+
"l10n_fr.tax_report_I4_base_adjustment",
|
331
|
+
"l10n_fr_account.tax_report_I4_base_adjustment",
|
332
|
+
),
|
333
|
+
(
|
334
|
+
"l10n_fr.tax_report_I4_base_balance_from_tags",
|
335
|
+
"l10n_fr_account.tax_report_I4_base_balance_from_tags",
|
336
|
+
),
|
337
|
+
("l10n_fr.tax_report_I4_base_tag", "l10n_fr_account.tax_report_I4_base_tag"),
|
338
|
+
("l10n_fr.tax_report_I4_taxe_tag", "l10n_fr_account.tax_report_I4_taxe_tag"),
|
339
|
+
(
|
340
|
+
"l10n_fr.tax_report_I4_taxe_tag_no_rounding",
|
341
|
+
"l10n_fr_account.tax_report_I4_taxe_tag_no_rounding",
|
342
|
+
),
|
343
|
+
(
|
344
|
+
"l10n_fr.tax_report_I5_base_adjustment",
|
345
|
+
"l10n_fr_account.tax_report_I5_base_adjustment",
|
346
|
+
),
|
347
|
+
(
|
348
|
+
"l10n_fr.tax_report_I5_base_balance_from_tags",
|
349
|
+
"l10n_fr_account.tax_report_I5_base_balance_from_tags",
|
350
|
+
),
|
351
|
+
("l10n_fr.tax_report_I5_base_tag", "l10n_fr_account.tax_report_I5_base_tag"),
|
352
|
+
("l10n_fr.tax_report_I5_taxe_tag", "l10n_fr_account.tax_report_I5_taxe_tag"),
|
353
|
+
(
|
354
|
+
"l10n_fr.tax_report_I5_taxe_tag_no_rounding",
|
355
|
+
"l10n_fr_account.tax_report_I5_taxe_tag_no_rounding",
|
356
|
+
),
|
357
|
+
(
|
358
|
+
"l10n_fr.tax_report_I6_base_adjustment",
|
359
|
+
"l10n_fr_account.tax_report_I6_base_adjustment",
|
360
|
+
),
|
361
|
+
(
|
362
|
+
"l10n_fr.tax_report_I6_base_balance_from_tags",
|
363
|
+
"l10n_fr_account.tax_report_I6_base_balance_from_tags",
|
364
|
+
),
|
365
|
+
("l10n_fr.tax_report_I6_base_tag", "l10n_fr_account.tax_report_I6_base_tag"),
|
366
|
+
("l10n_fr.tax_report_I6_taxe_tag", "l10n_fr_account.tax_report_I6_taxe_tag"),
|
367
|
+
(
|
368
|
+
"l10n_fr.tax_report_I6_taxe_tag_no_rounding",
|
369
|
+
"l10n_fr_account.tax_report_I6_taxe_tag_no_rounding",
|
370
|
+
),
|
371
|
+
(
|
372
|
+
"l10n_fr.tax_report_P1_base_adjustment",
|
373
|
+
"l10n_fr_account.tax_report_P1_base_adjustment",
|
374
|
+
),
|
375
|
+
(
|
376
|
+
"l10n_fr.tax_report_P1_base_balance_from_tags",
|
377
|
+
"l10n_fr_account.tax_report_P1_base_balance_from_tags",
|
378
|
+
),
|
379
|
+
("l10n_fr.tax_report_P1_base_tag", "l10n_fr_account.tax_report_P1_base_tag"),
|
380
|
+
("l10n_fr.tax_report_P1_taxe_tag", "l10n_fr_account.tax_report_P1_taxe_tag"),
|
381
|
+
(
|
382
|
+
"l10n_fr.tax_report_P1_taxe_tag_no_rounding",
|
383
|
+
"l10n_fr_account.tax_report_P1_taxe_tag_no_rounding",
|
384
|
+
),
|
385
|
+
(
|
386
|
+
"l10n_fr.tax_report_P2_base_adjustment",
|
387
|
+
"l10n_fr_account.tax_report_P2_base_adjustment",
|
388
|
+
),
|
389
|
+
(
|
390
|
+
"l10n_fr.tax_report_P2_base_balance_from_tags",
|
391
|
+
"l10n_fr_account.tax_report_P2_base_balance_from_tags",
|
392
|
+
),
|
393
|
+
("l10n_fr.tax_report_P2_base_tag", "l10n_fr_account.tax_report_P2_base_tag"),
|
394
|
+
("l10n_fr.tax_report_P2_taxe_tag", "l10n_fr_account.tax_report_P2_taxe_tag"),
|
395
|
+
(
|
396
|
+
"l10n_fr.tax_report_P2_taxe_tag_no_rounding",
|
397
|
+
"l10n_fr_account.tax_report_P2_taxe_tag_no_rounding",
|
398
|
+
),
|
399
|
+
(
|
400
|
+
"l10n_fr.tax_report_T1_base_adjustment",
|
401
|
+
"l10n_fr_account.tax_report_T1_base_adjustment",
|
402
|
+
),
|
403
|
+
(
|
404
|
+
"l10n_fr.tax_report_T1_base_balance_from_tags",
|
405
|
+
"l10n_fr_account.tax_report_T1_base_balance_from_tags",
|
406
|
+
),
|
407
|
+
("l10n_fr.tax_report_T1_base_tag", "l10n_fr_account.tax_report_T1_base_tag"),
|
408
|
+
("l10n_fr.tax_report_T1_taxe_tag", "l10n_fr_account.tax_report_T1_taxe_tag"),
|
409
|
+
(
|
410
|
+
"l10n_fr.tax_report_T1_taxe_tag_no_rounding",
|
411
|
+
"l10n_fr_account.tax_report_T1_taxe_tag_no_rounding",
|
412
|
+
),
|
413
|
+
(
|
414
|
+
"l10n_fr.tax_report_T2_base_adjustment",
|
415
|
+
"l10n_fr_account.tax_report_T2_base_adjustment",
|
416
|
+
),
|
417
|
+
(
|
418
|
+
"l10n_fr.tax_report_T2_base_balance_from_tags",
|
419
|
+
"l10n_fr_account.tax_report_T2_base_balance_from_tags",
|
420
|
+
),
|
421
|
+
("l10n_fr.tax_report_T2_base_tag", "l10n_fr_account.tax_report_T2_base_tag"),
|
422
|
+
("l10n_fr.tax_report_T2_taxe_tag", "l10n_fr_account.tax_report_T2_taxe_tag"),
|
423
|
+
(
|
424
|
+
"l10n_fr.tax_report_T2_taxe_tag_no_rounding",
|
425
|
+
"l10n_fr_account.tax_report_T2_taxe_tag_no_rounding",
|
426
|
+
),
|
427
|
+
(
|
428
|
+
"l10n_fr.tax_report_T3_base_adjustment",
|
429
|
+
"l10n_fr_account.tax_report_T3_base_adjustment",
|
430
|
+
),
|
431
|
+
(
|
432
|
+
"l10n_fr.tax_report_T3_base_balance_from_tags",
|
433
|
+
"l10n_fr_account.tax_report_T3_base_balance_from_tags",
|
434
|
+
),
|
435
|
+
("l10n_fr.tax_report_T3_base_tag", "l10n_fr_account.tax_report_T3_base_tag"),
|
436
|
+
("l10n_fr.tax_report_T3_taxe_tag", "l10n_fr_account.tax_report_T3_taxe_tag"),
|
437
|
+
(
|
438
|
+
"l10n_fr.tax_report_T3_taxe_tag_no_rounding",
|
439
|
+
"l10n_fr_account.tax_report_T3_taxe_tag_no_rounding",
|
440
|
+
),
|
441
|
+
(
|
442
|
+
"l10n_fr.tax_report_T4_base_adjustment",
|
443
|
+
"l10n_fr_account.tax_report_T4_base_adjustment",
|
444
|
+
),
|
445
|
+
(
|
446
|
+
"l10n_fr.tax_report_T4_base_balance_from_tags",
|
447
|
+
"l10n_fr_account.tax_report_T4_base_balance_from_tags",
|
448
|
+
),
|
449
|
+
("l10n_fr.tax_report_T4_base_tag", "l10n_fr_account.tax_report_T4_base_tag"),
|
450
|
+
("l10n_fr.tax_report_T4_taxe_tag", "l10n_fr_account.tax_report_T4_taxe_tag"),
|
451
|
+
(
|
452
|
+
"l10n_fr.tax_report_T4_taxe_tag_no_rounding",
|
453
|
+
"l10n_fr_account.tax_report_T4_taxe_tag_no_rounding",
|
454
|
+
),
|
455
|
+
(
|
456
|
+
"l10n_fr.tax_report_T5_base_adjustment",
|
457
|
+
"l10n_fr_account.tax_report_T5_base_adjustment",
|
458
|
+
),
|
459
|
+
(
|
460
|
+
"l10n_fr.tax_report_T5_base_balance_from_tags",
|
461
|
+
"l10n_fr_account.tax_report_T5_base_balance_from_tags",
|
462
|
+
),
|
463
|
+
("l10n_fr.tax_report_T5_base_tag", "l10n_fr_account.tax_report_T5_base_tag"),
|
464
|
+
("l10n_fr.tax_report_T5_taxe_tag", "l10n_fr_account.tax_report_T5_taxe_tag"),
|
465
|
+
(
|
466
|
+
"l10n_fr.tax_report_T5_taxe_tag_no_rounding",
|
467
|
+
"l10n_fr_account.tax_report_T5_taxe_tag_no_rounding",
|
468
|
+
),
|
469
|
+
(
|
470
|
+
"l10n_fr.tax_report_T6_base_adjustment",
|
471
|
+
"l10n_fr_account.tax_report_T6_base_adjustment",
|
472
|
+
),
|
473
|
+
(
|
474
|
+
"l10n_fr.tax_report_T6_base_balance_from_tags",
|
475
|
+
"l10n_fr_account.tax_report_T6_base_balance_from_tags",
|
476
|
+
),
|
477
|
+
("l10n_fr.tax_report_T6_base_tag", "l10n_fr_account.tax_report_T6_base_tag"),
|
478
|
+
("l10n_fr.tax_report_T6_taxe_tag", "l10n_fr_account.tax_report_T6_taxe_tag"),
|
479
|
+
(
|
480
|
+
"l10n_fr.tax_report_T6_taxe_tag_no_rounding",
|
481
|
+
"l10n_fr_account.tax_report_T6_taxe_tag_no_rounding",
|
482
|
+
),
|
483
|
+
(
|
484
|
+
"l10n_fr.tax_report_T7_base_adjustment",
|
485
|
+
"l10n_fr_account.tax_report_T7_base_adjustment",
|
486
|
+
),
|
487
|
+
(
|
488
|
+
"l10n_fr.tax_report_T7_base_balance_from_tags",
|
489
|
+
"l10n_fr_account.tax_report_T7_base_balance_from_tags",
|
490
|
+
),
|
491
|
+
("l10n_fr.tax_report_T7_base_tag", "l10n_fr_account.tax_report_T7_base_tag"),
|
492
|
+
("l10n_fr.tax_report_T7_taxe_tag", "l10n_fr_account.tax_report_T7_taxe_tag"),
|
493
|
+
("l10n_fr.tax_report_TICC_tag", "l10n_fr_account.tax_report_TICC_tag"),
|
494
|
+
("l10n_fr.tax_report_TICFE_tag", "l10n_fr_account.tax_report_TICFE_tag"),
|
495
|
+
("l10n_fr.tax_report_TICGN_tag", "l10n_fr_account.tax_report_TICGN_tag"),
|
496
|
+
(
|
497
|
+
"l10n_fr.tax_report_TIC_total_formula",
|
498
|
+
"l10n_fr_account.tax_report_TIC_total_formula",
|
499
|
+
),
|
500
|
+
("l10n_fr.tax_report_X1_tag", "l10n_fr_account.tax_report_X1_tag"),
|
501
|
+
("l10n_fr.tax_report_X2_tag", "l10n_fr_account.tax_report_X2_tag"),
|
502
|
+
("l10n_fr.tax_report_X3_tag", "l10n_fr_account.tax_report_X3_tag"),
|
503
|
+
("l10n_fr.tax_report_X4_formula", "l10n_fr_account.tax_report_X4_formula"),
|
504
|
+
("l10n_fr.tax_report_Y1_formula", "l10n_fr_account.tax_report_Y1_formula"),
|
505
|
+
("l10n_fr.tax_report_Y2_formula", "l10n_fr_account.tax_report_Y2_formula"),
|
506
|
+
("l10n_fr.tax_report_Y3_formula", "l10n_fr_account.tax_report_Y3_formula"),
|
507
|
+
("l10n_fr.tax_report_Z1_tag", "l10n_fr_account.tax_report_Z1_tag"),
|
508
|
+
("l10n_fr.tax_report_Z2_tag", "l10n_fr_account.tax_report_Z2_tag"),
|
509
|
+
("l10n_fr.tax_report_Z3_tag", "l10n_fr_account.tax_report_Z3_tag"),
|
510
|
+
("l10n_fr.tax_report_Z4_formula", "l10n_fr_account.tax_report_Z4_formula"),
|
511
|
+
("l10n_fr.tax_report_td_formula", "l10n_fr_account.tax_report_td_formula"),
|
512
|
+
("l10n_fr.tax_report_08_base", "l10n_fr_account.tax_report_08_base"),
|
513
|
+
("l10n_fr.tax_report_08_taxe", "l10n_fr_account.tax_report_08_taxe"),
|
514
|
+
("l10n_fr.tax_report_09_base", "l10n_fr_account.tax_report_09_base"),
|
515
|
+
("l10n_fr.tax_report_09_taxe", "l10n_fr_account.tax_report_09_taxe"),
|
516
|
+
("l10n_fr.tax_report_10_base", "l10n_fr_account.tax_report_10_base"),
|
517
|
+
("l10n_fr.tax_report_10_taxe", "l10n_fr_account.tax_report_10_taxe"),
|
518
|
+
("l10n_fr.tax_report_11_base", "l10n_fr_account.tax_report_11_base"),
|
519
|
+
("l10n_fr.tax_report_11_taxe", "l10n_fr_account.tax_report_11_taxe"),
|
520
|
+
("l10n_fr.tax_report_13_base", "l10n_fr_account.tax_report_13_base"),
|
521
|
+
("l10n_fr.tax_report_13_taxe", "l10n_fr_account.tax_report_13_taxe"),
|
522
|
+
("l10n_fr.tax_report_14_base", "l10n_fr_account.tax_report_14_base"),
|
523
|
+
("l10n_fr.tax_report_14_taxe", "l10n_fr_account.tax_report_14_taxe"),
|
524
|
+
("l10n_fr.tax_report_15", "l10n_fr_account.tax_report_15"),
|
525
|
+
("l10n_fr.tax_report_15_1", "l10n_fr_account.tax_report_15_1"),
|
526
|
+
("l10n_fr.tax_report_15_2", "l10n_fr_account.tax_report_15_2"),
|
527
|
+
("l10n_fr.tax_report_16", "l10n_fr_account.tax_report_16"),
|
528
|
+
("l10n_fr.tax_report_17", "l10n_fr_account.tax_report_17"),
|
529
|
+
("l10n_fr.tax_report_18", "l10n_fr_account.tax_report_18"),
|
530
|
+
("l10n_fr.tax_report_19", "l10n_fr_account.tax_report_19"),
|
531
|
+
("l10n_fr.tax_report_20", "l10n_fr_account.tax_report_20"),
|
532
|
+
("l10n_fr.tax_report_21", "l10n_fr_account.tax_report_21"),
|
533
|
+
("l10n_fr.tax_report_22", "l10n_fr_account.tax_report_22"),
|
534
|
+
("l10n_fr.tax_report_22A", "l10n_fr_account.tax_report_22A"),
|
535
|
+
("l10n_fr.tax_report_23", "l10n_fr_account.tax_report_23"),
|
536
|
+
("l10n_fr.tax_report_24", "l10n_fr_account.tax_report_24"),
|
537
|
+
("l10n_fr.tax_report_25", "l10n_fr_account.tax_report_25"),
|
538
|
+
("l10n_fr.tax_report_27", "l10n_fr_account.tax_report_27"),
|
539
|
+
("l10n_fr.tax_report_28", "l10n_fr_account.tax_report_28"),
|
540
|
+
("l10n_fr.tax_report_29", "l10n_fr_account.tax_report_29"),
|
541
|
+
("l10n_fr.tax_report_2C", "l10n_fr_account.tax_report_2C"),
|
542
|
+
("l10n_fr.tax_report_2E", "l10n_fr_account.tax_report_2E"),
|
543
|
+
("l10n_fr.tax_report_32", "l10n_fr_account.tax_report_32"),
|
544
|
+
("l10n_fr.tax_report_5B", "l10n_fr_account.tax_report_5B"),
|
545
|
+
("l10n_fr.tax_report_9B_base", "l10n_fr_account.tax_report_9B_base"),
|
546
|
+
("l10n_fr.tax_report_9B_taxe", "l10n_fr_account.tax_report_9B_taxe"),
|
547
|
+
("l10n_fr.tax_report_A1", "l10n_fr_account.tax_report_A1"),
|
548
|
+
("l10n_fr.tax_report_A2", "l10n_fr_account.tax_report_A2"),
|
549
|
+
("l10n_fr.tax_report_A3", "l10n_fr_account.tax_report_A3"),
|
550
|
+
("l10n_fr.tax_report_A4", "l10n_fr_account.tax_report_A4"),
|
551
|
+
("l10n_fr.tax_report_A5", "l10n_fr_account.tax_report_A5"),
|
552
|
+
("l10n_fr.tax_report_AA", "l10n_fr_account.tax_report_AA"),
|
553
|
+
("l10n_fr.tax_report_AB", "l10n_fr_account.tax_report_AB"),
|
554
|
+
("l10n_fr.tax_report_B1", "l10n_fr_account.tax_report_B1"),
|
555
|
+
("l10n_fr.tax_report_B2", "l10n_fr_account.tax_report_B2"),
|
556
|
+
("l10n_fr.tax_report_B3", "l10n_fr_account.tax_report_B3"),
|
557
|
+
("l10n_fr.tax_report_B4", "l10n_fr_account.tax_report_B4"),
|
558
|
+
("l10n_fr.tax_report_B5", "l10n_fr_account.tax_report_B5"),
|
559
|
+
("l10n_fr.tax_report_E1", "l10n_fr_account.tax_report_E1"),
|
560
|
+
("l10n_fr.tax_report_E2", "l10n_fr_account.tax_report_E2"),
|
561
|
+
("l10n_fr.tax_report_E3", "l10n_fr_account.tax_report_E3"),
|
562
|
+
("l10n_fr.tax_report_E4", "l10n_fr_account.tax_report_E4"),
|
563
|
+
("l10n_fr.tax_report_E5", "l10n_fr_account.tax_report_E5"),
|
564
|
+
("l10n_fr.tax_report_E6", "l10n_fr_account.tax_report_E6"),
|
565
|
+
("l10n_fr.tax_report_F1", "l10n_fr_account.tax_report_F1"),
|
566
|
+
("l10n_fr.tax_report_F2", "l10n_fr_account.tax_report_F2"),
|
567
|
+
("l10n_fr.tax_report_F3", "l10n_fr_account.tax_report_F3"),
|
568
|
+
("l10n_fr.tax_report_F4", "l10n_fr_account.tax_report_F4"),
|
569
|
+
("l10n_fr.tax_report_F5", "l10n_fr_account.tax_report_F5"),
|
570
|
+
("l10n_fr.tax_report_F6", "l10n_fr_account.tax_report_F6"),
|
571
|
+
("l10n_fr.tax_report_F7", "l10n_fr_account.tax_report_F7"),
|
572
|
+
("l10n_fr.tax_report_F8", "l10n_fr_account.tax_report_F8"),
|
573
|
+
("l10n_fr.tax_report_F9", "l10n_fr_account.tax_report_F9"),
|
574
|
+
("l10n_fr.tax_report_I1_base", "l10n_fr_account.tax_report_I1_base"),
|
575
|
+
("l10n_fr.tax_report_I1_taxe", "l10n_fr_account.tax_report_I1_taxe"),
|
576
|
+
("l10n_fr.tax_report_I2_base", "l10n_fr_account.tax_report_I2_base"),
|
577
|
+
("l10n_fr.tax_report_I2_taxe", "l10n_fr_account.tax_report_I2_taxe"),
|
578
|
+
("l10n_fr.tax_report_I3_base", "l10n_fr_account.tax_report_I3_base"),
|
579
|
+
("l10n_fr.tax_report_I3_taxe", "l10n_fr_account.tax_report_I3_taxe"),
|
580
|
+
("l10n_fr.tax_report_I4_base", "l10n_fr_account.tax_report_I4_base"),
|
581
|
+
("l10n_fr.tax_report_I4_taxe", "l10n_fr_account.tax_report_I4_taxe"),
|
582
|
+
("l10n_fr.tax_report_I5_base", "l10n_fr_account.tax_report_I5_base"),
|
583
|
+
("l10n_fr.tax_report_I5_taxe", "l10n_fr_account.tax_report_I5_taxe"),
|
584
|
+
("l10n_fr.tax_report_I6_base", "l10n_fr_account.tax_report_I6_base"),
|
585
|
+
("l10n_fr.tax_report_I6_taxe", "l10n_fr_account.tax_report_I6_taxe"),
|
586
|
+
("l10n_fr.tax_report_P1_base", "l10n_fr_account.tax_report_P1_base"),
|
587
|
+
("l10n_fr.tax_report_P1_taxe", "l10n_fr_account.tax_report_P1_taxe"),
|
588
|
+
("l10n_fr.tax_report_P2_base", "l10n_fr_account.tax_report_P2_base"),
|
589
|
+
("l10n_fr.tax_report_P2_taxe", "l10n_fr_account.tax_report_P2_taxe"),
|
590
|
+
("l10n_fr.tax_report_T1_base", "l10n_fr_account.tax_report_T1_base"),
|
591
|
+
("l10n_fr.tax_report_T1_taxe", "l10n_fr_account.tax_report_T1_taxe"),
|
592
|
+
("l10n_fr.tax_report_T2_base", "l10n_fr_account.tax_report_T2_base"),
|
593
|
+
("l10n_fr.tax_report_T2_taxe", "l10n_fr_account.tax_report_T2_taxe"),
|
594
|
+
("l10n_fr.tax_report_T3_base", "l10n_fr_account.tax_report_T3_base"),
|
595
|
+
("l10n_fr.tax_report_T3_taxe", "l10n_fr_account.tax_report_T3_taxe"),
|
596
|
+
("l10n_fr.tax_report_T4_base", "l10n_fr_account.tax_report_T4_base"),
|
597
|
+
("l10n_fr.tax_report_T4_taxe", "l10n_fr_account.tax_report_T4_taxe"),
|
598
|
+
("l10n_fr.tax_report_T5_base", "l10n_fr_account.tax_report_T5_base"),
|
599
|
+
("l10n_fr.tax_report_T5_taxe", "l10n_fr_account.tax_report_T5_taxe"),
|
600
|
+
("l10n_fr.tax_report_T6_base", "l10n_fr_account.tax_report_T6_base"),
|
601
|
+
("l10n_fr.tax_report_T6_taxe", "l10n_fr_account.tax_report_T6_taxe"),
|
602
|
+
("l10n_fr.tax_report_T7_base", "l10n_fr_account.tax_report_T7_base"),
|
603
|
+
("l10n_fr.tax_report_T7_taxe", "l10n_fr_account.tax_report_T7_taxe"),
|
604
|
+
("l10n_fr.tax_report_TD", "l10n_fr_account.tax_report_TD"),
|
605
|
+
("l10n_fr.tax_report_TICC", "l10n_fr_account.tax_report_TICC"),
|
606
|
+
("l10n_fr.tax_report_TICFE", "l10n_fr_account.tax_report_TICFE"),
|
607
|
+
("l10n_fr.tax_report_TICGN", "l10n_fr_account.tax_report_TICGN"),
|
608
|
+
("l10n_fr.tax_report_TIC_total", "l10n_fr_account.tax_report_TIC_total"),
|
609
|
+
("l10n_fr.tax_report_X1", "l10n_fr_account.tax_report_X1"),
|
610
|
+
("l10n_fr.tax_report_X2", "l10n_fr_account.tax_report_X2"),
|
611
|
+
("l10n_fr.tax_report_X3", "l10n_fr_account.tax_report_X3"),
|
612
|
+
("l10n_fr.tax_report_X4", "l10n_fr_account.tax_report_X4"),
|
613
|
+
("l10n_fr.tax_report_X5", "l10n_fr_account.tax_report_X5"),
|
614
|
+
("l10n_fr.tax_report_Y1", "l10n_fr_account.tax_report_Y1"),
|
615
|
+
("l10n_fr.tax_report_Y2", "l10n_fr_account.tax_report_Y2"),
|
616
|
+
("l10n_fr.tax_report_Y3", "l10n_fr_account.tax_report_Y3"),
|
617
|
+
("l10n_fr.tax_report_Y4", "l10n_fr_account.tax_report_Y4"),
|
618
|
+
("l10n_fr.tax_report_Y5", "l10n_fr_account.tax_report_Y5"),
|
619
|
+
("l10n_fr.tax_report_Y6", "l10n_fr_account.tax_report_Y6"),
|
620
|
+
("l10n_fr.tax_report_Z1", "l10n_fr_account.tax_report_Z1"),
|
621
|
+
("l10n_fr.tax_report_Z2", "l10n_fr_account.tax_report_Z2"),
|
622
|
+
("l10n_fr.tax_report_Z3", "l10n_fr_account.tax_report_Z3"),
|
623
|
+
("l10n_fr.tax_report_Z4", "l10n_fr_account.tax_report_Z4"),
|
624
|
+
("l10n_fr.tax_report_Z5", "l10n_fr_account.tax_report_Z5"),
|
625
|
+
("l10n_fr.tax_report_credit", "l10n_fr_account.tax_report_credit"),
|
626
|
+
(
|
627
|
+
"l10n_fr.tax_report_credit_constate",
|
628
|
+
"l10n_fr_account.tax_report_credit_constate",
|
629
|
+
),
|
630
|
+
("l10n_fr.tax_report_credit_impute", "l10n_fr_account.tax_report_credit_impute"),
|
631
|
+
("l10n_fr.tax_report_decompte_tva", "l10n_fr_account.tax_report_decompte_tva"),
|
632
|
+
("l10n_fr.tax_report_determination", "l10n_fr_account.tax_report_determination"),
|
633
|
+
(
|
634
|
+
"l10n_fr.tax_report_montant_op_realisees",
|
635
|
+
"l10n_fr_account.tax_report_montant_op_realisees",
|
636
|
+
),
|
637
|
+
(
|
638
|
+
"l10n_fr.tax_report_op_imposables_ht",
|
639
|
+
"l10n_fr_account.tax_report_op_imposables_ht",
|
640
|
+
),
|
641
|
+
(
|
642
|
+
"l10n_fr.tax_report_op_non_imposables",
|
643
|
+
"l10n_fr_account.tax_report_op_non_imposables",
|
644
|
+
),
|
645
|
+
("l10n_fr.tax_report_regularisation", "l10n_fr_account.tax_report_regularisation"),
|
646
|
+
("l10n_fr.tax_report_reliquat", "l10n_fr_account.tax_report_reliquat"),
|
647
|
+
("l10n_fr.tax_report_tic_tax", "l10n_fr_account.tax_report_tic_tax"),
|
648
|
+
("l10n_fr.tax_report_tva_brute", "l10n_fr_account.tax_report_tva_brute"),
|
649
|
+
(
|
650
|
+
"l10n_fr.tax_report_tva_brute_autre",
|
651
|
+
"l10n_fr_account.tax_report_tva_brute_autre",
|
652
|
+
),
|
653
|
+
("l10n_fr.tax_report_tva_brute_dom", "l10n_fr_account.tax_report_tva_brute_dom"),
|
654
|
+
(
|
655
|
+
"l10n_fr.tax_report_tva_brute_import",
|
656
|
+
"l10n_fr_account.tax_report_tva_brute_import",
|
657
|
+
),
|
658
|
+
(
|
659
|
+
"l10n_fr.tax_report_tva_brute_metropo",
|
660
|
+
"l10n_fr_account.tax_report_tva_brute_metropo",
|
661
|
+
),
|
662
|
+
(
|
663
|
+
"l10n_fr.tax_report_tva_brute_petrolier",
|
664
|
+
"l10n_fr_account.tax_report_tva_brute_petrolier",
|
665
|
+
),
|
666
|
+
("l10n_fr.tax_report_tva_deductible", "l10n_fr_account.tax_report_tva_deductible"),
|
667
|
+
(
|
668
|
+
"l10n_fr.display_name_in_footer_param",
|
669
|
+
"l10n_fr_account.display_name_in_footer_param",
|
670
|
+
),
|
671
|
+
(
|
672
|
+
"l10n_fr.account_reports_fr_statements_menu",
|
673
|
+
"l10n_fr_account.account_reports_fr_statements_menu",
|
674
|
+
),
|
675
|
+
]
|
676
|
+
|
677
|
+
|
678
|
+
@openupgrade.migrate()
|
679
|
+
def migrate(env, version):
|
680
|
+
openupgrade.rename_xmlids(env.cr, _xmlids_renames)
|
681
|
+
openupgrade.logged_query( # just in case `account_fr_fec` was not installed
|
682
|
+
env.cr,
|
683
|
+
"""
|
684
|
+
UPDATE ir_module_module
|
685
|
+
SET state='to install'
|
686
|
+
WHERE name = 'l10n_fr_account' AND state='uninstalled'""",
|
687
|
+
)
|