odoo-addon-openupgrade-scripts 18.0.1.0.0.293__py3-none-any.whl → 18.0.1.0.0.303__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.
Files changed (20) hide show
  1. odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt +2 -1
  2. odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/post-migration.py +12 -0
  3. odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/pre-migration.py +185 -0
  4. odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/upgrade_analysis_work.txt +114 -0
  5. odoo/addons/openupgrade_scripts/scripts/hr_holidays_attendance/18.0.1.0/post-migration.py +8 -0
  6. odoo/addons/openupgrade_scripts/scripts/hr_holidays_attendance/18.0.1.0/upgrade_analysis_work.txt +5 -0
  7. odoo/addons/openupgrade_scripts/scripts/hr_timesheet_attendance/18.0.1.1/upgrade_analysis_work.txt +5 -0
  8. odoo/addons/openupgrade_scripts/scripts/l10n_br/18.0.1.0/upgrade_analysis.txt +1 -0
  9. odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_analysis.txt +44 -0
  10. odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt +11 -0
  11. odoo/addons/openupgrade_scripts/scripts/l10n_kh/18.0.1.0/upgrade_analysis.txt +152 -0
  12. odoo/addons/openupgrade_scripts/scripts/l10n_sg/18.0.2.2/upgrade_analysis.txt +1 -1
  13. odoo/addons/openupgrade_scripts/scripts/l10n_th/18.0.2.0/upgrade_analysis.txt +1 -1
  14. odoo/addons/openupgrade_scripts/scripts/l10n_vn/18.0.2.0.3/upgrade_analysis.txt +1 -0
  15. odoo/addons/openupgrade_scripts/scripts/loyalty/18.0.1.0/end-migration.py +9 -0
  16. odoo/addons/openupgrade_scripts/scripts/loyalty/18.0.1.0/upgrade_analysis_work.txt +36 -0
  17. {odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info}/METADATA +1 -1
  18. {odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info}/RECORD +20 -9
  19. {odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info}/WHEEL +1 -1
  20. {odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info}/top_level.txt +0 -0
@@ -70,6 +70,7 @@ new model l10n_ar.partner.tax [module l10n_ar_withholding]
70
70
  new model l10n_br.zip.range [module l10n_br]
71
71
  new model l10n_es_edi_facturae.ac_role_type (renamed from l10n_es_edi_facturae_adm_centers.ac_role_type) [module l10n_es_edi_facturae]
72
72
  new model l10n_es_edi_tbai.document [module l10n_es_edi_tbai]
73
+ new model l10n_es_edi_verifactu.document [module l10n_es_edi_verifactu]
73
74
  new model l10n_fr.fec.export.wizard [module l10n_fr_account]
74
75
  new model l10n_gr_edi.document [module l10n_gr_edi]
75
76
  new model l10n_gr_edi.preferred_classification [module l10n_gr_edi]
@@ -125,7 +126,7 @@ new model website.page.properties.base [module website]
125
126
  # Found in other module: 92
126
127
  # Found with different type: 8
127
128
  # In obsolete models: 34
128
- # New columns: 1646
129
+ # New columns: 1702
129
130
  # Not matched: 825
130
131
  ---XML records in module 'general'---
131
132
  ERROR: module not in list of installed modules:
