odoo-addon-openupgrade-scripts 17.0.1.0.1.306__py3-none-any.whl → 17.0.1.0.1.312__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.
@@ -0,0 +1,31 @@
1
+ # Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
2
+ # Copyright 2025 Tecnativa - Pedro M. Baeza
3
+ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
4
+ from openupgradelib import openupgrade
5
+
6
+
7
+ def _project_update_fill_timesheet(env):
8
+ """Fill existing project updates with the theoretical information about the number
9
+ of allocated and spent hours. It may be different from the ones existing on the
10
+ moment the project update was done if later modifications changed them.
11
+ """
12
+ uom_hour = env.ref("uom.product_uom_hour")
13
+ for update in env["project.update"].with_context(active_test=False).search([]):
14
+ project = update.project_id
15
+ group = env["account.analytic.line"]._read_group(
16
+ [("project_id", "=", project.id), ("date", "<=", update.date)],
17
+ [],
18
+ ["unit_amount:sum"],
19
+ )[0]
20
+ update.write(
21
+ {
22
+ "uom_id": uom_hour.id,
23
+ "allocated_time": round(project.allocated_hours),
24
+ "timesheet_time": round(group[0]),
25
+ }
26
+ )
27
+
28
+
29
+ @openupgrade.migrate()
30
+ def migrate(env, version):
31
+ _project_update_fill_timesheet(env)
@@ -0,0 +1,37 @@
1
+ ---Models in module 'hr_timesheet'---
2
+ new model hr.employee.delete.wizard [transient]
3
+ # NOTHING TO DO
4
+
5
+ ---Fields in module 'hr_timesheet'---
6
+ hr_timesheet / account.analytic.line / ancestor_task_id (many2one) : DEL relation: project.task
7
+ # NOTHING TO DO: Removed field
8
+
9
+ hr_timesheet / account.analytic.line / parent_task_id (many2one) : NEW relation: project.task, isrelated: related, stored
10
+ # NOTHING TO DO: ORM already fills it efficiently being a 2 level depth related field
11
+
12
+ hr_timesheet / project.project / timesheet_encode_uom_id (many2one): not related anymore
13
+ hr_timesheet / project.project / timesheet_encode_uom_id (many2one): now a function
14
+ # NOTHING TO DO: non stored field
15
+
16
+ hr_timesheet / project.update / allocated_time (integer) : NEW
17
+ hr_timesheet / project.update / timesheet_time (integer) : NEW
18
+ hr_timesheet / project.update / uom_id (many2one) : NEW relation: uom.uom
19
+ # DONE: post-migration: fill historical values with the aproximation of current data (there can be differences if in the moment of creating the update, the allocated hours or the timesheets were not the same as today)
20
+
21
+ ---XML records in module 'hr_timesheet'---
22
+ DEL ir.actions.act_window.view: hr_timesheet.timesheet_action_view_from_employee_list
23
+ NEW ir.actions.server: hr_timesheet.unlink_employee_action
24
+ NEW ir.model.access: hr_timesheet.access_hr_employee_delete_wizard
25
+ DEL ir.model.access: hr_timesheet.access_project_task
26
+ NEW ir.ui.view: hr_timesheet.hr_employee_delete_wizard_form
27
+ NEW ir.ui.view: hr_timesheet.portal_my_task_allocated_hours_template
28
+ NEW ir.ui.view: hr_timesheet.project_update_view_kanban_inherit
29
+ NEW ir.ui.view: hr_timesheet.view_employee_tree_inherit_timesheet
30
+ DEL ir.ui.view: hr_timesheet.portal_my_task_planned_hours_template
31
+ DEL ir.ui.view: hr_timesheet.project_sharing_inherit_project_task_view_tree
32
+ DEL ir.ui.view: hr_timesheet.project_sharing_project_task_view_search_inherit_timesheet
33
+ DEL ir.ui.view: hr_timesheet.rating_rating_view_search_project_inherited
34
+ DEL ir.ui.view: hr_timesheet.report_project_task_user_view_search
35
+ DEL ir.ui.view: hr_timesheet.report_project_task_user_view_tree
36
+ DEL ir.ui.view: hr_timesheet.view_task_search_form_hr_extended
37
+ # NOTHING TO DO: noupdate=0 records
@@ -0,0 +1,14 @@
1
+ # Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
2
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
+
4
+ from openupgradelib import openupgrade
5
+
6
+
7
+ @openupgrade.migrate()
8
+ def migrate(env, version):
9
+ # convert users from mail_followers -> user_ids
10
+ # (new feature, users in user_ids can see to do tasks on kanban or list)
11
+ # and fill missing personal stages (_populate_missing_personal_stages)
12
+ todo_tasks = env["project.task"].search([("project_id", "=", False)])
13
+ for task in todo_tasks:
14
+ task.user_ids = task.message_follower_ids.partner_id.user_id
@@ -0,0 +1,96 @@
1
+ # Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
2
+ # Copyright 2025 Tecnativa - Pedro M. Baeza
3
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
4
+
5
+ from openupgradelib import openupgrade
6
+
7
+
8
+ def _convert_note_tag_to_project_tags(env):
9
+ openupgrade.logged_query(
10
+ env.cr,
11
+ """
12
+ INSERT INTO project_tags (
13
+ color, create_uid, write_uid, name, create_date, write_date
14
+ )
15
+ SELECT color, create_uid, write_uid, name, create_date, write_date
16
+ FROM note_tag
17
+ ON CONFLICT (name) DO NOTHING;
18
+ """,
19
+ )
20
+
21
+
22
+ def _convert_note_note_to_project_task(env):
23
+ openupgrade.logged_query(
24
+ env.cr, "ALTER TABLE project_task ADD COLUMN old_note_id INTEGER"
25
+ )
26
+ openupgrade.logged_query(
27
+ env.cr,
28
+ """
29
+ INSERT INTO project_task(
30
+ create_uid, write_uid, create_date, write_date,
31
+ active, name, description, priority, sequence, state, project_id,
32
+ display_in_project, company_id, color, old_note_id
33
+ )
34
+ SELECT create_uid, write_uid, create_date, write_date,
35
+ open, name, memo, '0', sequence, '01_in_progress', null,
36
+ true, company_id, color, id
37
+ FROM note_note
38
+ """,
39
+ )
40
+
41
+
42
+ def _fill_project_tags(env):
43
+ openupgrade.logged_query(
44
+ env.cr,
45
+ """
46
+ INSERT INTO project_tags_project_task_rel (project_task_id, project_tags_id)
47
+ SELECT project_task.id, project_tags.id
48
+ FROM note_tags_rel rel
49
+ JOIN project_task ON project_task.old_note_id = rel.note_id
50
+ JOIN note_tag ON rel.tag_id = note_tag.id
51
+ JOIN project_tags ON project_tags.name = note_tag.name;
52
+ """,
53
+ )
54
+
55
+
56
+ def _fill_stage_for_todo_task(env):
57
+ openupgrade.logged_query(
58
+ env.cr, "ALTER TABLE project_task_type ADD COLUMN old_note_stage_id INTEGER"
59
+ )
60
+ openupgrade.logged_query(
61
+ env.cr,
62
+ """
63
+ INSERT INTO project_task_type (
64
+ create_uid, write_uid, create_date, write_date, active,
65
+ user_id, sequence, name, fold, old_note_stage_id
66
+ )
67
+ SELECT
68
+ create_uid, write_uid, create_date, write_date, true,
69
+ user_id, sequence, name, fold, id
70
+ FROM note_stage
71
+ """,
72
+ )
73
+ openupgrade.logged_query(
74
+ env.cr,
75
+ """
76
+ INSERT INTO project_task_user_rel(
77
+ task_id, user_id, stage_id
78
+ )
79
+ SELECT
80
+ project_task.id task_id,
81
+ project_task_type.user_id,
82
+ project_task_type.id stage_id
83
+ FROM note_stage_rel rel
84
+ JOIN project_task ON project_task.old_note_id = rel.note_id
85
+ JOIN project_task_type ON project_task_type.old_note_stage_id = rel.stage_id
86
+ """,
87
+ )
88
+
89
+
90
+ @openupgrade.migrate()
91
+ def migrate(env, version):
92
+ _convert_note_tag_to_project_tags(env)
93
+ _convert_note_note_to_project_task(env)
94
+ _fill_project_tags(env)
95
+ _fill_stage_for_todo_task(env)
96
+ openupgrade.merge_models(env.cr, "note.note", "project.task", "old_note_id")
@@ -0,0 +1,40 @@
1
+ ---Models in module 'project_todo'---
2
+ new model mail.activity.todo.create [transient]
3
+ # NOTHING TO DO
4
+
5
+ ---Fields in module 'project_todo'---
6
+ project_todo / mail.activity.type / category (False) : previously in module note
7
+ NOTHING TO DO
8
+
9
+ ---XML records in module 'project_todo'---
10
+ NEW ir.actions.act_window: project_todo.project_task_action_convert_todo_to_task
11
+ NEW ir.actions.act_window: project_todo.project_task_action_todo
12
+ NEW ir.actions.act_window.view: project_todo.project_task_action_convert_todo_to_task_form_view
13
+ NEW ir.actions.act_window.view: project_todo.project_task_action_todo_activity_view
14
+ NEW ir.actions.act_window.view: project_todo.project_task_action_todo_form_view
15
+ NEW ir.actions.act_window.view: project_todo.project_task_action_todo_kanban_view
16
+ NEW ir.actions.act_window.view: project_todo.project_task_action_todo_tree_view
17
+ NEW ir.actions.server: project_todo.project_task_preload_action_todo
18
+ NEW ir.model.access: project_todo.access_mail_activity_todo_create
19
+ NEW ir.model.access: project_todo.access_project_tags_user
20
+ NEW ir.model.access: project_todo.access_project_task_type_user
21
+ NEW ir.model.access: project_todo.access_task_on_partner
22
+ NEW ir.rule: project_todo.task_edition_rule_internal (noupdate)
23
+ NEW ir.rule: project_todo.task_visibility_rule_project_user (noupdate)
24
+ NEW ir.ui.menu: project_todo.menu_todo_todos
25
+ NEW ir.ui.view: project_todo.mail_activity_todo_create_popup
26
+ NEW ir.ui.view: project_todo.project_task_view_todo_activity
27
+ NEW ir.ui.view: project_todo.project_task_view_todo_conversion_form
28
+ NEW ir.ui.view: project_todo.project_task_view_todo_form
29
+ NEW ir.ui.view: project_todo.project_task_view_todo_kanban
30
+ NEW ir.ui.view: project_todo.project_task_view_todo_quick_create_form
31
+ NEW ir.ui.view: project_todo.project_task_view_todo_search
32
+ NEW ir.ui.view: project_todo.project_task_view_todo_tree
33
+ NEW ir.ui.view: project_todo.todo_user_onboarding (noupdate)
34
+ # NOTHING TO DO: new feature
35
+
36
+ NEW mail.activity.type: project_todo.mail_activity_data_reminder [renamed from note module] (noupdate)
37
+ # DONE: rename in pre-migration
38
+
39
+ NEW res.groups: project_todo.group_onboarding_todo
40
+ # NOTHING TO DO: new feature
@@ -3,4 +3,9 @@
3
3
  <record id="time_product" model="product.product">
