odoo-addon-openupgrade-scripts 18.0.1.0.0.379__py3-none-any.whl → 18.0.1.0.0.385__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_fleet/18.0.1.0/post-migration.py +27 -0
- odoo/addons/openupgrade_scripts/scripts/account_fleet/18.0.1.0/upgrade_analysis_work.txt +13 -0
- odoo/addons/openupgrade_scripts/scripts/hr_fleet/18.0.1.0/upgrade_analysis_work.txt +8 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/noupdate_changes_work.xml +17 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/post-migration.py +76 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/pre-migration.py +40 -0
- odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/upgrade_analysis_work.txt +42 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.379.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.379.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info}/RECORD +11 -4
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.379.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.379.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
# Copyright 2025 L4 TECH S.L. (https://www.level4.es)
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
def fill_fleet_vehicle_log_services_x_account_move_line_id(env):
|
8
|
+
vendor_bill_service = env.ref("account_fleet.data_fleet_service_type_vendor_bill")
|
9
|
+
openupgrade.logged_query(
|
10
|
+
env.cr,
|
11
|
+
f"""
|
12
|
+
UPDATE fleet_vehicle_log_services fvls
|
13
|
+
SET account_move_line_id = aml.id
|
14
|
+
FROM account_move am
|
15
|
+
JOIN account_move_line aml ON aml.move_id = am.id
|
16
|
+
WHERE fvls.vehicle_id = aml.vehicle_id
|
17
|
+
AND fvls.description = aml.name
|
18
|
+
AND fvls.vendor_id = aml.partner_id
|
19
|
+
AND fvls.service_type_id = {vendor_bill_service.id}
|
20
|
+
AND am.move_type = 'in_invoice' AND aml.display_type = 'product'
|
21
|
+
""",
|
22
|
+
)
|
23
|
+
|
24
|
+
|
25
|
+
@openupgrade.migrate()
|
26
|
+
def migrate(env, version):
|
27
|
+
fill_fleet_vehicle_log_services_x_account_move_line_id(env)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---Models in module 'account_fleet'---
|
2
|
+
---Fields in module 'account_fleet'---
|
3
|
+
account_fleet / account.move.line / vehicle_log_service_ids (one2many): NEW relation: fleet.vehicle.log.services
|
4
|
+
account_fleet / fleet.vehicle.log.services / account_move_line_id (many2one): NEW relation: account.move.line
|
5
|
+
# Done: post-migration
|
6
|
+
|
7
|
+
account_fleet / fleet.vehicle.log.services / vehicle_id (False) : NEW mode: modify, hasdefault: compute
|
8
|
+
# NOTHING TO DO: New compute fills this field using the account_move_line_id.vehicle_id
|
9
|
+
# which did not exist previously so there's no need for a pre-compute.
|
10
|
+
|
11
|
+
---XML records in module 'account_fleet'---
|
12
|
+
NEW ir.ui.view: account_fleet.fleet_vehicle_log_services_view_form
|
13
|
+
# NOTHING TO DO
|
@@ -0,0 +1,8 @@
|
|
1
|
+
---Models in module 'hr_fleet'---
|
2
|
+
---Fields in module 'hr_fleet'---
|
3
|
+
---XML records in module 'hr_fleet'---
|
4
|
+
NEW ir.rule: hr_fleet.fleet_rule_contract_visibility_user (noupdate)
|
5
|
+
NEW ir.rule: hr_fleet.fleet_rule_odometer_visibility_user (noupdate)
|
6
|
+
NEW ir.rule: hr_fleet.fleet_rule_service_visibility_user (noupdate)
|
7
|
+
NEW ir.rule: hr_fleet.fleet_rule_vehicle_visibility_user (noupdate)
|
8
|
+
# NOTHING TO DO
|
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/noupdate_changes_work.xml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<odoo>
|
3
|
+
<record id="product_pick_up_in_store" model="product.product">
|
4
|
+
<field name="name">Pick up in store</field>
|
5
|
+
<field name="description"/>
|
6
|
+
</record>
|
7
|
+
|
8
|
+
<record id="carrier_pick_up_in_store" model="delivery.carrier">
|
9
|
+
<field name="name">Pick up in store</field>
|
10
|
+
<field name="delivery_type">in_store</field>
|
11
|
+
<field name="product_id" ref="website_sale_collect.product_pick_up_in_store"/>
|
12
|
+
<!-- In the previous version, this record was published on the website,
|
13
|
+
so we must not unpublish it, as it can still be used.
|
14
|
+
<field name="website_published" /> -->
|
15
|
+
</record>
|
16
|
+
|
17
|
+
</odoo>
|
@@ -0,0 +1,76 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
def _delivery_carrier_map_delivery_type(env):
|
8
|
+
delivery_type_legacy = openupgrade.get_legacy_name("delivery_type")
|
9
|
+
openupgrade.map_values(
|
10
|
+
env.cr,
|
11
|
+
delivery_type_legacy,
|
12
|
+
"delivery_type",
|
13
|
+
[("onsite", "in_store")],
|
14
|
+
table="delivery_carrier",
|
15
|
+
)
|
16
|
+
|
17
|
+
|
18
|
+
def _payment_provider_map_custom_mode(env):
|
19
|
+
custom_mode_legacy = openupgrade.get_legacy_name("custom_mode")
|
20
|
+
openupgrade.map_values(
|
21
|
+
env.cr,
|
22
|
+
custom_mode_legacy,
|
23
|
+
"custom_mode",
|
24
|
+
[("onsite", "on_site")],
|
25
|
+
table="payment_provider",
|
26
|
+
)
|
27
|
+
|
28
|
+
|
29
|
+
def _handle_delivery_carrier_published(env):
|
30
|
+
"""
|
31
|
+
Odoo now has a constraint on delivery carrier publication:
|
32
|
+
the delivery carrier must be linked to a warehouse to be published.
|
33
|
+
See: https://github.com/odoo/odoo/blob/08b2573f2ac2b812a0e7f8ebaf90db431124ac69/addons/website_sale_collect/models/delivery_carrier.py#L26
|
34
|
+
Therefore, we need to unpublish delivery carriers that are not linked to a warehouse
|
35
|
+
since in V17 the warehouse_id field was not required.
|
36
|
+
"""
|
37
|
+
openupgrade.logged_query(
|
38
|
+
env.cr,
|
39
|
+
"""
|
40
|
+
UPDATE delivery_carrier
|
41
|
+
SET is_published = FALSE
|
42
|
+
WHERE delivery_type = 'in_store'
|
43
|
+
AND is_published = TRUE
|
44
|
+
AND NOT EXISTS (
|
45
|
+
SELECT 1
|
46
|
+
FROM delivery_carrier_stock_warehouse_rel m2m
|
47
|
+
WHERE m2m.delivery_carrier_id = delivery_carrier.id
|
48
|
+
)
|
49
|
+
""",
|
50
|
+
)
|
51
|
+
|
52
|
+
|
53
|
+
@openupgrade.migrate()
|
54
|
+
def migrate(env, version):
|
55
|
+
openupgrade.m2o_to_x2m(
|
56
|
+
env.cr,
|
57
|
+
env["delivery.carrier"],
|
58
|
+
"delivery_carrier",
|
59
|
+
"warehouse_ids",
|
60
|
+
"warehouse_id",
|
61
|
+
)
|
62
|
+
_delivery_carrier_map_delivery_type(env)
|
63
|
+
_payment_provider_map_custom_mode(env)
|
64
|
+
_handle_delivery_carrier_published(env)
|
65
|
+
openupgrade.load_data(
|
66
|
+
env, "website_sale_collect", "18.0.1.0/noupdate_changes_work.xml"
|
67
|
+
)
|
68
|
+
openupgrade.delete_record_translations(
|
69
|
+
env.cr,
|
70
|
+
"website_sale_collect",
|
71
|
+
[
|
72
|
+
"carrier_pick_up_in_store",
|
73
|
+
"payment_provider_on_site",
|
74
|
+
"product_pick_up_in_store",
|
75
|
+
],
|
76
|
+
)
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
_columns_copy = {
|
7
|
+
"delivery_carrier": [("delivery_type", None, None)],
|
8
|
+
"payment_provider": [("custom_mode", None, None)],
|
9
|
+
}
|
10
|
+
|
11
|
+
# Use the module name website_sale_collect in old XML-IDs,
|
12
|
+
# because in the base it was renamed from website_sale_picking
|
13
|
+
_xmlids_renames = [
|
14
|
+
(
|
15
|
+
"website_sale_collect.default_onsite_carrier",
|
16
|
+
"website_sale_collect.carrier_pick_up_in_store",
|
17
|
+
),
|
18
|
+
(
|
19
|
+
"website_sale_collect.payment_provider_onsite",
|
20
|
+
"website_sale_collect.payment_provider_on_site",
|
21
|
+
),
|
22
|
+
(
|
23
|
+
"website_sale_collect.onsite_delivery_product",
|
24
|
+
"website_sale_collect.product_pick_up_in_store",
|
25
|
+
),
|
26
|
+
(
|
27
|
+
"website_sale_collect.view_delivery_carrier_form_with_onsite_picking",
|
28
|
+
"website_sale_collect.delivery_carrier_form",
|
29
|
+
),
|
30
|
+
(
|
31
|
+
"website_sale_collect.res_config_settings_view_form",
|
32
|
+
"website_sale_collect.res_config_settings_form",
|
33
|
+
),
|
34
|
+
]
|
35
|
+
|
36
|
+
|
37
|
+
@openupgrade.migrate()
|
38
|
+
def migrate(env, version):
|
39
|
+
openupgrade.copy_columns(env.cr, _columns_copy)
|
40
|
+
openupgrade.rename_xmlids(env.cr, _xmlids_renames)
|
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
---Models in module 'website_sale_collect'---
|
2
|
+
---Fields in module 'website_sale_collect'---
|
3
|
+
website_sale_collect / delivery.carrier / warehouse_ids (many2many) : NEW relation: stock.warehouse
|
4
|
+
website_sale_picking / delivery.carrier / warehouse_id (many2one) : DEL relation: stock.warehouse
|
5
|
+
# DONE: post-migration: convert data many2one to many2many
|
6
|
+
|
7
|
+
website_sale_collect / stock.warehouse / opening_hours (many2one) : NEW relation: resource.calendar
|
8
|
+
# NOTHING TO DO: New feature, the location selector only displays the opening hours info if it is set.
|
9
|
+
# added in https://github.com/odoo/odoo/commit/087c48c4ed2eff55361a2b9fa925800dbdc46fab
|
10
|
+
|
11
|
+
website_sale_picking / delivery.carrier / delivery_type (False) : selection_keys added: [gelato, in_store], removed: [onsite]
|
12
|
+
website_sale_picking / payment.provider / custom_mode (False) : selection_keys added: [on_site], removed: [onsite]
|
13
|
+
# DONE: pre-migration: copy columns for preserving values.
|
14
|
+
# DONE: post-migration: map values: delivery.carrier: onsite > in_store. payment.provider: onsite > on_site
|
15
|
+
|
16
|
+
---XML records in module 'website_sale_collect'---
|
17
|
+
NEW ir.ui.view: website_sale_collect.in_store_delivery_method
|
18
|
+
NEW ir.ui.view: website_sale_collect.product_page_click_and_collect
|
19
|
+
NEW ir.ui.view: website_sale_collect.stock_picking_form
|
20
|
+
NEW ir.ui.view: website_sale_collect.stock_warehouse_form
|
21
|
+
NEW ir.ui.view: website_sale_collect.unavailable_products_warning
|
22
|
+
DEL ir.ui.view: website_sale_picking.checkout_delivery
|
23
|
+
DEL ir.ui.view: website_sale_picking.payment_method_form
|
24
|
+
# NOTHING TO DO: handled by ORM
|
25
|
+
|
26
|
+
NEW delivery.carrier: website_sale_collect.carrier_pick_up_in_store (noupdate)
|
27
|
+
DEL delivery.carrier: website_sale_picking.default_onsite_carrier (noupdate)
|
28
|
+
NEW payment.provider: website_sale_collect.payment_provider_on_site
|
29
|
+
DEL payment.provider: website_sale_picking.payment_provider_onsite
|
30
|
+
NEW product.product: website_sale_collect.product_pick_up_in_store (noupdate)
|
31
|
+
DEL product.product: website_sale_picking.onsite_delivery_product (noupdate)
|
32
|
+
NEW ir.ui.view: website_sale_collect.delivery_carrier_form
|
33
|
+
DEL ir.ui.view: website_sale_picking.view_delivery_carrier_form_with_onsite_picking
|
34
|
+
NEW ir.ui.view: website_sale_collect.res_config_settings_form
|
35
|
+
DEL ir.ui.view: website_sale_picking.res_config_settings_view_form
|
36
|
+
# DONE: pre-migration: rename XML-IDs for this data according this commit https://github.com/odoo/odoo/commit/087c48c4ed2eff55361a2b9fa925800dbdc46fab
|
37
|
+
|
38
|
+
NEW ir.ui.view: website_sale_collect.payment_confirmation_status
|
39
|
+
DEL ir.ui.view: website_sale_picking.payment_confirmation_status
|
40
|
+
NEW payment.method: website_sale_collect.payment_method_pay_on_site [renamed from website_sale_picking module]
|
41
|
+
DEL payment.method: website_sale_picking.payment_method_pay_on_site [renamed to website_sale_collect module]
|
42
|
+
# NOTHING TO DO: The XML-IDs are identical; the rename is handled in the base module when modules are renamed.
|
@@ -22,7 +22,9 @@ odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_ana
|
|
22
22
|
odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii/18.0.1.0/upgrade_analysis_work.txt,sha256=KJlhf73oFXfr6iWobBCezXXgq5tBPkt6wL7gf-UhBt0,3199
|
23
23
|
odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii_tax_extension/18.0.1.0/upgrade_analysis.txt,sha256=rcCuXHU-maa0y4sBG1MYAvfXxjQq8MTzxIDcAxyKJTc,222
|
24
24
|
odoo/addons/openupgrade_scripts/scripts/account_edi_ubl_cii_tax_extension/18.0.1.0/upgrade_analysis_work.txt,sha256=rbbyPbKfc6M5eNJ9a1GKA9huTfTgwTOeQx_RybYTy3s,238
|
25
|
+
odoo/addons/openupgrade_scripts/scripts/account_fleet/18.0.1.0/post-migration.py,sha256=pE-jgT78ZGGFRVAp7V--bef8RFJLhSwAdWp0NhoyeDY,1003
|
25
26
|
odoo/addons/openupgrade_scripts/scripts/account_fleet/18.0.1.0/upgrade_analysis.txt,sha256=10CCDsJ4PtBUMqMk7HIqAcydbtz834S7czvftaUDQjc,534
|
27
|
+
odoo/addons/openupgrade_scripts/scripts/account_fleet/18.0.1.0/upgrade_analysis_work.txt,sha256=hufliIgkC051a3-Vat6baswFY2XkSrLYlSZ9C5niAOM,734
|
26
28
|
odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/noupdate_changes.xml,sha256=Pk4cPPyZPYny1BuacSqXpuMpd2WCgmzMWh0KI0qcCPw,196
|
27
29
|
odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/upgrade_analysis.txt,sha256=v2_DjSKVkR4OAwcPapt4rDWAipoMPnWdlvIq6UTjH5U,544
|
28
30
|
odoo/addons/openupgrade_scripts/scripts/account_payment/18.0.2.0/upgrade_analysis_work.txt,sha256=f6_XQdfTic1_uCSsiqyGDcJ0uUPKzkvzy6l_yvRlI4c,560
|
@@ -166,6 +168,7 @@ odoo/addons/openupgrade_scripts/scripts/hr_expense/18.0.2.0/pre-migration.py,sha
|
|
166
168
|
odoo/addons/openupgrade_scripts/scripts/hr_expense/18.0.2.0/upgrade_analysis.txt,sha256=nqtEo1Zl2ZBkM7Z-KD-ExyKoTbqX4bFRIwBs1k0eBSU,972
|
167
169
|
odoo/addons/openupgrade_scripts/scripts/hr_expense/18.0.2.0/upgrade_analysis_work.txt,sha256=ec4tjoZSXLrrdkxsx0iOzFuBPqpsYa2BqthYQHHHkmo,1704
|
168
170
|
odoo/addons/openupgrade_scripts/scripts/hr_fleet/18.0.1.0/upgrade_analysis.txt,sha256=4AtSOtDSSQqYwX6Js1HXoSQpgb0gslWUXgfp8PnUsdk,381
|
171
|
+
odoo/addons/openupgrade_scripts/scripts/hr_fleet/18.0.1.0/upgrade_analysis_work.txt,sha256=nhWSr1aKjARj4bPdYTbMe8txE-7X1ZyKkGhHqmfGepc,397
|
169
172
|
odoo/addons/openupgrade_scripts/scripts/hr_gamification/18.0.1.0/upgrade_analysis.txt,sha256=dGMSZcYGhQ8X9UxpabftmfyBei4-mTWjsXpY5MLVSZM,205
|
170
173
|
odoo/addons/openupgrade_scripts/scripts/hr_gamification/18.0.1.0/upgrade_analysis_work.txt,sha256=oSFbmry-ZHC6woVmqO7_1wG95gy-H_kdPsReRk00mmw,221
|
171
174
|
odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/noupdate_changes.xml,sha256=E-oKUt2VpNCp5PBeS5ObcIhTYZWC2C7nWPwOuz19LCg,3401
|
@@ -753,7 +756,11 @@ odoo/addons/openupgrade_scripts/scripts/website_sale/18.0.1.1/pre-migration.py,s
|
|
753
756
|
odoo/addons/openupgrade_scripts/scripts/website_sale/18.0.1.1/upgrade_analysis.txt,sha256=npxT-i1nUqgLS-nMPT4aSwkxVTxqXqhVM-i9T553D1o,4219
|
754
757
|
odoo/addons/openupgrade_scripts/scripts/website_sale/18.0.1.1/upgrade_analysis_work.txt,sha256=XR5x17a4QYOCQ5P3Pdh0N16QkzSm8oyWb3cNUlVec0g,5179
|
755
758
|
odoo/addons/openupgrade_scripts/scripts/website_sale_autocomplete/18.0.1.0/upgrade_analysis.txt,sha256=YswdVijMPe2DoMTSlJqSbdFd1ZcTK4PfRvXvm1cd3XM,198
|
759
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/noupdate_changes_work.xml,sha256=-KIN9vyPzBg1Mc-4QHpBQOIgDsEQ_tMy4kCQtvw9DhY,688
|
760
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/post-migration.py,sha256=BEDk_wpGjsmJlEtWiLloRIyek5re0MacD04v_iRvpkU,2297
|
761
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/pre-migration.py,sha256=WiLQLWUsTNehMuXoWvpXLSBMC26Fj_ZgT_-hKCUh0W8,1243
|
756
762
|
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/upgrade_analysis.txt,sha256=UDxDSo0Be1Ti_xEiM9giSG0xu7TNqFiAF_RcCxJQSNw,2246
|
763
|
+
odoo/addons/openupgrade_scripts/scripts/website_sale_collect/18.0.1.0/upgrade_analysis_work.txt,sha256=6oGTA9AGGLDrYnC8AxHjFBFusB0Icjn9RjM4nj6bcBc,2962
|
757
764
|
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/18.0.1.0/upgrade_analysis.txt,sha256=bTSciAg2bCbBcVYoostlp6AjqbFEez1xnVHLYZFdeM0,274
|
758
765
|
odoo/addons/openupgrade_scripts/scripts/website_sale_comparison/18.0.1.0/upgrade_analysis_work.txt,sha256=jOp6YqVYczcE7eCLK6qWHsEej3egflA9f0CKNAXRRMg,290
|
759
766
|
odoo/addons/openupgrade_scripts/scripts/website_sale_loyalty/18.0.1.0/upgrade_analysis.txt,sha256=99KJxKrOFiemi2WA9ihfINnYz0wn2i2kg2TcD1fjztE,183
|
@@ -775,7 +782,7 @@ odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_a
|
|
775
782
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
776
783
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
777
784
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Jc0qAThlH5WnoSq6vPamjC8WyMkdo_9zkhDuU1qW1VI,12722
|
778
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
779
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
780
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
781
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
785
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info/METADATA,sha256=9ngaSnxpA-rPOQQ-Q6IlX1hF-ezEJw9kr0DXbmScLAA,3812
|
786
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
787
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
788
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.385.dist-info/RECORD,,
|
File without changes
|