@@ -0,0 +1,12 @@
1
+ from openupgradelib import openupgrade
2
+
3
+
4
+ @openupgrade.migrate()
5
+ def migrate(env, version):
6
+ openupgrade.load_data(env, "hr_holidays", "18.0.1.6/noupdate_changes.xml")
7
+ openupgrade.delete_record_translations(
8
+ env.cr, "hr_holidays", ["mt_leave_allocation"], ["name"]
9
+ )
10
+ openupgrade.delete_records_safely_by_xml_id(
11
+ env, ["hr_holidays.mt_leave_home_working"]
12
+ )
@@ -0,0 +1,185 @@
1
+ from openupgradelib import openupgrade
2
+
3
+ _column_renames = {
4
+ "hr_leave": [("request_hour_from", None), ("request_hour_to", None)],
5
+ "hr_leave_allocation": [("private_name", "name")],
6
+ }
7
+
8
+ _column_adds = [
9
+ ("hr.leave", "request_hour_from", "float"),
10
+ ("hr.leave", "request_hour_to", "float"),
11
+ ]
12
+
13
+
14
+ def refill_hr_leave_request_hours(env):
15
+ old_request_hour_from = openupgrade.get_legacy_name("request_hour_from")
16
+ openupgrade.logged_query(
17
+ env.cr,
18
+ f"""
19
+ UPDATE hr_leave SET request_hour_from = {old_request_hour_from}::float
20
+ WHERE {old_request_hour_from} IS NOT NULL;
21
+ """,
22
+ )
23
+ old_request_hour_to = openupgrade.get_legacy_name("request_hour_to")
24
+ openupgrade.logged_query(
25
+ env.cr,
26
+ f"""
27
+ UPDATE hr_leave SET request_hour_to = {old_request_hour_to}::float
28
+ WHERE {old_request_hour_to} IS NOT NULL;
29
+ """,
30
+ )
31
+
32
+
33
+ def update_states(env):
34
+ openupgrade.logged_query(
35
+ env.cr,
36
+ """
37
+ UPDATE hr_leave
38
+ SET state = 'confirm'
39
+ WHERE state = 'draft'
40
+ """,
41
+ )
42
+ openupgrade.logged_query(
43
+ env.cr,
44
+ """
45
+ UPDATE hr_leave
46
+ SET state = 'cancel'
47
+ WHERE active IS DISTINCT FROM TRUE
48
+ """,
49
+ )
50
+ openupgrade.logged_query(
51
+ env.cr,
52
+ """
53
+ UPDATE hr_leave_allocation
54
+ SET state = 'cancel'
55
+ WHERE active IS DISTINCT FROM TRUE
56
+ """,
57
+ )
58
+
59
+
60
+ def update_allocation_validation_type(env):
61
+ openupgrade.logged_query(
62
+ env.cr,
63
+ """
64
+ UPDATE hr_leave_type
65
+ SET allocation_validation_type = 'hr'
66
+ WHERE allocation_validation_type = 'officer'
67
+ """,
68
+ )
69
+ openupgrade.logged_query(
70
+ env.cr,
71
+ """
72
+ UPDATE hr_leave_type
73
+ SET allocation_validation_type = 'no_validation'
74
+ WHERE allocation_validation_type = 'no'
75
+ """,
76
+ )
77
+
78
+
79
+ def split_employee_leaves(env):
80
+ for table in ["hr_leave", "hr_leave_allocation"]:
81
+ env.cr.execute(
82
+ f"""
83
+ SELECT column_name
84
+ FROM information_schema.columns
85
+ WHERE table_name = '{table}'
86
+ """
87
+ )
88
+ columns = ", ".join(
89
+ [x[0] for x in env.cr.fetchall() if x[0] not in ("id", "employee_id")]
90
+ )
91
+ leave_employees = []
92
+ # case multi_employee
93
+ env.cr.execute(
94
+ f"""
95
+ SELECT leave.id, 'employee', array_agg(rel.hr_employee_id) as employee_ids
96
+ FROM {table} AS leave
97
+ JOIN hr_employee_{table}_rel rel ON rel.{table}_id = leave.id
98
+ WHERE leave.holiday_type = 'employee' AND leave.multi_employee
99
+ GROUP BY leave.id
100
+ """
101
+ )
102
+ leave_employees.extend(env.cr.fetchall())
103
+ # case company
104
+ env.cr.execute(
105
+ f"""
106
+ SELECT leave.id, 'company', array_agg(he.id) as employee_ids
107
+ FROM {table} AS leave
108
+ JOIN hr_employee he ON he.company_id = leave.mode_company_id
109
+ WHERE leave.holiday_type = 'company'
110
+ GROUP BY leave.id
111
+ """
112
+ )
113
+ leave_employees.extend(env.cr.fetchall())
114
+ # case category
115
+ env.cr.execute(
116
+ f"""
117
+ SELECT leave.id, 'category', array_agg(rel.employee_id) as employee_ids
118
+ FROM {table} AS leave
119
+ JOIN employee_category_rel rel ON rel.category_id = leave.category_id
120
+ WHERE leave.holiday_type = 'category'
121
+ GROUP BY leave.id
122
+ """
123
+ )
124
+ leave_employees.extend(env.cr.fetchall())
125
+ # case department
126
+ env.cr.execute(
127
+ f"""
128
+ SELECT leave.id, 'department', array_agg(he.id) as employee_ids
129
+ FROM {table} AS leave
130
+ JOIN hr_employee he ON he.department_id = leave.department_id
131
+ WHERE leave.holiday_type = 'department'
132
+ GROUP BY leave.id
133
+ """
134
+ )
135
+ leave_employees.extend(env.cr.fetchall())
136
+ for table_id, holiday_type, employee_ids in leave_employees:
137
+ employees = env["hr.employee"].browse(employee_ids)
138
+ if employee_ids:
139
+ openupgrade.logged_query(
140
+ env.cr,
141
+ f"""
142
+ UPDATE {table}
143
+ SET employee_id = {employees[0].id}
144
+ WHERE id = {table_id}
145
+ """,
146
+ )
147
+ if holiday_type != "employee":
148
+ openupgrade.logged_query(
149
+ env.cr,
150
+ f"""
151
+ UPDATE {table}
152
+ SET holiday_type = 'employee'
153
+ WHERE id = {table_id}
154
+ """,
155
+ )
156
+ for employee in employees[1:]:
157
+ openupgrade.logged_query(
158
+ env.cr,
159
+ f"""
160
+ INSERT INTO {table} (employee_id, {columns})
161
+ SELECT {employee.id}, {columns}
162
+ FROM {table}
163
+ WHERE id = {table_id}
164
+ """,
165
+ )
166
+ else:
167
+ openupgrade.logged_query(
168
+ env.cr,
169
+ f"""
170
+ DELETE FROM {table} WHERE id = {table_id}
171
+ """,
172
+ )
173
+
174
+
175
+ @openupgrade.migrate()
176
+ def migrate(env, version):
177
+ openupgrade.rename_columns(env.cr, _column_renames)
178
+ openupgrade.add_columns(env, _column_adds)
179
+ refill_hr_leave_request_hours(env)
180
+ update_states(env)
181
+ update_allocation_validation_type(env)
182
+ openupgrade.remove_tables_fks(
183
+ env.cr, ["hr_employee_hr_leave_rel", "hr_employee_hr_leave_allocation_rel"]
184
+ )
185
+ split_employee_leaves(env)
@@ -0,0 +1,114 @@
1
+ ---Models in module 'hr_holidays'---
2
+ new model hr.leave.allocation.generate.multi.wizard [transient]
3
+ new model hr.leave.generate.multi.wizard [transient]
4
+ ---Fields in module 'hr_holidays'---
5
+ hr_holidays / hr.employee / current_leave_state (selection): selection_keys removed: [draft]
6
+ hr_holidays / hr.employee / hr_icon_display (False) : selection_keys added: [presence_archive, presence_out_of_working_hour], removed: [presence_absent_active, presence_to_define]
7
+ # NOTHING TO DO: non stored
8
+
9
+ hr_holidays / hr.leave / employee_ids (many2many) : DEL relation: hr.employee
10
+ hr_holidays / hr.leave.allocation / employee_ids (many2many) : DEL relation: hr.employee
11
+ # DONE: pre-migration: remove many2many table fks
12
+
13
+ hr_holidays / hr.leave / category_id (many2one) : DEL relation: hr.employee.category
14
+ hr_holidays / hr.leave.allocation / category_id (many2one) : DEL relation: hr.employee.category
15
+ hr_holidays / hr.leave / holiday_type (selection) : DEL required, selection_keys: ['category', 'company', 'department', 'employee']
16
+ hr_holidays / hr.leave.allocation / holiday_type (selection) : DEL required, selection_keys: ['category', 'company', 'department', 'employee']
17
+ hr_holidays / hr.leave / linked_request_ids (one2many) : DEL relation: hr.leave
18
+ hr_holidays / hr.leave.allocation / linked_request_ids (one2many) : DEL relation: hr.leave.allocation
19
+ hr_holidays / hr.leave / mode_company_id (many2one) : DEL relation: res.company
20
+ hr_holidays / hr.leave.allocation / mode_company_id (many2one) : DEL relation: res.company
21
+ hr_holidays / hr.leave / multi_employee (boolean) : DEL
22
+ hr_holidays / hr.leave.allocation / multi_employee (boolean) : DEL
23
+ hr_holidays / hr.leave / parent_id (many2one) : DEL relation: hr.leave
24
+ hr_holidays / hr.leave.allocation / parent_id (many2one) : DEL relation: hr.leave.allocation
25
+ hr_holidays / hr.leave / employee_id (many2one) : now required
26
+ hr_holidays / hr.leave.allocation / employee_id (many2one) : now required
27
+ # DONE: pre-migration: split leaves, one for each employee
28
+
29
+ hr_holidays / hr.leave / report_note (text) : DEL
30
+ # NOTHING TO DO: deprecated (https://github.com/odoo/odoo/commit/ca34732081b1ce6c339dd941abb9696861d95878)
31
+
32
+ hr_holidays / hr.leave / request_hour_from (selection) : selection_keys is now 'False' ('['0', '0.5', '1', '1.5', '10', '10.5', '11', '11.5', '12', '12.5', '13', '13.5', '14', '14.5', '15', '15.5', '16', '16.5', '17', '17.5', '18', '18.5', '19', '19.5', '2', '2.5', '20', '20.5', '21', '21.5', '22', '22.5', '23', '23.5', '3', '3.5', '4', '4.5', '5', '5.5', '6', '6.5', '7', '7.5', '8', '8.5', '9', '9.5']')
33
+ hr_holidays / hr.leave / request_hour_from (selection) : type is now 'float' ('selection')
34
+ hr_holidays / hr.leave / request_hour_to (selection) : selection_keys is now 'False' ('['0', '0.5', '1', '1.5', '10', '10.5', '11', '11.5', '12', '12.5', '13', '13.5', '14', '14.5', '15', '15.5', '16', '16.5', '17', '17.5', '18', '18.5', '19', '19.5', '2', '2.5', '20', '20.5', '21', '21.5', '22', '22.5', '23', '23.5', '3', '3.5', '4', '4.5', '5', '5.5', '6', '6.5', '7', '7.5', '8', '8.5', '9', '9.5']')
35
+ hr_holidays / hr.leave / request_hour_to (selection) : type is now 'float' ('selection')
36
+ # DONE: pre-migration: transform to float
37
+
38
+ hr_holidays / hr.leave / active (boolean) : DEL
39
+ hr_holidays / hr.leave.allocation / active (boolean) : DEL
40
+ hr_holidays / hr.leave / state (selection) : selection_keys added: [cancel], removed: [draft]
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
43
+
44
+ hr_holidays / hr.leave.accrual.level / accrual_validity (boolean) : NEW
45
+ hr_holidays / hr.leave.accrual.level / accrual_validity_count (integer): NEW hasdefault: default
46
+ hr_holidays / hr.leave.accrual.level / accrual_validity_type (selection): NEW required, selection_keys: ['day', 'month'], hasdefault: default
47
+ # NOTHING TO DO: new functionality
48
+
49
+ hr_holidays / hr.leave.accrual.level / cap_accrued_time_yearly (boolean): NEW
50
+ hr_holidays / hr.leave.accrual.level / maximum_leave_yearly (float) : NEW
51
+ # NOTHING TO DO: new feature
52
+
53
+ hr_holidays / hr.leave.allocation / accrual_plan_id (many2one) : now a function
54
+ # NOTHING TO DO
55
+
56
+ hr_holidays / hr.leave.allocation / actual_lastcall (date) : NEW
57
+ hr_holidays / hr.leave.allocation / last_executed_carryover_date (date): NEW
58
+ # NOTHING TO DO
59
+
60
+ hr_holidays / hr.leave.allocation / carried_over_days_expiration_date (date): NEW
61
+ hr_holidays / hr.leave.allocation / expiring_carryover_days (float): NEW
62
+ # NOTHING TO DO: new functionality
63
+
64
+ hr_holidays / hr.leave.allocation / is_name_custom (boolean) : NEW
65
+ hr_holidays / hr.leave.allocation / name (char) : is now stored
66
+ hr_holidays / hr.leave.allocation / name (char) : not a function anymore
67
+ hr_holidays / hr.leave.allocation / private_name (char) : DEL
68
+ # DONE: pre-migration: renamed private_name to name
69
+
70
+ hr_holidays / hr.leave.allocation / number_of_hours_display (float): is now stored
71
+ # NOTHING TO DO: let odoo compute it
72
+
73
+ hr_holidays / hr.leave.allocation / second_approver_id (many2one) : NEW relation: hr.employee
74
+ # NOTHING TO DO: new functionality
75
+
76
+ hr_holidays / hr.leave.allocation / yearly_accrued_amount (float) : NEW
77
+ # NOTHING TO DO
78
+
79
+ hr_holidays / hr.leave.type / allocation_validation_type (selection): selection_keys added: [both, hr, manager, no_validation], removed: [no, officer]
80
+ # DONE: pre-migration: officer -> hr, no -> no_validation
81
+
82
+ hr_holidays / hr.leave.type / include_public_holidays_in_duration (boolean): NEW hasdefault: default
83
+ # NOTHING TO DO: new feature
84
+
85
+ hr_holidays / hr.leave.type / show_on_dashboard (boolean) : NEW hasdefault: default
86
+ # NOTHING TO DO: new feature
87
+
88
+ ---XML records in module 'hr_holidays'---
89
+ NEW ir.actions.act_window: hr_holidays.action_hr_leave_allocation_generate_multi_wizard
90
+ NEW ir.actions.act_window: hr_holidays.action_hr_leave_generate_multi_wizard
91
+ NEW ir.actions.act_window: hr_holidays.action_hr_leave_report
92
+ NEW ir.actions.act_window: hr_holidays.hr_leave_report_action
93
+ DEL ir.actions.act_window: hr_holidays.act_hr_employee_holiday_type
94
+ DEL ir.actions.act_window: hr_holidays.hr_leave_action_action_department
95
+ NEW ir.model.access: hr_holidays.access_hr_leave_allocation_generate_multi_wizard
96
+ NEW ir.model.access: hr_holidays.access_hr_leave_employee_type_report_manager
97
+ NEW ir.model.access: hr_holidays.access_hr_leave_generate_multi_wizard
98
+ DEL ir.model.access: hr_holidays.access_hr_leave_employee_type_report
99
+ NEW ir.model.constraint: hr_holidays.constraint_hr_leave_accrual_level_valid_yearly_cap_value
100
+ DEL ir.model.constraint: hr_holidays.constraint_hr_leave_allocation_type_value
101
+ DEL ir.model.constraint: hr_holidays.constraint_hr_leave_type_value
102
+ NEW ir.ui.menu: hr_holidays.menu_hr_holidays_balance
103
+ NEW ir.ui.view: hr_holidays.hr_leave_allocation_generate_multi_wizard_view_form
104
+ NEW ir.ui.view: hr_holidays.hr_leave_generate_multi_wizard_view_form
105
+ NEW ir.ui.view: hr_holidays.hr_leave_view_search_report
106
+ NEW ir.ui.view: hr_holidays.view_calendar_event_form_inherit
107
+ DEL ir.ui.view: hr_holidays.hr_departure_wizard_view_form
108
+ DEL ir.ui.view: hr_holidays.hr_leave_report_search_view
109
+ NEW mail.activity.type: hr_holidays.mail_act_leave_allocation_second_approval (noupdate)
110
+ NEW web_tour.tour: hr_holidays.hr_holidays_tour
111
+ # NOTHING TO DO
112
+
113
+ DEL mail.message.subtype: hr_holidays.mt_leave_home_working (noupdate)
114
+ # DONE: post-migration: safely delete
@@ -0,0 +1,8 @@
1
+ from openupgradelib import openupgrade
2
+
3
+
4
+ @openupgrade.migrate()
5
+ def migrate(env, version):
6
+ openupgrade.load_data(
7
+ env, "hr_holidays_attendance", "18.0.1.0/noupdate_changes.xml"
8
+ )
@@ -0,0 +1,5 @@
1
+ ---Models in module 'hr_holidays_attendance'---
2
+ ---Fields in module 'hr_holidays_attendance'---
3
+ ---XML records in module 'hr_holidays_attendance'---
4
+ ---nothing has changed in this module--
5
+ # NOTHING TO DO
@@ -0,0 +1,5 @@
1
+ ---Models in module 'hr_timesheet_attendance'---
2
+ ---Fields in module 'hr_timesheet_attendance'---
3
+ ---XML records in module 'hr_timesheet_attendance'---
4
+ ---nothing has changed in this module--
5
+ # NOTHING TO DO
@@ -5,6 +5,7 @@ l10n_br / l10n_br.zip.range / city_id (many2one) : NEW re
5
5
  l10n_br / l10n_br.zip.range / end (char) : NEW required