4
4
  <field name="name">Service on Timesheets</field>
5
5
  </record>
6
+ <!-- Recent changes from
7
+ https://github.com/odoo/odoo/commit/a0542b13f679d4dc20d61eb62e4eb5106d6abe5a -->
8
+ <record id="account.account_analytic_line_rule_readonly_user" model="ir.rule">
9
+ <field name="domain_force">[('project_id', '=', False)]</field>
10
+ </record>
6
11
  </odoo>
@@ -0,0 +1,15 @@
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
+ @openupgrade.migrate()
8
+ def migrate(env, version):
9
+ openupgrade.load_data(env, "sale_timesheet", "17.0.1.0/noupdate_changes.xml")
10
+ openupgrade.delete_record_translations(
11
+ env.cr,
12
+ "sale_timesheet",
13
+ ["time_product"],
14
+ field_list=["name"],
15
+ )
@@ -0,0 +1,27 @@
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 _fill_project_project_billing_type(env):
8
+ """Field `billing_type` on project.project is a new stored field."""
9
+ openupgrade.add_fields(
10
+ env,
11
+ [
12
+ (
13
+ "billing_type",
14
+ "project.project",
15
+ "project_project",
16
+ "selection",
17
+ False,
18
+ "sale_timesheet",
19
+ "not_billable",
20
+ )
21
+ ],
22
+ )
23
+
24
+
25
+ @openupgrade.migrate()
26
+ def migrate(env, version):
27
+ _fill_project_project_billing_type(env)
@@ -0,0 +1,17 @@
1
+ ---Models in module 'sale_timesheet'---
2
+ ---Fields in module 'sale_timesheet'---
3
+ sale_timesheet / project.project / allocated_hours (False) : DEL mode: modify
4
+ # NOTHING TO DO, now is a normal field, no compute
5
+ sale_timesheet / project.project / billing_type (selection) : NEW required, selection_keys: ['manually', 'not_billable'], hasdefault: default
6
+ # DONE: pre-migration: Add new column & set the default value(not_billable)
7
+ sale_timesheet / project.project / partner_id (False) : module is now 'sale_project' ('sale_timesheet')
8
+ sale_timesheet / project.task / allow_billable (boolean) : module is now 'sale_project' ('sale_timesheet')
9
+ # NOTHING TO DO, just moved to sale_timesheet module
10
+ ---XML records in module 'sale_timesheet'---
11
+ NEW ir.ui.view: sale_timesheet.project_task_view_search_inherit_sale_timesheet
12
+ NEW ir.ui.view: sale_timesheet.view_hr_timesheet_line_graph_invoice_employee
13
+ NEW ir.ui.view: sale_timesheet.view_hr_timesheet_line_pivot_inherited
14
+ NEW ir.ui.view: sale_timesheet.view_task_project_user_pivot_inherited
15
+ DEL ir.ui.view: sale_timesheet.project_project_view_form_simplified_inherit
16
+ DEL ir.ui.view: sale_timesheet.view_sale_service_inherit_form2
17
+ # NOTHING TO DO
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-openupgrade_scripts
3
- Version: 17.0.1.0.1.306
3
+ Version: 17.0.1.0.1.312
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo>=17.0a,<17.1dev
6
6
  Requires-Dist: openupgradelib
