odoo-addon-openupgrade-scripts 17.0.1.0.1.75__py3-none-any.whl → 17.0.1.0.1.87__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 +3 -0
- odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/noupdate_changes_work.xml +157 -0
- odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/post-migration.py +544 -0
- odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/pre-migration.py +291 -0
- odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/upgrade_analysis_work.txt +498 -0
- odoo/addons/openupgrade_scripts/scripts/account/tests/data_account_migration.py +20 -0
- odoo/addons/openupgrade_scripts/scripts/account/tests/test_account_migration.py +34 -0
- odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/post-migration.py +90 -0
- odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/pre-migration.py +43 -0
- odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/upgrade_analysis_work.txt +163 -0
- odoo/addons/openupgrade_scripts/scripts/stock/tests/data_stock_migration.py +16 -0
- odoo/addons/openupgrade_scripts/scripts/stock/tests/test_stock_migration.py +31 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.75.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.75.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info}/RECORD +16 -5
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.75.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.75.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,90 @@
|
|
1
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
2
|
+
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _stock_scrap_convert_move_id_m2o_to_o2m(env):
|
7
|
+
"""
|
8
|
+
Convert m2o to o2m in 'stock.scrap'
|
9
|
+
"""
|
10
|
+
openupgrade.m2o_to_x2m(
|
11
|
+
env.cr, env["stock.scrap"], "stock_scrap", "move_ids", "move_id"
|
12
|
+
)
|
13
|
+
|
14
|
+
|
15
|
+
def fix_move_quantity(env):
|
16
|
+
"""
|
17
|
+
Recompute move quantity for move lines that have been changed in pre-migration
|
18
|
+
"""
|
19
|
+
env.cr.execute(
|
20
|
+
"""
|
21
|
+
SELECT DISTINCT move_id FROM stock_move_line
|
22
|
+
WHERE
|
23
|
+
state IN ('assigned', 'partially_available')
|
24
|
+
AND reserved_qty <> 0
|
25
|
+
"""
|
26
|
+
)
|
27
|
+
moves = env["stock.move"].browse(_id for (_id,) in env.cr.fetchall())
|
28
|
+
env.add_to_compute(moves._fields["quantity"], moves)
|
29
|
+
moves._recompute_recordset(["quantity"])
|
30
|
+
|
31
|
+
|
32
|
+
def link_returned_pickings(env):
|
33
|
+
"""
|
34
|
+
Link pickings containing returned moves to the pickings containing the moves
|
35
|
+
being returned
|
36
|
+
"""
|
37
|
+
openupgrade.logged_query(
|
38
|
+
env.cr,
|
39
|
+
"""
|
40
|
+
UPDATE stock_picking
|
41
|
+
SET
|
42
|
+
return_id = returned_move.picking_id
|
43
|
+
FROM
|
44
|
+
stock_move
|
45
|
+
JOIN stock_move returned_move
|
46
|
+
ON stock_move.origin_returned_move_id = returned_move.id
|
47
|
+
WHERE
|
48
|
+
stock_move.picking_id = stock_picking.id
|
49
|
+
""",
|
50
|
+
)
|
51
|
+
|
52
|
+
|
53
|
+
def set_picking_type_return_location(env):
|
54
|
+
"""
|
55
|
+
Set default_location_return_id on picking types from the destination location
|
56
|
+
of the warehouse's return picking type
|
57
|
+
"""
|
58
|
+
openupgrade.logged_query(
|
59
|
+
env.cr,
|
60
|
+
"""
|
61
|
+
UPDATE stock_picking_type
|
62
|
+
SET
|
63
|
+
default_location_return_id = COALESCE(
|
64
|
+
picking_return_type.default_location_dest_id,
|
65
|
+
warehouse_return_type.default_location_dest_id
|
66
|
+
)
|
67
|
+
FROM
|
68
|
+
stock_picking_type self
|
69
|
+
JOIN stock_warehouse
|
70
|
+
ON self.warehouse_id=stock_warehouse.id
|
71
|
+
LEFT JOIN stock_picking_type picking_return_type
|
72
|
+
ON self.return_picking_type_id=picking_return_type.id
|
73
|
+
LEFT JOIN stock_picking_type warehouse_return_type
|
74
|
+
ON stock_warehouse.return_type_id=warehouse_return_type.id
|
75
|
+
WHERE
|
76
|
+
stock_picking_type.id=self.id
|
77
|
+
""",
|
78
|
+
)
|
79
|
+
|
80
|
+
|
81
|
+
@openupgrade.migrate()
|
82
|
+
def migrate(env, version):
|
83
|
+
openupgrade.load_data(env, "stock", "17.0.1.1/noupdate_changes.xml")
|
84
|
+
openupgrade.delete_record_translations(
|
85
|
+
env.cr, "stock", ["mail_template_data_delivery_confirmation"]
|
86
|
+
)
|
87
|
+
_stock_scrap_convert_move_id_m2o_to_o2m(env)
|
88
|
+
fix_move_quantity(env)
|
89
|
+
link_returned_pickings(env)
|
90
|
+
set_picking_type_return_location(env)
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
2
|
+
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
_field_renames = [
|
6
|
+
("stock.move", "stock_move", "quantity_done", "quantity"),
|
7
|
+
]
|
8
|
+
|
9
|
+
_column_copies = {
|
10
|
+
"stock_move_line": [
|
11
|
+
("qty_done", "quantity", None),
|
12
|
+
]
|
13
|
+
}
|
14
|
+
|
15
|
+
|
16
|
+
def fix_move_line_quantity(env):
|
17
|
+
"""
|
18
|
+
v17 combines what used to be reserved_qty and qty_done.
|
19
|
+
We assume that we shouldn't touch an original qty_done on
|
20
|
+
done moves, but that we can best reflect the v16 state of
|
21
|
+
lines being worked on by adding reserved_qty to the new
|
22
|
+
quantity column, which was qty_done in v16
|
23
|
+
|
24
|
+
In post-migration, we'll recompute the quantity field of
|
25
|
+
moves affected.
|
26
|
+
"""
|
27
|
+
openupgrade.logged_query(
|
28
|
+
env.cr,
|
29
|
+
"""
|
30
|
+
UPDATE stock_move_line
|
31
|
+
SET quantity = quantity + reserved_qty
|
32
|
+
WHERE
|
33
|
+
state IN ('assigned', 'partially_available')
|
34
|
+
AND reserved_qty <> 0
|
35
|
+
""",
|
36
|
+
)
|
37
|
+
|
38
|
+
|
39
|
+
@openupgrade.migrate()
|
40
|
+
def migrate(env, version):
|
41
|
+
openupgrade.rename_fields(env, _field_renames)
|
42
|
+
openupgrade.copy_columns(env.cr, _column_copies)
|
43
|
+
fix_move_line_quantity(env)
|
@@ -0,0 +1,163 @@
|
|
1
|
+
---Models in module 'stock'---
|
2
|
+
obsolete model report.stock.report_product_product_replenishment [abstract]
|
3
|
+
obsolete model report.stock.report_product_template_replenishment [abstract]
|
4
|
+
obsolete model stock.immediate.transfer [transient]
|
5
|
+
obsolete model stock.immediate.transfer.line [transient]
|
6
|
+
new model stock.forecasted_product_product [abstract]
|
7
|
+
new model stock.forecasted_product_template [abstract]
|
8
|
+
new model stock.quant.relocate [transient]
|
9
|
+
# NOTHING TO DO
|
10
|
+
|
11
|
+
---Fields in module 'stock'---
|
12
|
+
stock / product.category / filter_for_stock_putaway_rule (boolean): NEW
|
13
|
+
stock / product.product / lot_properties_definition (properties_definition): NEW
|
14
|
+
# NOTHING TO DO: fields in new model
|
15
|
+
|
16
|
+
stock / product.product / sale_delay (float) : type is now 'integer' ('float')
|
17
|
+
stock / product.template / sale_delay (float) : type is now 'integer' ('float')
|
18
|
+
# NOTHING TO DO
|
19
|
+
|
20
|
+
stock / stock.lot / activity_user_id (many2one) : not related anymore
|
21
|
+
stock / stock.lot / activity_user_id (many2one) : now a function
|
22
|
+
stock / stock.lot / location_id (many2one) : NEW relation: stock.location, isfunction: function, stored
|
23
|
+
stock / stock.lot / lot_properties (properties) : NEW hasdefault: compute
|
24
|
+
stock / stock.lot / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
25
|
+
stock / stock.lot / rating_ids (one2many) : NEW relation: rating.rating
|
26
|
+
# NOTHING TO DO
|
27
|
+
|
28
|
+
stock / stock.move / move_line_nosuggest_ids (one2many): DEL relation: stock.move.line
|
29
|
+
stock / stock.move / picked (boolean) : NEW isfunction: function, stored
|
30
|
+
stock / stock.move / picking_type_id (many2one) : not a function anymore
|
31
|
+
# NOTHING TO DO
|
32
|
+
|
33
|
+
stock / stock.move / quantity (float) : NEW isfunction: function, stored
|
34
|
+
stock / stock.move / quantity_done (float) : DEL
|
35
|
+
# DONE: renamed in pre-migration
|
36
|
+
|
37
|
+
stock / stock.move / scrap_id (many2one) : NEW relation: stock.scrap
|
38
|
+
stock / stock.move / scrap_ids (one2many) : DEL relation: stock.scrap
|
39
|
+
stock / stock.scrap / move_id (many2one) : DEL relation: stock.move
|
40
|
+
stock / stock.scrap / move_ids (one2many) : NEW relation: stock.move
|
41
|
+
# DONE post-migration: convert data many2one to one2many
|
42
|
+
|
43
|
+
stock / stock.move.line / qty_done (float) : DEL
|
44
|
+
stock / stock.move.line / quantity (float) : NEW hasdefault: compute
|
45
|
+
# DONE: pre-migration
|
46
|
+
|
47
|
+
stock / stock.move.line / picked (boolean) : NEW hasdefault: compute
|
48
|
+
stock / stock.move.line / quant_id (many2one) : NEW relation: stock.quant
|
49
|
+
stock / stock.move.line / quantity_product_uom (float) : NEW isfunction: function, stored
|
50
|
+
# NOTHING TO DO
|
51
|
+
|
52
|
+
stock / stock.move.line / reserved_qty (float) : DEL
|
53
|
+
stock / stock.move.line / reserved_uom_qty (float) : DEL required
|
54
|
+
# DONE: added to quantity in pre-migration, recompute stock.move#quantity in post-migration
|
55
|
+
|
56
|
+
|
57
|
+
stock / stock.package.type / height (integer) : type is now 'float' ('integer')
|
58
|
+
stock / stock.package.type / packaging_length (integer) : type is now 'float' ('integer')
|
59
|
+
stock / stock.package.type / width (integer) : type is now 'float' ('integer')
|
60
|
+
# NOTHING TO DO
|
61
|
+
|
62
|
+
stock / stock.picking / activity_user_id (many2one) : not related anymore
|
63
|
+
stock / stock.picking / activity_user_id (many2one) : now a function
|
64
|
+
stock / stock.picking / immediate_transfer (boolean) : DEL
|
65
|
+
stock / stock.picking / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
66
|
+
stock / stock.picking / move_ids_without_package (one2many): is now stored
|
67
|
+
stock / stock.picking / move_ids_without_package (one2many): not a function anymore
|
68
|
+
stock / stock.picking / move_line_nosuggest_ids (one2many): DEL relation: stock.move.line
|
69
|
+
stock / stock.picking / picking_properties (properties): NEW hasdefault: compute
|
70
|
+
stock / stock.picking / rating_ids (one2many) : NEW relation: rating.rating
|
71
|
+
stock / stock.picking / show_operations (boolean) : not a function anymore
|
72
|
+
stock / stock.picking / show_operations (boolean) : now related
|
73
|
+
# NOTHING TO DO
|
74
|
+
|
75
|
+
stock / stock.picking / return_id (many2one) : NEW relation: stock.picking
|
76
|
+
stock / stock.picking / return_ids (one2many) : NEW relation: stock.picking
|
77
|
+
# DONE filled from returned moves in post-migration
|
78
|
+
|
79
|
+
stock / stock.picking.type / auto_print_delivery_slip (boolean): NEW
|
80
|
+
stock / stock.picking.type / auto_print_lot_labels (boolean): NEW
|
81
|
+
stock / stock.picking.type / auto_print_package_label (boolean): NEW
|
82
|
+
stock / stock.picking.type / auto_print_packages (boolean) : NEW
|
83
|
+
stock / stock.picking.type / auto_print_product_labels (boolean): NEW
|
84
|
+
stock / stock.picking.type / auto_print_reception_report (boolean): NEW
|
85
|
+
stock / stock.picking.type / auto_print_reception_report_labels (boolean): NEW
|
86
|
+
stock / stock.picking.type / auto_print_return_slip (boolean): NEW
|
87
|
+
stock / stock.picking.type / lot_label_format (selection) : NEW selection_keys: ['4x12_lots', '4x12_units', 'zpl_lots', 'zpl_units'], hasdefault: default
|
88
|
+
stock / stock.picking.type / package_label_to_print (selection): NEW selection_keys: ['pdf', 'zpl'], hasdefault: default
|
89
|
+
stock / stock.picking.type / picking_properties_definition (properties_definition): NEW
|
90
|
+
stock / stock.picking.type / product_label_format (selection): NEW selection_keys: ['2x7xprice', '4x12', '4x12xprice', '4x7xprice', 'dymo', 'zpl', 'zplxprice'], hasdefault: default
|
91
|
+
|
92
|
+
# NOTHING TO DO: new features
|
93
|
+
|
94
|
+
stock / stock.picking.type / show_reserved (boolean) : now a function
|
95
|
+
|
96
|
+
# NOTHING TO DO: compute function acts as a default
|
97
|
+
|
98
|
+
stock / stock.picking.type / default_location_return_id (many2one): NEW relation: stock.location
|
99
|
+
# DONE set from warehouse's previous return picking type's destination location
|
100
|
+
|
101
|
+
stock / stock.scrap / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
102
|
+
stock / stock.scrap / rating_ids (one2many) : NEW relation: rating.rating
|
103
|
+
stock / stock.scrap / should_replenish (boolean) : NEW
|
104
|
+
stock / stock.warehouse / return_type_id (many2one) : DEL relation: stock.picking.type
|
105
|
+
# NOTHING TO DO
|
106
|
+
|
107
|
+
---XML records in module 'stock'---
|
108
|
+
NEW ir.actions.act_window: stock.action_picking_tree_incoming
|
109
|
+
NEW ir.actions.act_window: stock.action_picking_tree_internal
|
110
|
+
NEW ir.actions.act_window: stock.action_picking_tree_outgoing
|
111
|
+
NEW ir.actions.act_window: stock.action_product_production_lot_form
|
112
|
+
# NOTHING TO DO
|
113
|
+
|
114
|
+
NEW ir.actions.client: stock.stock_forecasted_product_product_action
|
115
|
+
NEW ir.actions.client: stock.stock_forecasted_product_template_action
|
116
|
+
DEL ir.actions.client: stock.stock_replenishment_product_product_action
|
117
|
+
DEL ir.actions.client: stock.stock_replenishment_product_template_action
|
118
|
+
|
119
|
+
NEW ir.actions.report: stock.return_label_report
|
120
|
+
NEW ir.actions.server: stock.action_scrap
|
121
|
+
NEW ir.actions.server: stock.action_toggle_is_locked
|
122
|
+
NEW ir.actions.server: stock.action_view_set_to_zero_quants_tree
|
123
|
+
DEL ir.actions.server: stock.stock_quant_stock_move_line_desynchronization
|
124
|
+
# NOTHING TO DO
|
125
|
+
|
126
|
+
NEW ir.model.access: stock.access_stock_quant_relocate
|
127
|
+
DEL ir.model.access: stock.access_stock_immediate_transfer
|
128
|
+
DEL ir.model.access: stock.access_stock_immediate_transfer_line
|
129
|
+
# NOTHING TO DO: new feature
|
130
|
+
|
131
|
+
ir.model.constraint: stock.constraint_stock_package_type_positive_height (changed definition: is now 'check(height>=0.0)' ('check(height>=0)'))
|
132
|
+
ir.model.constraint: stock.constraint_stock_package_type_positive_length (changed definition: is now 'check(packaging_length>=0.0)' ('check(packaging_length>=0)'))
|
133
|
+
ir.model.constraint: stock.constraint_stock_package_type_positive_width (changed definition: is now 'check(width>=0.0)' ('check(width>=0)'))
|
134
|
+
# NOTHING TO DO
|
135
|
+
|
136
|
+
NEW ir.ui.menu: stock.in_picking
|
137
|
+
NEW ir.ui.menu: stock.int_picking
|
138
|
+
NEW ir.ui.menu: stock.menu_stock_adjustments
|
139
|
+
NEW ir.ui.menu: stock.menu_stock_procurement
|
140
|
+
NEW ir.ui.menu: stock.menu_stock_transfers
|
141
|
+
NEW ir.ui.menu: stock.out_picking
|
142
|
+
DEL ir.ui.menu: stock.all_picking
|
143
|
+
# NOTHING TO DO: new feature
|
144
|
+
|
145
|
+
NEW ir.ui.view: stock.product_view_kanban_catalog
|
146
|
+
NEW ir.ui.view: stock.report_return_slip
|
147
|
+
NEW ir.ui.view: stock.stock_picking_view_activity
|
148
|
+
NEW ir.ui.view: stock.stock_quant_relocate_view_form
|
149
|
+
NEW ir.ui.view: stock.view_production_lot_kanban
|
150
|
+
NEW ir.ui.view: stock.view_stock_move_line_pivot
|
151
|
+
NEW ir.ui.view: stock.view_stock_quant_form
|
152
|
+
NEW ir.ui.view: stock.view_stock_quant_tree_simple
|
153
|
+
DEL ir.ui.view: stock.report_mrp_line
|
154
|
+
DEL ir.ui.view: stock.report_product_product_replenishment
|
155
|
+
DEL ir.ui.view: stock.report_product_template_replenishment
|
156
|
+
DEL ir.ui.view: stock.report_replenishment_header
|
157
|
+
DEL ir.ui.view: stock.report_stock_inventory
|
158
|
+
DEL ir.ui.view: stock.view_immediate_transfer
|
159
|
+
DEL ir.ui.view: stock.view_stock_move_nosuggest_operations
|
160
|
+
# NOTHING TO DO
|
161
|
+
|
162
|
+
NEW product.removal: stock.removal_least_packages
|
163
|
+
# NOTHING TO DO
|
@@ -0,0 +1,16 @@
|
|
1
|
+
env = locals().get("env")
|
2
|
+
# return a picking so that we have something to migrate
|
3
|
+
picking = env.ref("stock.outgoing_shipment_main_warehouse1")
|
4
|
+
return_wizard = (
|
5
|
+
env["stock.return.picking"]
|
6
|
+
.with_context(
|
7
|
+
active_id=picking.id,
|
8
|
+
active_ids=picking.ids,
|
9
|
+
active_model=picking._name,
|
10
|
+
)
|
11
|
+
.create({})
|
12
|
+
)
|
13
|
+
return_wizard._onchange_picking_id()
|
14
|
+
return_wizard._create_returns()
|
15
|
+
|
16
|
+
env.cr.commit()
|
@@ -0,0 +1,31 @@
|
|
1
|
+
from odoo.tests import TransactionCase
|
2
|
+
|
3
|
+
from odoo.addons.openupgrade_framework import openupgrade_test
|
4
|
+
|
5
|
+
|
6
|
+
@openupgrade_test
|
7
|
+
class TestStockMigration(TransactionCase):
|
8
|
+
def test_move_quantity(self):
|
9
|
+
"""
|
10
|
+
Test that we add reserved_qty to quantity for assigned moves
|
11
|
+
"""
|
12
|
+
picking = self.env.ref("stock.outgoing_shipment_main_warehouse4")
|
13
|
+
self.assertEqual(picking.move_ids.quantity, 16)
|
14
|
+
picking = self.env.ref("stock.incomming_shipment2")
|
15
|
+
self.assertEqual(picking.move_ids.quantity, 125)
|
16
|
+
|
17
|
+
def test_returned_picking(self):
|
18
|
+
"""
|
19
|
+
Test that we correctly link returned pickings to their origin picking
|
20
|
+
"""
|
21
|
+
returned_picking = self.env.ref("stock.outgoing_shipment_main_warehouse1")
|
22
|
+
self.assertTrue(returned_picking.return_ids)
|
23
|
+
|
24
|
+
def test_return_location(self):
|
25
|
+
"""
|
26
|
+
Test that we set the default return location for pickings from the warehouse's
|
27
|
+
return picking type from v16
|
28
|
+
"""
|
29
|
+
picking_type = self.env.ref("stock.picking_type_in")
|
30
|
+
stock_location = self.env.ref("stock.stock_location_stock")
|
31
|
+
self.assertEqual(picking_type.default_location_return_id, stock_location)
|
@@ -1,12 +1,18 @@
|
|
1
1
|
odoo/addons/openupgrade_scripts/README.rst,sha256=F-NgZfCSC-In2HctZruRu5RXLtEBFegzZYW5KpobcWU,3182
|
2
2
|
odoo/addons/openupgrade_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
odoo/addons/openupgrade_scripts/__manifest__.py,sha256=7Yx2vwKl2vEHnUbDuuTprHLg2oQrKQMkpWEfyFneA0Q,614
|
4
|
-
odoo/addons/openupgrade_scripts/apriori.py,sha256
|
4
|
+
odoo/addons/openupgrade_scripts/apriori.py,sha256=jircJQMukxoYcdba2ysQPEJlw67MG55d8JjxH-Qs8TA,1944
|
5
5
|
odoo/addons/openupgrade_scripts/readme/CONFIGURE.md,sha256=rnx8ADTYzVUB93PIG3Lib0iWBrphSfVRs6RMikklf3M,238
|
6
6
|
odoo/addons/openupgrade_scripts/readme/DESCRIPTION.md,sha256=HPjPs_KluLFMYXPaJcnoneY8BAh-XPwEAP71I7VTTbo,86
|
7
7
|
odoo/addons/openupgrade_scripts/readme/INSTALL.md,sha256=NDKVZRv0J8BTqcSTD7JwUXL_AY-cDJoegn5IUTbEOFk,113
|
8
8
|
odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/noupdate_changes.xml,sha256=8s62iD--I0CEeBE1C3mAsS9LMCg7Uw3YNwK8WmSfAZw,8531
|
9
|
+
odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/noupdate_changes_work.xml,sha256=eIPxEPrqPOdaH4U2i0ttgP3xB_vLh_GEXqPPZx3lKVU,8751
|
10
|
+
odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/post-migration.py,sha256=4stqQZhIVs2h4I6BkRCC9eV3RHr78SEvc1ft_B4Lq94,19870
|
11
|
+
odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/pre-migration.py,sha256=-JE_fE-VhI704zuSWOJvk3EFwZqmmqK9rKu6s_x2YGg,8827
|
9
12
|
odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/upgrade_analysis.txt,sha256=19yPTHtbxe4EiXDSWt8wOasdR_aRHxbqA-WllHg6K3Q,37049
|
13
|
+
odoo/addons/openupgrade_scripts/scripts/account/17.0.1.2/upgrade_analysis_work.txt,sha256=72bTiDmpt-6R4sgLEowF-7OC4iNr0U2HrlgrfHZhgcQ,41160
|
14
|
+
odoo/addons/openupgrade_scripts/scripts/account/tests/data_account_migration.py,sha256=X2PQ8HnArd9SDH-7VpYWmDpjmCs2tH_GkR7YLKnDoWA,491
|
15
|
+
odoo/addons/openupgrade_scripts/scripts/account/tests/test_account_migration.py,sha256=NxO0JzTPzbZ2TZhHCLqJ0VrJQptf4Re2_1Qg_xjH0lY,1009
|
10
16
|
odoo/addons/openupgrade_scripts/scripts/account_audit_trail/17.0.1.0/upgrade_analysis.txt,sha256=6W6bG6eWaZn1NGmjGLO1G_h7nmbqvO5_yNNIFGP3RUc,601
|
11
17
|
odoo/addons/openupgrade_scripts/scripts/account_check_printing/17.0.1.0/upgrade_analysis.txt,sha256=LLJ88stlAeeCNgxAIiORZjQjbY-Sir138GI_FBpjIeE,189
|
12
18
|
odoo/addons/openupgrade_scripts/scripts/account_debit_note/17.0.1.0/upgrade_analysis.txt,sha256=oir9cI7nADk67Hu51_8WZ6zg6obvGn-KZ8nC_85RKwQ,202
|
@@ -468,7 +474,12 @@ odoo/addons/openupgrade_scripts/scripts/spreadsheet/17.0.1.0/upgrade_analysis_wo
|
|
468
474
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard/17.0.1.0/upgrade_analysis.txt,sha256=Avy6tI5qUcLVzk5YxyfHLpNU0bVgVnUs4NxvNByZo_I,1397
|
469
475
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard_website_sale/17.0.1.0/upgrade_analysis.txt,sha256=AlqrVVhJ3H_Flt1BmWCRt9LzKtsOKuIqf5Bl8LR6H8A,279
|
470
476
|
odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/noupdate_changes.xml,sha256=YGDqhBLeLXWAemP0jvJnpOH5A-v2dz4UYkjqESa2NHs,358
|
477
|
+
odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/post-migration.py,sha256=xinw_oNunMRyig8ZXJA28N6GhShK-VP7pBldfajknjg,2638
|
478
|
+
odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/pre-migration.py,sha256=WlZQ3QUo-LWpNkWjYcrDc5viNEqdHBfXH8ekOmMsadM,1151
|
471
479
|
odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/upgrade_analysis.txt,sha256=0RgaAJFzljGj8kQVeQdGE7FXrSnDWnhT_wXw7m0ToHc,9017
|
480
|
+
odoo/addons/openupgrade_scripts/scripts/stock/17.0.1.1/upgrade_analysis_work.txt,sha256=1dAfPQawFTknmbB7s9aoXPgz4yaSs0QsoLwoeQ4iTOI,9765
|
481
|
+
odoo/addons/openupgrade_scripts/scripts/stock/tests/data_stock_migration.py,sha256=JoFlIv3hBE7MXIhKsLA5ng4hT4cgo4nQWLWS0jbFvdo,420
|
482
|
+
odoo/addons/openupgrade_scripts/scripts/stock/tests/test_stock_migration.py,sha256=UIQNIUdL9qRalb1CJp9tZa_7-IFGS3Kr4n-fXIzhFhs,1212
|
472
483
|
odoo/addons/openupgrade_scripts/scripts/stock_account/17.0.1.1/upgrade_analysis.txt,sha256=_ofS0N620PedBYmOA8N9ZVMYRI9wLpwFWdI6LYgwn4s,1191
|
473
484
|
odoo/addons/openupgrade_scripts/scripts/stock_delivery/17.0.1.0/upgrade_analysis.txt,sha256=CLgw08khF3b9hOisl8TGCFjl6B39MDMIimyNDq25AzA,6177
|
474
485
|
odoo/addons/openupgrade_scripts/scripts/stock_dropshipping/17.0.1.0/upgrade_analysis.txt,sha256=hcBfhjP7WZQKAPAP1YrQ27M7wowBjSoq3KdMomof7w8,555
|
@@ -542,7 +553,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/17.0.1.0/upgrade_analysi
|
|
542
553
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
543
554
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
544
555
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=iV41-zYBM4uvZPuunpcr7bQeRgBaojVsKo_gkeyJyA4,12639
|
545
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
546
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
547
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
548
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
556
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info/METADATA,sha256=kpYngnVC26PzP7_s18VOz3IfExtc01pw4F_qguppOV4,3785
|
557
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
|
558
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
559
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.87.dist-info/RECORD,,
|
File without changes
|