6
6
  l10n_br / l10n_br.zip.range / start (char) : NEW required
7
7
  l10n_br / res.city / l10n_br_zip_range_ids (one2many): NEW relation: l10n_br.zip.range
8
+ l10n_br_pix / res.partner.bank / proxy_type (False) : selection_keys added: [bakong_id_merchant, bakong_id_solo] (most likely nothing to do)
8
9
  ---XML records in module 'l10n_br'---
9
10
  NEW ir.model.access: l10n_br.access_l10n_br_zip_range_group_manager
10
11
  NEW ir.model.access: l10n_br.access_l10n_br_zip_range_group_user
@@ -0,0 +1,44 @@
1
+ ---Models in module 'l10n_es_edi_verifactu'---
2
+ new model l10n_es_edi_verifactu.document
3
+ ---Fields in module 'l10n_es_edi_verifactu'---
4
+ l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_clave_regimen (selection): NEW selection_keys: function, hasdefault: compute
5
+ l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_document_ids (one2many): NEW relation: l10n_es_edi_verifactu.document
6
+ l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_refund_reason (selection): NEW selection_keys: ['R1', 'R2', 'R3', 'R4', 'R5']
7
+ l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_state (selection): NEW selection_keys: ['accepted', 'cancelled', 'registered_with_errors', 'rejected'], isfunction: function, stored
8
+ l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_substituted_entry_id (many2one): NEW relation: account.move
9
+ l10n_es_edi_verifactu / account.move / l10n_es_edi_verifactu_substitution_move_ids (one2many): NEW relation: account.move
10
+ l10n_es_edi_verifactu / account.tax / l10n_es_applicability (selection): NEW selection_keys: ['01', '02', '03']
11
+ l10n_es_edi_verifactu / certificate.certificate / scope (False) : NEW selection_keys: ['facturae', 'general', 'sii', 'tbai', 'verifactu'], mode: modify
12
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / chain_index (integer) : NEW
13
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / company_id (many2one) : NEW relation: res.company, required
14
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / document_type (selection) : NEW required, selection_keys: ['cancellation', 'submission']
15
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / errors (html) : NEW
16
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / json_attachment_id (many2one) : NEW relation: ir.attachment
17
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / move_id (many2one) : NEW relation: account.move
18
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / response_csv (char) : NEW
19
+ l10n_es_edi_verifactu / l10n_es_edi_verifactu.document / state (selection) : NEW selection_keys: ['accepted', 'registered_with_errors', 'rejected']
20
+ l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_certificate_ids (one2many): NEW relation: certificate.certificate
21
+ l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_chain_sequence_id (many2one): NEW relation: ir.sequence
22
+ l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_next_batch_time (datetime): NEW
23
+ l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_required (boolean): NEW
24
+ l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_special_vat_regime (selection): NEW selection_keys: ['reagyp', 'recargo', 'simplified']
25
+ l10n_es_edi_verifactu / res.company / l10n_es_edi_verifactu_test_environment (boolean): NEW hasdefault: default
26
+ ---XML records in module 'l10n_es_edi_verifactu'---
27
+ NEW ir.actions.act_window: l10n_es_edi_verifactu.l10n_es_edi_verifactu_certificate_action
28
+ NEW ir.cron: l10n_es_edi_verifactu.cron_verifactu_batch (noupdate)
29
+ NEW ir.model.access: l10n_es_edi_verifactu.access_l10n_es_edi_verifactu_document_readonly
30
+ NEW ir.ui.menu: l10n_es_edi_verifactu.menu_l10n_es_edi_verifactu_certificates
31
+ NEW ir.ui.menu: l10n_es_edi_verifactu.menu_l10n_es_edi_verifactu_root
32
+ NEW ir.ui.view: l10n_es_edi_verifactu.certificate_certificate_view_form
33
+ NEW ir.ui.view: l10n_es_edi_verifactu.certificate_certificate_view_search
34
+ NEW ir.ui.view: l10n_es_edi_verifactu.report_invoice_document
35
+ NEW ir.ui.view: l10n_es_edi_verifactu.res_config_settings_view_form
36
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_account_invoice_filter
37
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_account_move_filter
38
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_account_move_reversal_inherit_l10n_es_edi_verifactu
39
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_company_form
40
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_invoice_tree
41
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_l10n_es_edi_verifactu_document_form
42
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_move_form_inherit_l10n_es_edi_verifactu
43
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_move_tree
44
+ NEW ir.ui.view: l10n_es_edi_verifactu.view_tax_form_inherit_l10n_es_edi_verifactu
@@ -0,0 +1,11 @@
1
+ ---Models in module 'l10n_es_edi_verifactu_pos'---
2
+ ---Fields in module 'l10n_es_edi_verifactu_pos'---
3
+ l10n_es_edi_verifactu_pos / l10n_es_edi_verifactu.document / pos_order_id (many2one) : NEW relation: pos.order
4
+ l10n_es_edi_verifactu_pos / pos.order / l10n_es_edi_verifactu_document_ids (one2many): NEW relation: l10n_es_edi_verifactu.document
5
+ l10n_es_edi_verifactu_pos / pos.order / l10n_es_edi_verifactu_refund_reason (selection): NEW selection_keys: ['R1', 'R2', 'R3', 'R4', 'R5']
6
+ l10n_es_edi_verifactu_pos / pos.order / l10n_es_edi_verifactu_state (selection): NEW selection_keys: ['accepted', 'cancelled', 'registered_with_errors', 'rejected'], isfunction: function, stored
7
+ ---XML records in module 'l10n_es_edi_verifactu_pos'---
8
+ NEW ir.model.access: l10n_es_edi_verifactu_pos.access_l10n_es_edi_verifactu_document
9
+ NEW ir.ui.view: l10n_es_edi_verifactu_pos.view_pos_order_filter
10
+ NEW ir.ui.view: l10n_es_edi_verifactu_pos.view_pos_order_form_inherit_l10n_es_pos_verifactu
11
+ NEW ir.ui.view: l10n_es_edi_verifactu_pos.view_pos_order_tree
@@ -0,0 +1,152 @@
1
+ ---Models in module 'l10n_kh'---
2
+ ---Fields in module 'l10n_kh'---
3
+ l10n_kh / res.partner.bank / l10n_kh_merchant_id (char) : NEW
4
+ l10n_kh / res.partner.bank / proxy_type (False) : NEW selection_keys: ['bakong_id_merchant', 'bakong_id_solo', 'email', 'id', 'mobile', 'none'], mode: modify
5
+ ---XML records in module 'l10n_kh'---
6
+ NEW account.report: l10n_kh.l10n_kh_t7001
7
+ NEW account.report: l10n_kh.l10n_kh_wt003
8
+ NEW account.report.column: l10n_kh.l10n_kh_t7001_balance
9
+ NEW account.report.column: l10n_kh.l10n_kh_t7001_tax
10
+ NEW account.report.column: l10n_kh.l10n_kh_wt003_balance
11
+ NEW account.report.column: l10n_kh.l10n_kh_wt003_tax
12
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_1_balance
13
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_1_tax
14
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_2a_balance
15
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_2b_balance
16
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_3_balance
17
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_3_tax
18
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_4_tax
19
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_5_tax
20
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_6_tax
21
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_2_7_tax
22
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_1_tax
23
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_2_tax
24
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_3_tax
25
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_4_tax
26
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_1a_balance
27
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_1a_tax
28
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_2a_balance
29
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_2a_tax
30
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_3a_balance
31
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_3b_balance
32
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_4a_balance
33
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_4b_balance
34
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_t_tax
35
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_1a_balance
36
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_1a_tax
37
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_1b_balance
38
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_1b_tax
39
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_2a_balance
40
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_3a_balance
41
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_3b_balance
42
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_t_tax
43
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_ta_tax
44
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_tb_tax
45
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_1a_balance
46
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_1a_tax
47
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_2a_balance
48
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_2a_tax
49
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_t_tax
50
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_1a_balance
51
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_1a_tax
52
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_1b_balance
53
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_1b_tax
54
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_t_tax
55
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_ta_tax
56
+ NEW account.report.expression: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_tb_tax
57
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_1_balance
58
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_1_tax
59
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_2_balance
60
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_2_tax
61
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_3_balance
62
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_3_tax
63
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_4_balance
64
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_4_tax
65
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_5_balance
66
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_5_tax
67
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_6_balance
68
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_6_tax
69
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_balance
70
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_tax
71
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_1_balance
72
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_1_tax
73
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_2_balance
74
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_2_tax
75
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_3_balance
76
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_3_tax
77
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_4_balance
78
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_4_tax
79
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_5_balance
80
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_5_tax
81
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_balance
82
+ NEW account.report.expression: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_tax
83
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2
84
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_1
85
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_2
86
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_2a
87
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_2b
88
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_3
89
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_4
90
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_5
91
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_6
92
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_2_7
93
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3
94
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_1
95
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_1
96
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_2
97
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_3
98
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_1_4
99
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2
100
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1
101
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_1
102
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_1a
103
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_2
104
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_2a
105
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_3
106
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_3a
107
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_3b
108
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_4
109
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_4a
110
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_4b
111
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_1_t
112
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2
113
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_1
114
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_1a
115
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_1b
116
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_2
117
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_2a
118
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_3
119
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_3a
120
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_3b
121
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_2_t
122
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_ta
123
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_2_tb
124
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3
125
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1
126
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_1
127
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_1a
128
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_2
129
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_2a
130
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_1_t
131
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2
132
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_1
133
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_1a
134
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_1b
135
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_2_t
136
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_ta
137
+ NEW account.report.line: l10n_kh.l10n_kh_t7001_kh_t7001_3_3_tb
138
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht
139
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1
140
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_1
141
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_2
142
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_3
143
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_4
144
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_5
145
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_1_6
146
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2
147
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_1
148
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_2
149
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_3
150
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_4
151
+ NEW account.report.line: l10n_kh.l10n_kh_wt003_kh_wt003_wht_2_5
152
+ NEW ir.ui.view: l10n_kh.view_partner_bank_form_inherit_account
@@ -1,4 +1,4 @@
1
1
  ---Models in module 'l10n_sg'---