@@ -189,7 +189,9 @@ odoo/addons/openupgrade_scripts/scripts/hr_recruitment_survey/17.0.1.0/upgrade_a
189
189
  odoo/addons/openupgrade_scripts/scripts/hr_skills/17.0.1.0/upgrade_analysis.txt,sha256=06OqKTUamjUL1Ui7l6POXHoQKmy38FEO4mLZsGDbgHw,899
190
190
  odoo/addons/openupgrade_scripts/scripts/hr_skills_slides/17.0.1.0/upgrade_analysis.txt,sha256=oQB8tjhHAghJ25JskMaQEBVgDe2p4uz0qvWqX-QBuwQ,171
191
191
  odoo/addons/openupgrade_scripts/scripts/hr_skills_survey/17.0.1.0/upgrade_analysis.txt,sha256=3tgY89XspEDlIcKoxy6bnt4bJmvJt-UZwzcXVOyDTMM,715
192
+ odoo/addons/openupgrade_scripts/scripts/hr_timesheet/17.0.1.0/post-migration.py,sha256=d8dDwpPxodg05zkN886I1Kf2-LfNvUQbabLq-ZBiBP0,1187
192
193
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet/17.0.1.0/upgrade_analysis.txt,sha256=crjTeU81FGUKyW8vZmuSCXLbrTLMQvmbefqqEqKQY-E,2057
194
+ odoo/addons/openupgrade_scripts/scripts/hr_timesheet/17.0.1.0/upgrade_analysis_work.txt,sha256=5lRHQ4yQeWfqDOV7YvssxOS5vE8qHye_jrbjBZnwTo8,2288
193
195
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet_attendance/17.0.1.1/noupdate_changes.xml,sha256=Pn8knBBRt3Mo6t3lNpdm5ANlCoyzZuUcqvcX7v7OOLo,222
194
196
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet_attendance/17.0.1.1/upgrade_analysis.txt,sha256=BuiW1HztzK7B4xdg5UVhWJFTSc2Ra5msHmDDNcjsYek,233
195
197
  odoo/addons/openupgrade_scripts/scripts/hr_work_entry/17.0.1.0/upgrade_analysis.txt,sha256=HjLcWFrP1MUO3f21UUH1ejUur7wQdp0u44OzKK29pq0,264
