odoo-addon-openupgrade-scripts 18.0.1.0.0.399__py3-none-any.whl → 18.0.1.0.0.406__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/scripts/account/18.0.1.3/pre-migration.py +10 -0
- odoo/addons/openupgrade_scripts/scripts/account/18.0.1.3/upgrade_analysis_work.txt +3 -0
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/noupdate_changes.xml +5 -0
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis.txt +4 -0
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt +7 -5
- odoo/addons/openupgrade_scripts/scripts/event/18.0.1.9/noupdate_changes.xml +5 -5
- odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/pre-migration.py +21 -2
- odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/upgrade_analysis_work.txt +2 -2
- odoo/addons/openupgrade_scripts/scripts/hr_timesheet/{18.0.1.0 → 18.0.1.1}/noupdate_changes.xml +0 -15
- odoo/addons/openupgrade_scripts/scripts/hr_timesheet/{18.0.1.0 → 18.0.1.1}/post-migration.py +1 -1
- odoo/addons/openupgrade_scripts/scripts/l10n_hu_edi/18.0.1.0.0/upgrade_analysis.txt +0 -1
- odoo/addons/openupgrade_scripts/scripts/l10n_ro_edi/18.0.1.0/upgrade_analysis.txt +3 -1
- odoo/addons/openupgrade_scripts/scripts/l10n_ro_efactura_synchronize/18.0.1.0/upgrade_analysis.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_einvoice_extended/18.0.1.0/upgrade_analysis.txt +1097 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.399.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.406.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.399.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.406.dist-info}/RECORD +20 -18
- /odoo/addons/openupgrade_scripts/scripts/hr_timesheet/{18.0.1.0 → 18.0.1.1}/upgrade_analysis.txt +0 -0
- /odoo/addons/openupgrade_scripts/scripts/hr_timesheet/{18.0.1.0 → 18.0.1.1}/upgrade_analysis_work.txt +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.399.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.406.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.399.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.406.dist-info}/top_level.txt +0 -0
@@ -42,6 +42,15 @@ _new_columns = [
|
|
42
42
|
]
|
43
43
|
|
44
44
|
|
45
|
+
def _drop_sql_views(env):
|
46
|
+
openupgrade.logged_query(
|
47
|
+
env.cr,
|
48
|
+
"""
|
49
|
+
DROP VIEW IF EXISTS account_root
|
50
|
+
""",
|
51
|
+
)
|
52
|
+
|
53
|
+
|
45
54
|
def rename_selection_option(env):
|
46
55
|
openupgrade.logged_query(
|
47
56
|
env.cr,
|
@@ -218,6 +227,7 @@ def migrate(env, version):
|
|
218
227
|
openupgrade.rename_fields(env, field_renames_l10n_dk_bookkeeping)
|
219
228
|
openupgrade.rename_fields(env, field_renames)
|
220
229
|
openupgrade.add_columns(env, _new_columns)
|
230
|
+
_drop_sql_views(env)
|
221
231
|
update_account_move_amount_untaxed_in_currency_signed(env)
|
222
232
|
update_account_move_checked(env)
|
223
233
|
fill_account_move_preferred_payment_method_line_id(env)
|
@@ -12,6 +12,9 @@ new model account.move.send.wizard [transient]
|
|
12
12
|
new model account.secure.entries.wizard [transient]
|
13
13
|
# NOTHING TO DO
|
14
14
|
|
15
|
+
obsolete model account.root [sql_view]
|
16
|
+
# DONE: pre-migration: drop view if exists
|
17
|
+
|
15
18
|
---Fields in module 'account'---
|
16
19
|
account / account.account / _order : _order is now 'code, placeholder_code' ('code, company_id')
|
17
20
|
account / account.account / code_mapping_ids (one2many) : NEW relation: account.code.mapping
|
@@ -52,7 +52,9 @@
|
|
52
52
|
<field name="iso_numeric">060</field>
|
53
53
|
</record>
|
54
54
|
<record id="BND" model="res.currency">
|
55
|
+
<field name="symbol">B$</field>
|
55
56
|
<field name="iso_numeric">096</field>
|
57
|
+
<field name="position">before</field>
|
56
58
|
</record>
|
57
59
|
<record id="BOB" model="res.currency">
|
58
60
|
<field name="iso_numeric">068</field>
|
@@ -502,6 +504,9 @@
|
|
502
504
|
<record id="ZMW" model="res.currency">
|
503
505
|
<field name="iso_numeric">967</field>
|
504
506
|
</record>
|
507
|
+
<record id="bn" model="res.country">
|
508
|
+
<field eval="'%(street)s\n%(street2)s\n%(city)s %(zip)s\n%(country_name)s'" name="address_format"/>
|
509
|
+
</record>
|
505
510
|
<record id="om" model="res.country">
|
506
511
|
<field name="address_format" eval="'%(street)s\n%(street2)s\n%(city)s %(state_name)s %(zip)s\n%(country_name)s'"/>
|
507
512
|
</record>
|
@@ -141,6 +141,10 @@ NEW res.country.state: base.state_be_6
|
|
141
141
|
NEW res.country.state: base.state_be_7
|
142
142
|
NEW res.country.state: base.state_be_8
|
143
143
|
NEW res.country.state: base.state_be_9
|
144
|
+
NEW res.country.state: base.state_bn_b
|
145
|
+
NEW res.country.state: base.state_bn_k
|
146
|
+
NEW res.country.state: base.state_bn_p
|
147
|
+
NEW res.country.state: base.state_bn_t
|
144
148
|
NEW res.country.state: base.state_kr_11
|
145
149
|
NEW res.country.state: base.state_kr_26
|
146
150
|
NEW res.country.state: base.state_kr_27
|
@@ -80,6 +80,8 @@ new model l10n_id.qris.transaction [module l10n_id]
|
|
80
80
|
new model l10n_in.section.alert [module l10n_in_withholding]
|
81
81
|
new model l10n_latam.check [module l10n_latam_check]
|
82
82
|
new model l10n_latam.payment.register.check [module l10n_latam_check]
|
83
|
+
new model l10n_tr_nilvera_einvoice_extended.account.tax.code [module l10n_tr_nilvera_einvoice_extended]
|
84
|
+
new model l10n_tr_nilvera_einvoice_extended.tax.office [module l10n_tr_nilvera_einvoice_extended]
|
83
85
|
new model l10n_tw_edi.invoice.cancel [module l10n_tw_edi_ecpay]
|
84
86
|
new model l10n_tw_edi.invoice.print [module l10n_tw_edi_ecpay]
|
85
87
|
new model loyalty.card.update.balance [module loyalty]
|
@@ -124,14 +126,14 @@ new model website.custom_blocked_third_party_domains [module website]
|
|
124
126
|
new model website.page.properties [module website]
|
125
127
|
new model website.page.properties.base [module website]
|
126
128
|
---Fields in module 'general'---
|
127
|
-
#
|
128
|
-
# Direct match:
|
129
|
+
# 13472 fields matched,
|
130
|
+
# Direct match: 13369
|
129
131
|
# Found in other module with different type: 0
|
130
|
-
# Found in other module:
|
132
|
+
# Found in other module: 95
|
131
133
|
# Found with different type: 8
|
132
134
|
# In obsolete models: 34
|
133
|
-
# New columns:
|
134
|
-
# Not matched:
|
135
|
+
# New columns: 1757
|
136
|
+
# Not matched: 846
|
135
137
|
---XML records in module 'general'---
|
136
138
|
ERROR: module not in list of installed modules:
|
137
139
|
---Models in module 'account_debit_note_sequence'---
|
@@ -58,7 +58,7 @@
|
|
58
58
|
<div>
|
59
59
|
<br/>
|
60
60
|
<strong>Add this event to your calendar</strong>
|
61
|
-
<a t-attf-href="https://www.google.com/calendar/render?action=TEMPLATE&text={{ object.event_id.name }}&dates={{ date_begin }}/{{ date_end }}&location={{ location }}&details={{ object.event_id.
|
61
|
+
<a t-attf-href="https://www.google.com/calendar/render?action=TEMPLATE&text={{ object.event_id.name }}&dates={{ date_begin }}/{{ date_end }}&location={{ location }}&details={{ object.event_id._get_external_description_url_encoded() }}" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;" target="new"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> Google</a>
|
62
62
|
<a t-attf-href="/event/{{ slug(object.event_id) }}/ics" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> iCal/Outlook</a>
|
63
63
|
<a t-attf-href="https://calendar.yahoo.com/?v=60&view=d&type=20&title={{ object.event_id.name }}&in_loc={{ location }}&st={{ format_datetime(object.event_id.date_begin, tz='UTC', dt_format='yyyyMMdd\'T\'HHmmss') }}&et={{ format_datetime(object.event_id.date_end, tz='UTC', dt_format='yyyyMMdd\'T\'HHmmss') }}" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;" target="new"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> Yahoo
|
64
64
|
</a>
|
@@ -282,7 +282,7 @@
|
|
282
282
|
<td valign="middle" align="right">
|
283
283
|
<t t-if="object.barcode">
|
284
284
|
<div style="margin-bottom: 5px;">
|
285
|
-
<img t-attf-src="/report/barcode/QR/{{object.barcode}}?&width=100&height=100&quiet=0" width="100" height="100" alt="QR Code"/>
|
285
|
+
<img t-attf-src="/report/barcode/QR/{{object.barcode}}?&width=100&height=100&quiet=0" width="100" height="100" alt="QR Code" t-att-style="'height: 100px !important;'"/>
|
286
286
|
</div>
|
287
287
|
</t>
|
288
288
|
<t t-if="not object.company_id.uses_default_logo">
|
@@ -314,7 +314,7 @@
|
|
314
314
|
<div>
|
315
315
|
<br/>
|
316
316
|
<strong>Add this event to your calendar</strong>
|
317
|
-
<a t-attf-href="https://www.google.com/calendar/render?action=TEMPLATE&text={{ object.event_id.name }}&dates={{ date_begin }}/{{ date_end }}&location={{ location }}&details={{ object.event_id.
|
317
|
+
<a t-attf-href="https://www.google.com/calendar/render?action=TEMPLATE&text={{ object.event_id.name }}&dates={{ date_begin }}/{{ date_end }}&location={{ location }}&details={{ object.event_id._get_external_description_url_encoded() }}" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;" target="new"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> Google</a>
|
318
318
|
<a t-attf-href="/event/{{ slug(object.event_id) }}/ics" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> iCal/Outlook</a>
|
319
319
|
<a t-attf-href="https://calendar.yahoo.com/?v=60&view=d&type=20&title={{ object.event_id.name }}&in_loc={{ location }}&st={{ format_datetime(object.event_id.date_begin, tz='UTC', dt_format='yyyyMMdd\'T\'HHmmss') }}&et={{ format_datetime(object.event_id.date_end, tz='UTC', dt_format='yyyyMMdd\'T\'HHmmss') }}" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;" target="new"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> Yahoo
|
320
320
|
</a>
|
@@ -537,7 +537,7 @@
|
|
537
537
|
<td valign="middle" align="right">
|
538
538
|
<t t-if="object.barcode">
|
539
539
|
<div style="margin-bottom: 5px;">
|
540
|
-
<img t-attf-src="/report/barcode/QR/{{object.barcode}}?&width=100&height=100&quiet=0" width="100" height="100" alt="QR Code"/>
|
540
|
+
<img t-attf-src="/report/barcode/QR/{{object.barcode}}?&width=100&height=100&quiet=0" width="100" height="100" alt="QR Code" t-att-style="'height: 100px !important;'"/>
|
541
541
|
</div>
|
542
542
|
</t>
|
543
543
|
<t t-if="not object.company_id.uses_default_logo">
|
@@ -578,7 +578,7 @@
|
|
578
578
|
<div>
|
579
579
|
<br/>
|
580
580
|
<strong>Add this event to your calendar</strong>
|
581
|
-
<a t-attf-href="https://www.google.com/calendar/render?action=TEMPLATE&text={{ object.event_id.name }}&dates={{ date_begin }}/{{ date_end }}&location={{ location }}&details={{ object.event_id.
|
581
|
+
<a t-attf-href="https://www.google.com/calendar/render?action=TEMPLATE&text={{ object.event_id.name }}&dates={{ date_begin }}/{{ date_end }}&location={{ location }}&details={{ object.event_id._get_external_description_url_encoded() }}" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;" target="new"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> Google</a>
|
582
582
|
<a t-attf-href="/event/{{ slug(object.event_id) }}/ics" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> iCal/Outlook</a>
|
583
583
|
<a t-attf-href="https://calendar.yahoo.com/?v=60&view=d&type=20&title={{ object.event_id.name }}&in_loc={{ location }}&st={{ format_datetime(object.event_id.date_begin, tz='UTC', dt_format='yyyyMMdd\'T\'HHmmss') }}&et={{ format_datetime(object.event_id.date_end, tz='UTC', dt_format='yyyyMMdd\'T\'HHmmss') }}" style="padding:3px 5px;border:1px solid #875A7B;color:#875A7B;text-decoration:none;border-radius:3px;" target="new"><img src="/web_editor/font_to_img/61525/rgb(135,90,123)/16" style="vertical-align:middle;" height="16" alt=""/> Yahoo
|
584
584
|
</a>
|
@@ -51,7 +51,7 @@ def update_states(env):
|
|
51
51
|
env.cr,
|
52
52
|
"""
|
53
53
|
UPDATE hr_leave_allocation
|
54
|
-
SET state = '
|
54
|
+
SET state = 'refuse'
|
55
55
|
WHERE active IS DISTINCT FROM TRUE
|
56
56
|
""",
|
57
57
|
)
|
@@ -77,7 +77,26 @@ def update_allocation_validation_type(env):
|
|
77
77
|
|
78
78
|
|
79
79
|
def split_employee_leaves(env):
|
80
|
+
"""
|
81
|
+
Confirmed leave or allocation already have duplicated leave for each employee
|
82
|
+
Since multi employee leave / allocation are not allowed anymore,
|
83
|
+
these should be removed
|
84
|
+
Draft (= 'confirm' state) are the only ones which have not yet
|
85
|
+
been duplicated and therefore should be transformed
|
86
|
+
"""
|
80
87
|
for table in ["hr_leave", "hr_leave_allocation"]:
|
88
|
+
# First remove all multi-employee leaves / allocations
|
89
|
+
# already confirmed or refused
|
90
|
+
openupgrade.logged_query(
|
91
|
+
env.cr,
|
92
|
+
f"""
|
93
|
+
DELETE FROM {table}
|
94
|
+
WHERE state IN ('refuse', 'validate1', 'validate', 'cancel') AND (
|
95
|
+
(holiday_type = 'employee' AND multi_employee)
|
96
|
+
OR holiday_type IN ('company', 'category', 'department'))
|
97
|
+
""",
|
98
|
+
)
|
99
|
+
# Then for the remaining ones we transform existing data for each employee
|
81
100
|
env.cr.execute(
|
82
101
|
f"""
|
83
102
|
SELECT column_name
|
@@ -134,7 +153,7 @@ def split_employee_leaves(env):
|
|
134
153
|
)
|
135
154
|
leave_employees.extend(env.cr.fetchall())
|
136
155
|
for table_id, holiday_type, employee_ids in leave_employees:
|
137
|
-
employees = env["hr.employee"].browse(employee_ids)
|
156
|
+
employees = env["hr.employee"].browse(employee_ids).filtered("active")
|
138
157
|
if employee_ids:
|
139
158
|
openupgrade.logged_query(
|
140
159
|
env.cr,
|
@@ -24,7 +24,7 @@ hr_holidays / hr.leave / parent_id (many2one) : DEL re
|
|
24
24
|
hr_holidays / hr.leave.allocation / parent_id (many2one) : DEL relation: hr.leave.allocation
|
25
25
|
hr_holidays / hr.leave / employee_id (many2one) : now required
|
26
26
|
hr_holidays / hr.leave.allocation / employee_id (many2one) : now required
|
27
|
-
# DONE: pre-migration: split leaves, one for each employee
|
27
|
+
# DONE: pre-migration: split leaves / allocations, one for each employee (only for draft leaves / allocations)
|
28
28
|
|
29
29
|
hr_holidays / hr.leave / report_note (text) : DEL
|
30
30
|
# NOTHING TO DO: deprecated (https://github.com/odoo/odoo/commit/ca34732081b1ce6c339dd941abb9696861d95878)
|
@@ -39,7 +39,7 @@ hr_holidays / hr.leave / active (boolean) : DEL
|
|
39
39
|
hr_holidays / hr.leave.allocation / active (boolean) : DEL
|
40
40
|
hr_holidays / hr.leave / state (selection) : selection_keys added: [cancel], removed: [draft]
|
41
41
|
hr_holidays / hr.leave.allocation / state (selection) : selection_keys added: [validate1] (most likely nothing to do)
|
42
|
-
# DONE: pre-migration: set state = 'cancel' if archived. Also, 'draft' set to 'confirm' for leaves
|
42
|
+
# DONE: pre-migration: set state = 'cancel' for leaves / 'refuse' for allocations if archived. Also, 'draft' set to 'confirm' for leaves
|
43
43
|
|
44
44
|
hr_holidays / hr.leave.accrual.level / accrual_validity (boolean) : NEW
|
45
45
|
hr_holidays / hr.leave.accrual.level / accrual_validity_count (integer): NEW hasdefault: default
|
odoo/addons/openupgrade_scripts/scripts/hr_timesheet/{18.0.1.0 → 18.0.1.1}/noupdate_changes.xml
RENAMED
@@ -3,13 +3,6 @@
|
|
3
3
|
<record id="base.module_category_services_timesheets" model="ir.module.category">
|
4
4
|
<field name="description"/>
|
5
5
|
</record>
|
6
|
-
<record id="timesheet_analysis_report_approver" model="ir.rule">
|
7
|
-
<field name="domain_force">[
|
8
|
-
'|',
|
9
|
-
('project_id.privacy_visibility', '!=', 'followers'),
|
10
|
-
('project_id.message_partner_ids', 'in', [user.partner_id.id])
|
11
|
-
]</field>
|
12
|
-
</record>
|
13
6
|
<record id="timesheet_analysis_report_user" model="ir.rule">
|
14
7
|
<field name="domain_force">[
|
15
8
|
('user_id', '=', user.id),
|
@@ -18,14 +11,6 @@
|
|
18
11
|
('message_partner_ids', 'in', [user.partner_id.id])
|
19
12
|
]</field>
|
20
13
|
</record>
|
21
|
-
<record id="timesheet_line_rule_approver" model="ir.rule">
|
22
|
-
<field name="domain_force">[
|
23
|
-
('project_id', '!=', False),
|
24
|
-
'|',
|
25
|
-
('project_id.privacy_visibility', '!=', 'followers'),
|
26
|
-
('project_id.message_partner_ids', 'in', [user.partner_id.id])
|
27
|
-
]</field>
|
28
|
-
</record>
|
29
14
|
<record id="timesheet_line_rule_portal_user" model="ir.rule">
|
30
15
|
<field name="domain_force">[
|
31
16
|
('project_id', '!=', False),
|
@@ -1,6 +1,5 @@
|
|
1
1
|
---Models in module 'l10n_hu_edi'---
|
2
2
|
---Fields in module 'l10n_hu_edi'---
|
3
|
-
l10n_hu_edi / product.template / l10n_hu_product_code_type (selection): selection_keys removed: [SZJ]
|
4
3
|
---XML records in module 'l10n_hu_edi'---
|
5
4
|
NEW ir.ui.view: l10n_hu_edi.external_layout_bubble
|
6
5
|
NEW ir.ui.view: l10n_hu_edi.external_layout_folder
|
@@ -1,10 +1,12 @@
|
|
1
1
|
---Models in module 'l10n_ro_edi'---
|
2
2
|
---Fields in module 'l10n_ro_edi'---
|
3
|
-
l10n_ro_edi / account.
|
3
|
+
l10n_ro_edi / account.bank.statement.line / l10n_ro_edi_index (char) : previously in module l10n_ro_efactura_synchronize
|
4
|
+
l10n_ro_edi / account.move / l10n_ro_edi_index (char) : previously in module l10n_ro_efactura_synchronize
|
4
5
|
l10n_ro_edi / res.partner / invoice_edi_format (False) : NEW selection_keys: ['ciusro', 'es_facturae', 'facturx', 'it_edi_xml', 'nlcius', 'oioubl_201', 'oioubl_21', 'pint_anz', 'pint_jp', 'pint_my', 'tw_ecpay', 'ubl_a_nz', 'ubl_bis3', 'ubl_sg', 'ubl_tr', 'xrechnung'], mode: modify
|
5
6
|
l10n_ro_edi / res.partner / ubl_cii_format (False) : DEL selection_keys: ['ciusro', 'facturx', 'nlcius', 'oioubl_201', 'pint_anz', 'pint_jp', 'pint_my', 'ubl_a_nz', 'ubl_bis3', 'ubl_sg', 'ubl_tr', 'xrechnung'], mode: modify
|
6
7
|
l10n_ro_efactura / account.move / l10n_ro_edi_state (selection) : selection_keys added: [invoice_validated], removed: [invoice_sending]
|
7
8
|
l10n_ro_efactura / l10n_ro_edi.document / state (selection) : selection_keys added: [invoice_validated], removed: [invoice_sending]
|
9
|
+
l10n_ro_efactura_synchronize / account.move / l10n_ro_edi_index (char) : not a function anymore
|
8
10
|
---XML records in module 'l10n_ro_edi'---
|
9
11
|
NEW ir.actions.server: l10n_ro_edi.l10n_ro_edi_action_fetch_ciusro_status [renamed from l10n_ro_efactura module]
|
10
12
|
DEL ir.actions.server: l10n_ro_efactura.l10n_ro_edi_action_fetch_ciusro_status [renamed to l10n_ro_edi module]
|
odoo/addons/openupgrade_scripts/scripts/l10n_ro_efactura_synchronize/18.0.1.0/upgrade_analysis.txt
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
---Models in module 'l10n_ro_efactura_synchronize'---
|
2
|
+
---Fields in module 'l10n_ro_efactura_synchronize'---
|
3
|
+
l10n_ro_efactura_synchronize / account.bank.statement.line / l10n_ro_edi_index (char) : module is now 'l10n_ro_edi' ('l10n_ro_efactura_synchronize')
|
4
|
+
l10n_ro_efactura_synchronize / account.move / l10n_ro_edi_index (char) : module is now 'l10n_ro_edi' ('l10n_ro_efactura_synchronize')
|
5
|
+
---XML records in module 'l10n_ro_efactura_synchronize'---
|