2
2
  ---Fields in module 'l10n_sg'---
3
+ l10n_sg / res.partner.bank / proxy_type (False) : selection_keys added: [bakong_id_merchant, bakong_id_solo] (most likely nothing to do)
3
4
  ---XML records in module 'l10n_sg'---
4
- ---nothing has changed in this module--
@@ -1,4 +1,4 @@
1
1
  ---Models in module 'l10n_th'---
2
2
  ---Fields in module 'l10n_th'---
3
+ l10n_th / res.partner.bank / proxy_type (False) : selection_keys added: [bakong_id_merchant, bakong_id_solo] (most likely nothing to do)
3
4
  ---XML records in module 'l10n_th'---
4
- ---nothing has changed in this module--
@@ -1,6 +1,7 @@
1
1
  ---Models in module 'l10n_vn'---
2
2
  ---Fields in module 'l10n_vn'---
3
3
  l10n_vn / account.move / l10n_vn_e_invoice_number (char): NEW
4
+ l10n_vn / res.partner.bank / proxy_type (False) : selection_keys added: [bakong_id_merchant, bakong_id_solo] (most likely nothing to do)
4
5
  ---XML records in module 'l10n_vn'---
5
6
  NEW account.report.column: l10n_vn.tax_report_amount_untaxed
6
7
  NEW account.report.expression: l10n_vn.account_tax_report_line_01_01_01_vn_tag_base