@@ -539,7 +541,10 @@ odoo/addons/openupgrade_scripts/scripts/project_purchase/17.0.1.0/upgrade_analys
539
541
  odoo/addons/openupgrade_scripts/scripts/project_sms/17.0.1.0/upgrade_analysis.txt,sha256=dR99xE_4XIcYrpFBaImCpc-lyQqpXvh7cCaCftuygr0,156
540
542
  odoo/addons/openupgrade_scripts/scripts/project_timesheet_holidays/17.0.1.0/upgrade_analysis.txt,sha256=4IIM7egSe9vXluupDMJC7lvBiT3_Ap054Pw0nK8r_z4,225
541
543
  odoo/addons/openupgrade_scripts/scripts/project_todo/17.0.1.0/noupdate_changes.xml,sha256=h-UaEC47MTkO3y5SHt-6RYHqbeD7OBlaJ2VEvKHIAfA,452
544
+ odoo/addons/openupgrade_scripts/scripts/project_todo/17.0.1.0/post_migration.py,sha256=khEBjdY9rvbihwqrzVkNq7rdIRcl2a5ItUNor7CzQzc,598
545
+ odoo/addons/openupgrade_scripts/scripts/project_todo/17.0.1.0/pre-migration.py,sha256=cvpSciEp2NMnMxWj8PJ76mklegRzcx8dfRaeUY_3OPg,3061
542
546
  odoo/addons/openupgrade_scripts/scripts/project_todo/17.0.1.0/upgrade_analysis.txt,sha256=88bgGroE5pXWTcX4mBVsKqbBw-2yLYOih57RpCcApo4,5194