@@ -0,0 +1,9 @@
1
+ # Copyright 2025 ForgeFlow S.L. (https://www.forgeflow.com)
2
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
+ from openupgradelib import openupgrade
4
+
5
+
6
+ @openupgrade.migrate()
7
+ def migrate(env, version):
8
+ rewards = env["loyalty.reward"].search([("description", "=", False)])
9
+ rewards._compute_description()
@@ -0,0 +1,36 @@
1
+ ---Models in module 'loyalty'---
2
+ new model loyalty.card.update.balance [transient]
3
+ new model loyalty.history
4
+ ---Fields in module 'loyalty'---
5
+ loyalty / loyalty.card / active (boolean) : NEW hasdefault: default
6
+ # NOTHING TO DO
7
+
8
+ loyalty / loyalty.card / message_has_sms_error (boolean): previously in module sms
9
+ loyalty / loyalty.card / website_message_ids (one2many): previously in module portal
10
+ # NOTHING TO DO
11
+
12
+ loyalty / loyalty.card / history_ids (one2many) : NEW relation: loyalty.history
13
+ loyalty / loyalty.history / card_id (many2one) : NEW relation: loyalty.card, required
14
+ loyalty / loyalty.history / description (text) : NEW required
15
+ loyalty / loyalty.history / issued (float) : NEW
16
+ loyalty / loyalty.history / order_id (many2one_reference) : NEW relation: order_model
17
+ loyalty / loyalty.history / order_model (char) : NEW
18
+ loyalty / loyalty.history / used (float) : NEW
19
+ # NOTHING TO DO: new model
20
+
21
+ loyalty / loyalty.reward / description (char) : now required
22
+ # DONE: end-migration: call _compute_description for empty descriptions
23
+
24
+ loyalty / loyalty.reward / tax_ids (many2many) : NEW relation: account.tax
25
+ # NOTHING TO DO: new functionality
26
+
27
+ ---XML records in module 'loyalty'---
28
+ NEW ir.model.access: loyalty.access_loyalty_card_update_balance_user
29
+ NEW ir.model.access: loyalty.access_loyalty_history
30
+ NEW ir.rule: loyalty.loyalty_history_company_rule (noupdate)
31
+ NEW ir.ui.view: loyalty.loyalty_buttons
32
+ NEW ir.ui.view: loyalty.loyalty_card_history_template
33
+ NEW ir.ui.view: loyalty.loyalty_card_update_balance_form
34
+ NEW ir.ui.view: loyalty.loyalty_history_form
35
+ NEW ir.ui.view: loyalty.portal_loyalty_history_breadcrumbs
36
+ # NOTHING TO DO
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-openupgrade_scripts
3
- Version: 18.0.1.0.0.293
3
+ Version: 18.0.1.0.0.303
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo==18.0.*
6
6
  Requires-Dist: openupgradelib
@@ -56,7 +56,7 @@ odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/post-migration.py,sha256=f
56
56
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/pre-migration.py,sha256=BBq8w1NIPEtpQ6mM6E88DaZD_56oiqCbyb6RLAN2bqg,2166
57
57
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis.txt,sha256=zn2pp5rMSMiAoUgIgLEZ8DivttarkojVX1v3xZY2Ry8,22324
58
58
  odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_analysis_work.txt,sha256=DtjRkyr9Xu9MZt-NvAOmUYdd9kgJErm-KOfzZOriBXc,23232
59
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt,sha256=czfKjEfBwrIna-66bOup7qFOnjZqgPfr6o2iwSCJ5oM,12053
59
+ odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt,sha256=Ksh_dP6DJKMxnZAI41qaFyL8mvV_bqFZQXhW_KehGjU,12125
60
60
  odoo/addons/openupgrade_scripts/scripts/base/tests/data_base_migration.py,sha256=G4qE5if25WvkEBxDp3S9QfVRFiD4MV7bZFeagvp5qL8,302
61
61
  odoo/addons/openupgrade_scripts/scripts/base/tests/test_base_migration.py,sha256=jj1GMmV4SX_5q9t-PvIlD1pSR6_swUcpcKKe3r2ZT4E,703
62
62
  odoo/addons/openupgrade_scripts/scripts/base_address_extended/18.0.1.1/upgrade_analysis.txt,sha256=ZOyM6AVCXejBYRawvroMqOMDKsira10CnD6UG46UG7U,186
@@ -163,9 +163,14 @@ odoo/addons/openupgrade_scripts/scripts/hr_fleet/18.0.1.0/upgrade_analysis.txt,s
163
163
  odoo/addons/openupgrade_scripts/scripts/hr_gamification/18.0.1.0/upgrade_analysis.txt,sha256=dGMSZcYGhQ8X9UxpabftmfyBei4-mTWjsXpY5MLVSZM,205
164
164
  odoo/addons/openupgrade_scripts/scripts/hr_gamification/18.0.1.0/upgrade_analysis_work.txt,sha256=oSFbmry-ZHC6woVmqO7_1wG95gy-H_kdPsReRk00mmw,221
165
165
  odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/noupdate_changes.xml,sha256=E-oKUt2VpNCp5PBeS5ObcIhTYZWC2C7nWPwOuz19LCg,3401
166
+ odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/post-migration.py,sha256=a1p-Q0nFVU7_ubvUavqdqXbbXD72Oq-t-OEIeBopXLU,391
167
+ odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/pre-migration.py,sha256=t9uNEg5PXMbFYXMLsYhrvym5QKlwWomQjl28xgS7IiE,5835
166
168
  odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/upgrade_analysis.txt,sha256=QO0s2zJ1gsHefzOlYM41AqHEoFV51LjCXX54FaQSytY,7273
169
+ odoo/addons/openupgrade_scripts/scripts/hr_holidays/18.0.1.6/upgrade_analysis_work.txt,sha256=674IOc6ypcPJIJ_WT53KR2KNfniFm8767w0cJRfp-Go,8104
167
170
  odoo/addons/openupgrade_scripts/scripts/hr_holidays_attendance/18.0.1.0/noupdate_changes.xml,sha256=sWWTZMos_-pK34q9IbuuGBm_SlViQgwBjOdUOK89Gr4,170
171
+ odoo/addons/openupgrade_scripts/scripts/hr_holidays_attendance/18.0.1.0/post-migration.py,sha256=XnPw5pJJzXpMHW2VCy3a0OB08UQ2hDuIbcOMOoJwwkQ,195
168
172
  odoo/addons/openupgrade_scripts/scripts/hr_holidays_attendance/18.0.1.0/upgrade_analysis.txt,sha256=7nl-oLoVeH_SzL74vALQ6GkztPLW6k04Wvl_49U_vmU,189
173
+ odoo/addons/openupgrade_scripts/scripts/hr_holidays_attendance/18.0.1.0/upgrade_analysis_work.txt,sha256=QGDKGIG7ZZqyWS8VPPvQdf9-9qf7b6s15MQMg_KOcoc,205
169
174
  odoo/addons/openupgrade_scripts/scripts/hr_homeworking/18.0.2.0/upgrade_analysis.txt,sha256=mGVG9Cc_AddQGz7V87Ha-fhZFMD2JwPCLL4olw0iToY,938
170
175
  odoo/addons/openupgrade_scripts/scripts/hr_homeworking_calendar/18.0.1.0/upgrade_analysis.txt,sha256=YpmtMTVe5x0pC62Q4vAVtWhm_Lh1QkeCM0HmJbLAQto,773
171
176
  odoo/addons/openupgrade_scripts/scripts/hr_hourly_cost/18.0.1.0/upgrade_analysis.txt,sha256=TuvRvqvFxqrIEX9EyxEIJUFPbycloeTMjmSua_BK-Nk,165
@@ -195,6 +200,7 @@ odoo/addons/openupgrade_scripts/scripts/hr_timesheet/18.0.1.0/post-migration.py,
195
200
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet/18.0.1.0/upgrade_analysis.txt,sha256=x6O3HV-UphXUsvvDp4Y-PomWh3xO24FGS_n7Cx2FSrA,2203
196
201
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet/18.0.1.0/upgrade_analysis_work.txt,sha256=MVsTYj180o3uSMK3uZl_P4HoSc8BcVPBLOJhx6QWP84,2375
197
202
  odoo/addons/openupgrade_scripts/scripts/hr_timesheet_attendance/18.0.1.1/upgrade_analysis.txt,sha256=J_SY-DUsRIX606daPgaFz8HNhEcKUCgYiG82wLd35TU,192
203
+ odoo/addons/openupgrade_scripts/scripts/hr_timesheet_attendance/18.0.1.1/upgrade_analysis_work.txt,sha256=c8xzgdmnKyQHnez0tCrT_C8n4XKLdcEnb4NXm0iwy8Y,208
198
204
  odoo/addons/openupgrade_scripts/scripts/hr_work_entry/18.0.1.0/upgrade_analysis.txt,sha256=trxCYo316pbrEhiwNQoi0L32Vj-uWbgQ3jDHvx3Ex8w,394
199
205
  odoo/addons/openupgrade_scripts/scripts/hr_work_entry/18.0.1.0/upgrade_analysis_work.txt,sha256=J4z2p788eLmbmKM_2Mr-DSJm9DEH-yeRZ65eHEI9cr4,410