547
+ odoo/addons/openupgrade_scripts/scripts/project_todo/17.0.1.0/upgrade_analysis_work.txt,sha256=Py_9j_HlySzcPN2gyOa5WCKG0BT7H47_6VFa8KvfVnc,2162
543
548
  odoo/addons/openupgrade_scripts/scripts/purchase/17.0.1.2/noupdate_changes.xml,sha256=wH17u5OtfBg5DfINZ_tHHkZwLGE67IG9D5Z2VIT1cPM,3109
544
549
  odoo/addons/openupgrade_scripts/scripts/purchase/17.0.1.2/post-migration.py,sha256=Ek-RvE1qg0lZEIyq8zS6VSedRoI1njgzRNvJH8OSOoM,510
545
550
  odoo/addons/openupgrade_scripts/scripts/purchase/17.0.1.2/pre-migration.py,sha256=80iVU0E21q-eWgLzAH-tk0Ht7SGwlDOLrRL2ZgpyMDM,470
@@ -602,8 +607,11 @@ odoo/addons/openupgrade_scripts/scripts/sale_service/17.0.1.0/upgrade_analysis.t
602
607
  odoo/addons/openupgrade_scripts/scripts/sale_stock/17.0.1.0/post-migration.py,sha256=D3HI7ZlXx955CUyAxJBay4BwB7ecb2zSsDlkRraLSmM,1207