200
206
  odoo/addons/openupgrade_scripts/scripts/hr_work_entry_contract/18.0.1.0/upgrade_analysis.txt,sha256=ci4PEjbKpDZr4lAikNgyQSjrVYKMRw-bXpm7DeZZJ6Y,189
@@ -222,7 +228,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_ar_withholding/18.0.1.0/upgrade_ana
222
228
  odoo/addons/openupgrade_scripts/scripts/l10n_au/18.0.1.1/upgrade_analysis.txt,sha256=gYY0Cue_VXfyE6pMSRvFKSSLgWmzvrXYku3OTlObtT8,1656
223
229
  odoo/addons/openupgrade_scripts/scripts/l10n_be/18.0.2.0/upgrade_analysis.txt,sha256=bRVxKV2x0hVVPzlK3iUhHRmoqk8Wk7B8-Qls6VOvjTs,252
224
230
  odoo/addons/openupgrade_scripts/scripts/l10n_bg_ledger/18.0.1.0/upgrade_analysis.txt,sha256=HudZFYQE7om411ehJ6FR6b50GR2_eU8MVYMI4nUDQKg,983
225
- odoo/addons/openupgrade_scripts/scripts/l10n_br/18.0.1.0/upgrade_analysis.txt,sha256=cLj-ay5oCdPGuY_Ccd1VvNbVWb0C7qMBZkvb8kufrlE,451335
231
+ odoo/addons/openupgrade_scripts/scripts/l10n_br/18.0.1.0/upgrade_analysis.txt,sha256=poqKrjy9R7S1RJ3OEwIhl35vsnOaGtGkMh-4RxME4h0,451496
226
232
  odoo/addons/openupgrade_scripts/scripts/l10n_br_website_sale/18.0.1.0/upgrade_analysis.txt,sha256=CzDNj9GAx0CaLpytsxWEYGcWs_7XRUWAi6icIGKyJ0w,186
227
233
  odoo/addons/openupgrade_scripts/scripts/l10n_ca/18.0.1.1/upgrade_analysis.txt,sha256=-HfsFeNq8ccZr46ZkJRuDbxoBA_3wTXtyQHIn8z_p0k,311
228
234
  odoo/addons/openupgrade_scripts/scripts/l10n_ch/18.0.11.3/upgrade_analysis.txt,sha256=SovczTFy3tfLHWG_4CgiJ3RjfetUVFZHXDqI9JVAXW0,242
@@ -252,6 +258,8 @@ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_facturae/18.0.1.0/upgrade_an
252
258
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_sii/18.0.1.1/upgrade_analysis.txt,sha256=cU_8rPaLN5uBVOBEwAaaJs00-ZoLVT1hK5CQBmZ9M4E,2573
253
259
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_tbai/18.0.1.1/upgrade_analysis.txt,sha256=3cJ1IutooQ4lIUUNZ24alWY7ifMon4_5TYUPgHop3N8,3021
254
260
  odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_tbai_pos/18.0.1.0/upgrade_analysis.txt,sha256=LUzFhpSJ__5AfXYxbqoMtTDalbG3eSge7QtKqX7BE3I,498
261
+ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu/18.0.1.0/upgrade_analysis.txt,sha256=tYj8k-LFkWr_ojusCypK8nrzF_8cd8vFCYEvWF0F63k,4405
262
+ odoo/addons/openupgrade_scripts/scripts/l10n_es_edi_verifactu_pos/18.0.1.0/upgrade_analysis.txt,sha256=erbrTtZW0XDR2_Svg-h7nfyseL3opBpb33uRsmOA0YQ,1090
255
263
  odoo/addons/openupgrade_scripts/scripts/l10n_es_pos/18.0.1.0/upgrade_analysis.txt,sha256=FjbSnOJlcdbyBOgzF_gdsSyd5PkkdAu6lArmsW4gswo,204
256
264
  odoo/addons/openupgrade_scripts/scripts/l10n_fi/18.0.13.0.2/upgrade_analysis.txt,sha256=zlmqm9DBVj0aAfRbvzL-IqnnKumlDntIcxLhLeBYbvE,144
257
265
  odoo/addons/openupgrade_scripts/scripts/l10n_fr/18.0.2.1/pre-migration.py,sha256=-xM2uryF8mIKozhcodtC-oCISA0V_S4veLfKs7fvxYo,32603
@@ -297,6 +305,7 @@ odoo/addons/openupgrade_scripts/scripts/l10n_jo_edi_extended/18.0.1.0/upgrade_an
297
305
  odoo/addons/openupgrade_scripts/scripts/l10n_jp_ubl_pint/18.0.1.0/upgrade_analysis.txt,sha256=jQJyHIVtF-zssN1yvdwz_81R8sqIVE4BguOTDyySbuU,515
298
306
  odoo/addons/openupgrade_scripts/scripts/l10n_ke/18.0.1.0/upgrade_analysis.txt,sha256=77IIp7EhPQB2hIljCU6E4fDiEXEDYKqgazUnz64y-5Q,4020
299
307
  odoo/addons/openupgrade_scripts/scripts/l10n_ke_edi_tremol/18.0.1.0/upgrade_analysis.txt,sha256=AhO-0qgM3bvpJ_u0mw1LNlNItr7B0XkqS63X9IuB5c8,222
308
+ odoo/addons/openupgrade_scripts/scripts/l10n_kh/18.0.1.0/upgrade_analysis.txt,sha256=5LbVhodradg4560JbQ3IJb8fRa5NsN1mKuK7Yjofm5o,10423
300
309
  odoo/addons/openupgrade_scripts/scripts/l10n_kr/18.0.1.0/upgrade_analysis.txt,sha256=vo-RT4ywXNb1AwzekBqP4YjjNZ9O3s3SmTqoICKKM7k,35528
301
310
  odoo/addons/openupgrade_scripts/scripts/l10n_latam_base/18.0.1.0/upgrade_analysis.txt,sha256=zTDvGDtpvxbwtlL19eoxZcGmxuFUZFsb4dVD6JUA1V8,168
302
311
  odoo/addons/openupgrade_scripts/scripts/l10n_latam_check/18.0.1.0.0/upgrade_analysis.txt,sha256=KS6jS_Zn5y5kOECjPd9ECsgkdxBOsePGIYWky8VhZTI,3925
@@ -333,11 +342,11 @@ odoo/addons/openupgrade_scripts/scripts/l10n_sa/18.0.2.0/upgrade_analysis.txt,sh
333
342
  odoo/addons/openupgrade_scripts/scripts/l10n_sa_edi/18.0.0.2/upgrade_analysis.txt,sha256=cucezUyCuhxTPam6_IDRJN9isOiQTFuOfrESfP7Db7w,947
334
343
  odoo/addons/openupgrade_scripts/scripts/l10n_sa_edi_pos/18.0.0.2/upgrade_analysis.txt,sha256=CynlJ2MzFjanw_gmbVOuvsVEDvi_z3eWAFUJFlgKRxc,168
335
344
  odoo/addons/openupgrade_scripts/scripts/l10n_se/18.0.1.1/upgrade_analysis.txt,sha256=0YcSpwh9MVP1NB4LIFtfaM5TWkyKvSYJamiQUpOFZGs,144
336
- odoo/addons/openupgrade_scripts/scripts/l10n_sg/18.0.2.2/upgrade_analysis.txt,sha256=9XUQPbP8I_MDcuAv-woGCOWH9mApY7D5GYWkVN_6fK4,144
345
+ odoo/addons/openupgrade_scripts/scripts/l10n_sg/18.0.2.2/upgrade_analysis.txt,sha256=cIxImcPVT5t0V5izQFfLt3hrwBV7RHjIrYqVVy9Nn6E,265
337
346
  odoo/addons/openupgrade_scripts/scripts/l10n_sg_ubl_pint/18.0.1.0/upgrade_analysis.txt,sha256=l9g43rS-nAe4MVo8oPzUGDWrig9QGxkIod4Q-g6vrDE,680
338
347
  odoo/addons/openupgrade_scripts/scripts/l10n_si/18.0.1.1/upgrade_analysis.txt,sha256=4I-z0QwlJOk26WfALK5g_JNHuiwPU02SVOilbyunXrg,302
339
348
  odoo/addons/openupgrade_scripts/scripts/l10n_sk/18.0.1.0/upgrade_analysis.txt,sha256=d6Dqg6yIOvdmJ49FOOC6zJQR468XVtwfIIP0g4meORQ,327
340
- odoo/addons/openupgrade_scripts/scripts/l10n_th/18.0.2.0/upgrade_analysis.txt,sha256=K0fEFmhcryb9niTRQjFO4lP1SKam0lEqSkVwd16oCRE,144
349
+ odoo/addons/openupgrade_scripts/scripts/l10n_th/18.0.2.0/upgrade_analysis.txt,sha256=ImbHOyF-pGfYV4mTOvZuRhJ0yM-K0m2vea_fW8kkYf0,265
341
350
  odoo/addons/openupgrade_scripts/scripts/l10n_tr/18.0.1.3/upgrade_analysis.txt,sha256=YeOGJrYH_ipTdfVaoUFT3hMEyBoAqK-9k6lcrX7fej4,373
342
351
  odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera/18.0.1.0/upgrade_analysis.txt,sha256=rDiNxUR7pTQNqrKEE3FAajYzgWEFnvzUIm_sOfIhGx8,552
343
352
  odoo/addons/openupgrade_scripts/scripts/l10n_tr_nilvera_edispatch/18.0.1.0/upgrade_analysis.txt,sha256=-xhpc6EGgGmPAmRIOrUQEX8NwEVbHiOqGUYHmL3Misk,198
@@ -349,11 +358,13 @@ odoo/addons/openupgrade_scripts/scripts/l10n_us/18.0.1.1/upgrade_analysis.txt,sh
349
358
  odoo/addons/openupgrade_scripts/scripts/l10n_us/18.0.1.1/upgrade_analysis_work.txt,sha256=h3IF-LR8vdyjrX3E9gI92207d0G7i6xdRcTAfgniZho,160
350
359
  odoo/addons/openupgrade_scripts/scripts/l10n_uy/18.0.0.1/noupdate_changes.xml,sha256=Q4A7VMK7u4gPg6z8JLaZjmhIp4-uE9tDPEt_n1BJo-s,151
351
360
  odoo/addons/openupgrade_scripts/scripts/l10n_uy/18.0.0.1/upgrade_analysis.txt,sha256=Wwc5xqc4YK0HHS08Uc8XfR8Js8J-Uem8dqqLwZymTDE,144
352
- odoo/addons/openupgrade_scripts/scripts/l10n_vn/18.0.2.0.3/upgrade_analysis.txt,sha256=OtyvJtDcMgyLBeait65q4l3FpToBLUOlxeMTR6nZijE,3192
361
+ odoo/addons/openupgrade_scripts/scripts/l10n_vn/18.0.2.0.3/upgrade_analysis.txt,sha256=t_pwjFWXYyEt4Bad5z9Wl_0vZkibt0DXDwmC0nBPwPc,3353
353
362
  odoo/addons/openupgrade_scripts/scripts/l10n_vn_edi_viettel/18.0.1.0/upgrade_analysis.txt,sha256=IB2bsRdwDu40KnMaxYmCpSAkKhTvdmDDEE_fmUPFO_o,650
354
363
  odoo/addons/openupgrade_scripts/scripts/link_tracker/18.0.1.1/upgrade_analysis.txt,sha256=Ph-CuEBHU1WnRHswlXmC4YvE1LOo-0EpydbqIJ4VBSU,159
355
364
  odoo/addons/openupgrade_scripts/scripts/link_tracker/18.0.1.1/upgrade_analysis_work.txt,sha256=HDJTQYlf0PpfRNSdGPao082n2s217eEL-0LUEC0qAs4,175
365
+ odoo/addons/openupgrade_scripts/scripts/loyalty/18.0.1.0/end-migration.py,sha256=MK3aSW8b7p_4ADJMKIAnXv-SeSkZ_I4TcIRxw24hCvg,325
356
366
  odoo/addons/openupgrade_scripts/scripts/loyalty/18.0.1.0/upgrade_analysis.txt,sha256=6eXr36mMS3l5p9A0roax6V62DhNr1f97P2jP28UDjaE,1740
367
+ odoo/addons/openupgrade_scripts/scripts/loyalty/18.0.1.0/upgrade_analysis_work.txt,sha256=YWZ6PYYY5y_otUDHAIlHnHdt7DwjBNxg7kXUFTF7pds,1927
357
368
  odoo/addons/openupgrade_scripts/scripts/lunch/18.0.1.0/upgrade_analysis.txt,sha256=I00Bu3CtG_X-c_-KpU7MGC0uZI306Mb6of6dMyB7nFg,283
358
369
  odoo/addons/openupgrade_scripts/scripts/mail/18.0.1.18/noupdate_changes.xml,sha256=nHtVWU3RSjfpW7QN8N0Mt0qqVqHBC3-Pz7_po695_bs,4391
359
370
  odoo/addons/openupgrade_scripts/scripts/mail/18.0.1.18/post-migration.py,sha256=ioQQmxrPDZC2D2WYZKDIFwRbxUx8muupRpk1hdmFFb4,2172
@@ -714,7 +725,7 @@ odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_a
714
725
  odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
715
726
  odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
716
727
  odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Jc0qAThlH5WnoSq6vPamjC8WyMkdo_9zkhDuU1qW1VI,12722
717
- odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info/METADATA,sha256=wzrrsiWtNxaF_6zyHbxL_qT7tE2_0D0rSsVBEWtr4QU,3812
718
- odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
719
- odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
720
- odoo_addon_openupgrade_scripts-18.0.1.0.0.293.dist-info/RECORD,,
728
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info/METADATA,sha256=oqE5MXj0XQnUAfN9ELiAXrqkoGDoa-gh7QPdgjSyWrY,3812
729
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
730
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
731
+ odoo_addon_openupgrade_scripts-18.0.1.0.0.303.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: Whool 1.2
2
+ Generator: Whool 1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5