603
608
  odoo/addons/openupgrade_scripts/scripts/sale_stock/17.0.1.0/upgrade_analysis.txt,sha256=XxcJseqIZQZS-XnS07ueuYr6ot_W-XVluSFPnx0Bdqs,454
604
609
  odoo/addons/openupgrade_scripts/scripts/sale_stock/17.0.1.0/upgrade_analysis_work.txt,sha256=mgZdQxLNerZNnxnnKqSTHwFQAOk8gfbmlkx0Ou-9gaw,470
605
- odoo/addons/openupgrade_scripts/scripts/sale_timesheet/17.0.1.0/noupdate_changes.xml,sha256=yGW3ZrY1z-siMMt4DreIW96BQevct1WGif1Hwi1_q0s,172
610
+ odoo/addons/openupgrade_scripts/scripts/sale_timesheet/17.0.1.0/noupdate_changes.xml,sha256=uKxEjdZqll43PUVqf2yV6cJxnyOGm53rs8nNwsVxKrc,443
611
+ odoo/addons/openupgrade_scripts/scripts/sale_timesheet/17.0.1.0/post-migration.py,sha256=dznKtaaZZcNt-fNiQY4UC-FZgqI8JQeRJLLqTiD6pRM,432
612
+ odoo/addons/openupgrade_scripts/scripts/sale_timesheet/17.0.1.0/pre-migration.py,sha256=WsQEIn4gvip9eLK0zo-Dxew6O-inEAGaP6iuj0QWgEA,683
606
613
  odoo/addons/openupgrade_scripts/scripts/sale_timesheet/17.0.1.0/upgrade_analysis.txt,sha256=jbta14XwLrrpNrlZJWyOTbS83RW0DlGfKe6j4pRihIs,1057
614
+ odoo/addons/openupgrade_scripts/scripts/sale_timesheet/17.0.1.0/upgrade_analysis_work.txt,sha256=2BdZT3blS7bRuscq0GHEBvPi1okz7nSP3ddrWMZ2JgM,1253
607
615
  odoo/addons/openupgrade_scripts/scripts/sales_team/17.0.1.1/upgrade_analysis.txt,sha256=VMb2vV6ZCh2oqJEOMAaS2O_2MSF9V_O_E5vb3UHIXGI,579
608
616
  odoo/addons/openupgrade_scripts/scripts/sales_team/17.0.1.1/upgrade_analysis_work.txt,sha256=xQ5ks0IvyWXfD20A-ZDccjo0UWqRH6WUeRDd-ms6pSQ,657
609
617
  odoo/addons/openupgrade_scripts/scripts/sms/17.0.3.0/upgrade_analysis.txt,sha256=Y_8Hs8o6T5rlTnFlXiRFXK11NhP1V4NH4_-r1mqYeKI,3309
@@ -735,7 +743,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/17.0.1.0/upgrade_analysi
735
743
  odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
736
744
  odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
737
745
  odoo/addons/openupgrade_scripts/static/description/index.html,sha256=iV41-zYBM4uvZPuunpcr7bQeRgBaojVsKo_gkeyJyA4,12639
738
- odoo_addon_openupgrade_scripts-17.0.1.0.1.306.dist-info/METADATA,sha256=mp2FooOEFjvi7M_uW84drmGeH7NjEt0wkr4H57sUxiU,3786
739
- odoo_addon_openupgrade_scripts-17.0.1.0.1.306.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
740
- odoo_addon_openupgrade_scripts-17.0.1.0.1.306.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
741
- odoo_addon_openupgrade_scripts-17.0.1.0.1.306.dist-info/RECORD,,
746
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.312.dist-info/METADATA,sha256=WhGObW0sZ9pNNiJVpjBhG-gPJTRBxT3k9lKTDfcH5Cw,3786
747
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.312.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
748
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.312.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
749
+ odoo_addon_openupgrade_scripts-17.0.1.0.1.312.dist-info/RECORD,,