odoo-addon-openupgrade-scripts 18.0.1.0.0.347__py3-none-any.whl → 18.0.1.0.0.355__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 +1 -0
- odoo/addons/openupgrade_scripts/scripts/analytic/18.0.1.2/upgrade_analysis.txt +1 -0
- odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt +1 -1
- odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/post-migration.py +58 -0
- odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/pre-migration.py +13 -0
- odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/upgrade_analysis_work.txt +48 -0
- odoo/addons/openupgrade_scripts/scripts/pos_hr/18.0.1.0/post-migration.py +65 -0
- odoo/addons/openupgrade_scripts/scripts/pos_hr/18.0.1.0/pre-migration.py +10 -0
- odoo/addons/openupgrade_scripts/scripts/pos_hr/18.0.1.0/upgrade_analysis_work.txt +25 -0
- odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/post-migration.py +12 -0
- odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/pre-migration.py +62 -0
- odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/upgrade_analysis_work.txt +58 -0
- odoo/addons/openupgrade_scripts/scripts/purchase_requisition_stock/18.0.1.2/upgrade_analysis_work.txt +5 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.347.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.347.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info}/RECORD +17 -7
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.347.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-18.0.1.0.0.347.dist-info → odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info}/top_level.txt +0 -0
@@ -63,6 +63,7 @@ merged_modules = {
|
|
63
63
|
# odoo/enterprise
|
64
64
|
# OCA/e-commerce
|
65
65
|
"website_sale_product_attachment": "website_sale",
|
66
|
+
"website_sale_product_attribute_filter_collapse": "website_sale",
|
66
67
|
# OCA/hr-attendance
|
67
68
|
"hr_attendance_autoclose": "hr_attendance",
|
68
69
|
# OCA/knowledge
|
@@ -4,5 +4,6 @@ new model analytic.plan.fields.mixin [abstract]
|
|
4
4
|
analytic / account.analytic.distribution.model / _order : _order is now 'sequence, id desc' ('id desc')
|
5
5
|
analytic / account.analytic.distribution.model / analytic_distribution_search (json): DEL stored: False
|
6
6
|
analytic / account.analytic.distribution.model / sequence (integer) : NEW hasdefault: default
|
7
|
+
analytic / account.analytic.line / analytic_precision (integer) : NEW hasdefault: default, stored: False
|
7
8
|
analytic / account.analytic.plan / default_applicability (selection): needs conversion to v18-style company dependent
|
8
9
|
---XML records in module 'analytic'---
|
@@ -126,7 +126,7 @@ new model website.page.properties.base [module website]
|
|
126
126
|
# Found in other module: 92
|
127
127
|
# Found with different type: 8
|
128
128
|
# In obsolete models: 34
|
129
|
-
# New columns:
|
129
|
+
# New columns: 1651
|
130
130
|
# Not matched: 844
|
131
131
|
---XML records in module 'general'---
|
132
132
|
ERROR: module not in list of installed modules:
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _fill_hr_candidate_skill(env):
|
7
|
+
# Create candidate skill records from applicant skill
|
8
|
+
openupgrade.logged_query(
|
9
|
+
env.cr,
|
10
|
+
"""
|
11
|
+
INSERT INTO hr_candidate_skill (
|
12
|
+
candidate_id, skill_id, skill_level_id, skill_type_id,
|
13
|
+
create_date, write_date, create_uid, write_uid
|
14
|
+
)
|
15
|
+
SELECT DISTINCT ON (candidate_id, skill_id)
|
16
|
+
candidate_id,
|
17
|
+
skill_id,
|
18
|
+
skill_level_id,
|
19
|
+
skill_type_id,
|
20
|
+
create_date,
|
21
|
+
write_date,
|
22
|
+
create_uid,
|
23
|
+
write_uid
|
24
|
+
FROM (
|
25
|
+
SELECT ha.candidate_id,
|
26
|
+
has.skill_id,
|
27
|
+
has.skill_level_id,
|
28
|
+
has.skill_type_id,
|
29
|
+
has.create_date,
|
30
|
+
has.write_date,
|
31
|
+
has.create_uid,
|
32
|
+
has.write_uid,
|
33
|
+
hsl.level_progress
|
34
|
+
FROM hr_applicant_skill AS has
|
35
|
+
JOIN hr_applicant AS ha ON ha.id = has.applicant_id
|
36
|
+
JOIN hr_skill_level hsl ON hsl.id = has.skill_level_id
|
37
|
+
) tmp
|
38
|
+
ORDER BY candidate_id, skill_id, level_progress DESC;
|
39
|
+
""",
|
40
|
+
)
|
41
|
+
# fill many2many field skill_ids
|
42
|
+
openupgrade.logged_query(
|
43
|
+
env.cr,
|
44
|
+
"""
|
45
|
+
INSERT INTO hr_candidate_hr_skill_rel (
|
46
|
+
hr_candidate_id, hr_skill_id
|
47
|
+
)
|
48
|
+
SELECT DISTINCT candidate_id, skill_id
|
49
|
+
FROM hr_candidate_skill
|
50
|
+
ON CONFLICT DO NOTHING
|
51
|
+
""",
|
52
|
+
)
|
53
|
+
|
54
|
+
|
55
|
+
@openupgrade.migrate()
|
56
|
+
def migrate(env, version):
|
57
|
+
openupgrade.load_data(env, "hr_recruitment_skills", "18.0.1.0/noupdate_changes.xml")
|
58
|
+
_fill_hr_candidate_skill(env)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
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
|
+
openupgrade.remove_tables_fks(
|
9
|
+
env.cr, ["hr_applicant_skill", "hr_applicant_hr_skill_rel"]
|
10
|
+
)
|
11
|
+
openupgrade.delete_sql_constraint_safely(
|
12
|
+
env, "hr_recruitment_skills", "hr_applicant_skill", "unique_skill"
|
13
|
+
)
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
---Models in module 'hr_recruitment_skills'---
|
2
|
+
obsolete model hr.applicant.skill (renamed to hr.candidate.skill)
|
3
|
+
new model hr.candidate.skill (renamed from hr.applicant.skill)
|
4
|
+
# DONE: pre-migration: rename model from hr.applicant.skill
|
5
|
+
# DONE: post-migration: Populate the table from hr_applicant_skill.
|
6
|
+
|
7
|
+
---Fields in module 'hr_recruitment_skills'---
|
8
|
+
hr_recruitment_skills / hr.applicant / applicant_skill_ids (one2many): DEL relation: hr.applicant.skill
|
9
|
+
# NOTHING TO DO: one2many (handled by ORM)
|
10
|
+
|
11
|
+
hr_recruitment_skills / hr.applicant / skill_ids (many2many) : not a function anymore
|
12
|
+
hr_recruitment_skills / hr.applicant / skill_ids (many2many) : not stored anymore
|
13
|
+
hr_recruitment_skills / hr.applicant / skill_ids (many2many) : now related
|
14
|
+
hr_recruitment_skills / hr.applicant / skill_ids (many2many) : table is now 'False' ('hr_applicant_hr_skill_rel')
|
15
|
+
# NOTHING TO DO: this field is related to hr.candidate
|
16
|
+
|
17
|
+
hr_recruitment_skills / hr.applicant.skill / applicant_id (many2one) : DEL relation: hr.applicant, required
|
18
|
+
hr_recruitment_skills / hr.candidate.skill / candidate_id (many2one) : NEW relation: hr.candidate, required
|
19
|
+
# DONE: post-migration: Populate the table from hr_applicant_skill.
|
20
|
+
|
21
|
+
hr_recruitment_skills / hr.candidate / candidate_skill_ids (one2many): NEW relation: hr.candidate.skill
|
22
|
+
# NOTHING TO DO: one2many (handled by ORM)
|
23
|
+
|
24
|
+
hr_recruitment_skills / hr.candidate / skill_ids (many2many) : NEW relation: hr.skill, isfunction: function, stored
|
25
|
+
# DONE: post-migration: Populate the table from hr_applicant_hr_skill_rel.
|
26
|
+
|
27
|
+
hr_recruitment_skills / hr.job / skill_ids (many2many) : NEW relation: hr.skill
|
28
|
+
# NOTHING TO DO: New feature, this field must be empty, and the user can fill it in when they need to use the new action `Search Matching Applicants`
|
29
|
+
|
30
|
+
---XML records in module 'hr_recruitment_skills'---
|
31
|
+
NEW ir.actions.server: hr_recruitment_skills.action_applicant_search_applicant
|
32
|
+
# NOTHING TO DO: New feature
|
33
|
+
|
34
|
+
NEW ir.model.access: hr_recruitment_skills.access_hr_candidate_skill_interviewer
|
35
|
+
DEL ir.model.access: hr_recruitment_skills.access_hr_applicant_skill_interviewer
|
36
|
+
# NOTHING TO DO: handled by ORM
|
37
|
+
|
38
|
+
NEW ir.model.constraint: hr_recruitment_skills.constraint_hr_candidate_skill__unique_skill
|
39
|
+
# NOTHING TO DO: Let ORM create it.
|
40
|
+
|
41
|
+
DEL ir.model.constraint: hr_recruitment_skills.constraint_hr_applicant_skill__unique_skill
|
42
|
+
# DONE: pre-migration: safely delete
|
43
|
+
|
44
|
+
NEW ir.ui.view: hr_recruitment_skills.hr_candidate_view_form
|
45
|
+
NEW ir.ui.view: hr_recruitment_skills.hr_candidate_view_search
|
46
|
+
NEW ir.ui.view: hr_recruitment_skills.hr_candidate_view_tree
|
47
|
+
NEW ir.ui.view: hr_recruitment_skills.hr_job_form_inherit_hr_recruitment_skills
|
48
|
+
# NOTHING TO DO: New feature
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
|
6
|
+
def _fill_pos_payment_employee(env):
|
7
|
+
openupgrade.logged_query(
|
8
|
+
env.cr,
|
9
|
+
"""
|
10
|
+
UPDATE pos_payment pp
|
11
|
+
SET employee_id = po.employee_id
|
12
|
+
FROM pos_order po
|
13
|
+
WHERE pp.pos_order_id = po.id
|
14
|
+
AND pp.employee_id IS NULL AND po.employee_id IS NOT NULL
|
15
|
+
""",
|
16
|
+
)
|
17
|
+
|
18
|
+
|
19
|
+
def _fill_pos_session_employee(env):
|
20
|
+
"""
|
21
|
+
Fill the employee_id in pos_session
|
22
|
+
based on the employee related to the user who opened the session.
|
23
|
+
Note: For open sessions this field is set every time an employee logs in to the POS.
|
24
|
+
"""
|
25
|
+
openupgrade.logged_query(
|
26
|
+
env.cr,
|
27
|
+
"""
|
28
|
+
UPDATE pos_session ps
|
29
|
+
SET employee_id = he.id
|
30
|
+
FROM hr_employee he, pos_config pc
|
31
|
+
WHERE ps.employee_id IS NULL
|
32
|
+
AND ps.user_id = he.user_id
|
33
|
+
AND pc.id = ps.config_id
|
34
|
+
AND he.company_id = pc.company_id;
|
35
|
+
""",
|
36
|
+
)
|
37
|
+
|
38
|
+
|
39
|
+
def _fill_account_bank_statement_line_employee(env):
|
40
|
+
"""
|
41
|
+
Fill the employee_id in account_bank_statement_line
|
42
|
+
based on the employee related to the user who created the record.
|
43
|
+
There is no reliable way to know which user actually performed the transaction,
|
44
|
+
so this heuristic is used to populate the field.
|
45
|
+
"""
|
46
|
+
openupgrade.logged_query(
|
47
|
+
env.cr,
|
48
|
+
"""
|
49
|
+
UPDATE account_bank_statement_line absl
|
50
|
+
SET employee_id = he.id
|
51
|
+
FROM hr_employee he, pos_session ps
|
52
|
+
WHERE absl.employee_id IS NULL
|
53
|
+
AND absl.create_uid = he.user_id
|
54
|
+
AND he.company_id = absl.company_id
|
55
|
+
AND ps.id = absl.pos_session_id
|
56
|
+
AND absl.journal_id = ps.cash_journal_id;
|
57
|
+
""",
|
58
|
+
)
|
59
|
+
|
60
|
+
|
61
|
+
@openupgrade.migrate()
|
62
|
+
def migrate(env, version):
|
63
|
+
_fill_pos_payment_employee(env)
|
64
|
+
_fill_pos_session_employee(env)
|
65
|
+
_fill_account_bank_statement_line_employee(env)
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
column_creates = [("pos.payment", "employee_id", "many2one")]
|
6
|
+
|
7
|
+
|
8
|
+
@openupgrade.migrate()
|
9
|
+
def migrate(env, version):
|
10
|
+
openupgrade.add_columns(env, column_creates)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---Models in module 'pos_hr'---
|
2
|
+
new model report.pos_hr.multi_employee_sales_report [abstract]
|
3
|
+
new model report.pos_hr.single_employee_sales_report [abstract]
|
4
|
+
# NOTHING TO DO: new feature added in https://github.com/odoo/odoo/commit/5193e458ac0dc165757fa0f3fc17796376ad1b3b
|
5
|
+
|
6
|
+
---Fields in module 'pos_hr'---
|
7
|
+
pos_hr / account.bank.statement.line / employee_id (many2one) : NEW relation: hr.employee
|
8
|
+
# DONE: post-migration: Fill this field based on the employee related to the user who created the record.
|
9
|
+
# https://github.com/odoo/odoo/blob/ceb4791a89e95080b56590baa9625ac085e2e7be/addons/pos_hr/static/src/overrides/components/navbar/cash_move_popup/cash_move_popup.js#L8
|
10
|
+
|
11
|
+
pos_hr / pos.payment / employee_id (many2one) : NEW relation: hr.employee, isrelated: related, stored
|
12
|
+
# DONE: pre-migration: pre-created column and filled in post-migration
|
13
|
+
|
14
|
+
pos_hr / pos.session / employee_id (many2one) : NEW relation: hr.employee
|
15
|
+
# DONE: post-migration: Fill this field based on the user who opened the session.
|
16
|
+
# Note: For open sessions, this field is set every time an employee logs in to the POS.
|
17
|
+
# see https://github.com/odoo/odoo/blob/ceb4791a89e95080b56590baa9625ac085e2e7be/addons/pos_hr/static/src/overrides/models/pos_store.js#L61-L63
|
18
|
+
|
19
|
+
---XML records in module 'pos_hr'---
|
20
|
+
NEW ir.actions.report: pos_hr.multi_employee_sales_report_action
|
21
|
+
NEW ir.ui.view: pos_hr.multi_employee_sales_report
|
22
|
+
NEW ir.ui.view: pos_hr.single_employee_sales_report
|
23
|
+
NEW ir.ui.view: pos_hr.view_pos_daily_sales_reports_wizard
|
24
|
+
NEW ir.ui.view: pos_hr.view_pos_payment_tree_inherit
|
25
|
+
# NOTHING TO DO: new feature added in https://github.com/odoo/odoo/commit/5193e458ac0dc165757fa0f3fc17796376ad1b3b
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
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
|
+
openupgrade.delete_records_safely_by_xml_id(
|
10
|
+
env,
|
11
|
+
["purchase_requisition.type_single"],
|
12
|
+
)
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Carlos Lopez
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
from openupgradelib import openupgrade
|
4
|
+
|
5
|
+
_new_columns = [
|
6
|
+
("purchase.order.line", "price_total_cc", "float"),
|
7
|
+
("purchase.requisition", "requisition_type", "selection"),
|
8
|
+
]
|
9
|
+
field_renames = [
|
10
|
+
("purchase.requisition", "purchase_requisition", "origin", "reference"),
|
11
|
+
("purchase.requisition", "purchase_requisition", "schedule_date", "date_start"),
|
12
|
+
]
|
13
|
+
|
14
|
+
|
15
|
+
def fill_purchase_order_line_price_total_cc(env):
|
16
|
+
openupgrade.logged_query(
|
17
|
+
env.cr,
|
18
|
+
"""
|
19
|
+
UPDATE purchase_order_line pol
|
20
|
+
SET price_total_cc = COALESCE(
|
21
|
+
pol.price_subtotal / NULLIF(po.currency_rate, 0),
|
22
|
+
0
|
23
|
+
)
|
24
|
+
FROM purchase_order po
|
25
|
+
WHERE po.id = pol.order_id
|
26
|
+
""",
|
27
|
+
)
|
28
|
+
|
29
|
+
|
30
|
+
def fill_purchase_requisition_type(env):
|
31
|
+
openupgrade.logged_query(
|
32
|
+
env.cr,
|
33
|
+
"""
|
34
|
+
UPDATE purchase_requisition pr
|
35
|
+
SET requisition_type = CASE
|
36
|
+
WHEN prt.quantity_copy = 'none' THEN 'blanket_order'
|
37
|
+
ELSE 'purchase_template' END
|
38
|
+
FROM purchase_requisition_type prt
|
39
|
+
WHERE prt.id = pr.type_id
|
40
|
+
""",
|
41
|
+
)
|
42
|
+
|
43
|
+
|
44
|
+
@openupgrade.migrate()
|
45
|
+
def migrate(env, version=None):
|
46
|
+
openupgrade.copy_columns(
|
47
|
+
env.cr,
|
48
|
+
{"purchase_requisition": [("state", None, None)]},
|
49
|
+
)
|
50
|
+
openupgrade.add_columns(env, _new_columns)
|
51
|
+
openupgrade.rename_fields(env, field_renames)
|
52
|
+
fill_purchase_order_line_price_total_cc(env)
|
53
|
+
fill_purchase_requisition_type(env)
|
54
|
+
old_column = openupgrade.get_legacy_name("state")
|
55
|
+
openupgrade.map_values(
|
56
|
+
env.cr,
|
57
|
+
old_column,
|
58
|
+
"state",
|
59
|
+
[("in_progress", "confirmed"), ("ongoing", "confirmed"), ("open", "confirmed")],
|
60
|
+
table="purchase_requisition",
|
61
|
+
)
|
62
|
+
openupgrade.remove_tables_fks(env.cr, ["purchase_requisition_type"])
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/upgrade_analysis_work.txt
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
---Models in module 'purchase_requisition'---
|
2
|
+
obsolete model purchase.requisition.type
|
3
|
+
---Fields in module 'purchase_requisition'---
|
4
|
+
purchase_requisition / purchase.order.line / price_total_cc (float) : NEW isfunction: function, stored
|
5
|
+
# DONE: pre-migration: pre-create and filled
|
6
|
+
|
7
|
+
purchase_requisition / purchase.requisition / active (boolean) : NEW hasdefault: default
|
8
|
+
purchase_requisition / purchase.requisition / date_end (datetime) : type is now 'date' ('datetime')
|
9
|
+
# NOTHING TO DO: Handled by ORM
|
10
|
+
|
11
|
+
purchase_requisition / purchase.requisition / schedule_date (date) : DEL
|
12
|
+
purchase_requisition / purchase.requisition / date_start (date) : NEW
|
13
|
+
purchase_requisition / purchase.requisition / origin (char) : DEL
|
14
|
+
purchase_requisition / purchase.requisition / reference (char) : NEW
|
15
|
+
# DONE: pre-migration: copied column for preservation and rename fields
|
16
|
+
|
17
|
+
purchase_requisition / purchase.requisition / state (selection) : selection_keys added: [confirmed], removed: [in_progress, ongoing, open]
|
18
|
+
# DONE: pre-migration: copied column for preservation and mapped values: in_progress -> confirmed. ongoing -> confirmed. open -> confirmed.
|
19
|
+
|
20
|
+
purchase_requisition / purchase.requisition / requisition_type (selection) : NEW required, selection_keys: ['blanket_order', 'purchase_template'], hasdefault: default
|
21
|
+
purchase_requisition / purchase.requisition / type_id (many2one) : DEL relation: purchase.requisition.type, required
|
22
|
+
# DONE: pre-migration: pre-created and filled requisition_type according to quantity_copy of type_id
|
23
|
+
# if quantity_copy = 'none' then 'blanket_order', else 'purchase_template'
|
24
|
+
purchase_requisition / purchase.requisition.type / active (boolean) : DEL
|
25
|
+
purchase_requisition / purchase.requisition.type / exclusive (selection) : DEL required, selection_keys: ['exclusive', 'multiple']
|
26
|
+
purchase_requisition / purchase.requisition.type / line_copy (selection) : DEL required, selection_keys: ['copy', 'none']
|
27
|
+
purchase_requisition / purchase.requisition.type / name (char) : DEL required
|
28
|
+
purchase_requisition / purchase.requisition.type / quantity_copy (selection) : DEL required, selection_keys: ['copy', 'none']
|
29
|
+
purchase_requisition / purchase.requisition.type / sequence (integer) : DEL
|
30
|
+
DONE: pre-migration: Removed foreign keys.
|
31
|
+
# Odoo replaced this model with requisition_type.
|
32
|
+
# See https://github.com/odoo/odoo/pull/129114
|
33
|
+
|
34
|
+
purchase_requisition / purchase.requisition.line / analytic_distribution_search (json): DEL stored: False
|
35
|
+
# NOTHING TO DO: Helper field needed in previous version for searches
|
36
|
+
|
37
|
+
purchase_requisition / purchase.requisition / ordering_date (date) : DEL
|
38
|
+
purchase_requisition / purchase.requisition.line / schedule_date (date) : DEL
|
39
|
+
# NOTHING TO DO: These fields are not used.
|
40
|
+
|
41
|
+
---XML records in module 'purchase_requisition'---
|
42
|
+
DEL ir.model.access: purchase_requisition.access_purchase_requisition_type
|
43
|
+
DEL ir.model.access: purchase_requisition.access_purchase_requisition_type_manager
|
44
|
+
# NOTHING TO DO: Handled by ORM
|
45
|
+
|
46
|
+
NEW ir.sequence: purchase_requisition.seq_purchase_template (noupdate)
|
47
|
+
NEW res.groups: purchase_requisition.group_purchase_alternatives (noupdate)
|
48
|
+
NEW ir.ui.view: purchase_requisition.res_config_settings_view_form_purchase_requisition
|
49
|
+
# NOTHING TO DO: This is a new feature and should not be enabled by default
|
50
|
+
|
51
|
+
DEL ir.ui.view: purchase_requisition.view_purchase_requisition_type_form
|
52
|
+
DEL ir.ui.view: purchase_requisition.view_purchase_requisition_type_kanban
|
53
|
+
DEL ir.ui.view: purchase_requisition.view_purchase_requisition_type_search
|
54
|
+
DEL ir.ui.view: purchase_requisition.view_purchase_requisition_type_tree
|
55
|
+
# NOTHING TO DO: Handled by ORM
|
56
|
+
|
57
|
+
DEL purchase.requisition.type: purchase_requisition.type_single (noupdate)
|
58
|
+
# DONE: post-migration: deleted safely
|
@@ -1,7 +1,7 @@
|
|
1
1
|
odoo/addons/openupgrade_scripts/README.rst,sha256=RuTBUdBI9hVP6kr2WJenFV-0J5l2tgUfzuOEtG9MyKQ,3179
|
2
2
|
odoo/addons/openupgrade_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
odoo/addons/openupgrade_scripts/__manifest__.py,sha256=fZVzjupYlcmfrTQtiBu7wlaAqO4JWQncNAdQPEnpaCY,614
|
4
|
-
odoo/addons/openupgrade_scripts/apriori.py,sha256=
|
4
|
+
odoo/addons/openupgrade_scripts/apriori.py,sha256=vGHKwaMem0oQSN66FycEgy_HtLdL6Z9r8KyMJsNnO8U,4169
|
5
5
|
odoo/addons/openupgrade_scripts/readme/CONFIGURE.md,sha256=rnx8ADTYzVUB93PIG3Lib0iWBrphSfVRs6RMikklf3M,238
|
6
6
|
odoo/addons/openupgrade_scripts/readme/DESCRIPTION.md,sha256=6hwHccovmE9cfaV7PQPvKUvNJa-f_Uc1wgXyL_SrYck,86
|
7
7
|
odoo/addons/openupgrade_scripts/readme/INSTALL.md,sha256=NDKVZRv0J8BTqcSTD7JwUXL_AY-cDJoegn5IUTbEOFk,113
|
@@ -33,7 +33,7 @@ odoo/addons/openupgrade_scripts/scripts/account_update_tax_tags/18.0.1.0/upgrade
|
|
33
33
|
odoo/addons/openupgrade_scripts/scripts/analytic/18.0.1.2/end-migration.py,sha256=OQVRAUmWA4979RJKTfj0wfXdHuoUZ6yi-QnXsTtZ-tg,285
|
34
34
|
odoo/addons/openupgrade_scripts/scripts/analytic/18.0.1.2/noupdate_changes.xml,sha256=CQZ454cfubLl4T0NmN-v5ajgXRoKWmvIzvsmPab2MVo,190
|
35
35
|
odoo/addons/openupgrade_scripts/scripts/analytic/18.0.1.2/post-migration.py,sha256=PvFP9SZp2m1byvXb4tuIeCZL4Or7FWjIuwwlqqaxQQs,403
|
36
|
-
odoo/addons/openupgrade_scripts/scripts/analytic/18.0.1.2/upgrade_analysis.txt,sha256=
|
36
|
+
odoo/addons/openupgrade_scripts/scripts/analytic/18.0.1.2/upgrade_analysis.txt,sha256=HmdctjuZC39zt7RAJK7drz6dKB-3OgVK1yKR-pIUpVk,741
|
37
37
|
odoo/addons/openupgrade_scripts/scripts/analytic/18.0.1.2/upgrade_analysis_work.txt,sha256=7oWo0-jGzZVCVdEhOTldukvAZXzxhYb2WEniZir4Exc,641
|
38
38
|
odoo/addons/openupgrade_scripts/scripts/auth_ldap/18.0.1.0/upgrade_analysis.txt,sha256=QB9DfdWzmE0oR4fsd-qPQ9JF5W_uZFNYpvKmNVs_TZw,150
|
39
39
|
odoo/addons/openupgrade_scripts/scripts/auth_oauth/18.0.1.0/upgrade_analysis.txt,sha256=FxJ3tHzlvJtzEN8spiXAXZf7832DrzQ71MkfayvDt_o,153
|
@@ -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=eGEjAYIoYmIQGTQ3QwpE_6FGUJvvmgK35oE1jNqRWJE,2371
|
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=
|
59
|
+
odoo/addons/openupgrade_scripts/scripts/base/18.0.1.3/upgrade_general_log.txt,sha256=iZA6fv4czQ5dUX4rhV87p5Zyrx2M3_aT4AhQpNl7LUk,12169
|
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
|
@@ -191,7 +191,10 @@ odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/pre-migration.py
|
|
191
191
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/upgrade_analysis.txt,sha256=egJBU6M14oAL4JOPEej39P0w-tyi-v8eKSbdMUZM8-I,10676
|
192
192
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment/18.0.1.1/upgrade_analysis_work.txt,sha256=Bk15zVV8z-AUhC1oDmxJJhO3h95rXQpJ8neqFP1rdIo,11783
|
193
193
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/noupdate_changes.xml,sha256=TBWulUD77pcsyyuwVjk-O33EtjeAv98gbvpS0AHlFYA,563
|
194
|
+
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/post-migration.py,sha256=evPDLMdaUzpIG1nM1cmZHVCSyxxZkFokLFYJz9WDnz8,1808
|
195
|
+
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/pre-migration.py,sha256=HOPOiOO1lpENwMmXc5WIPDvkJBEo060_kpP0wJ1xDsA,434
|
194
196
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/upgrade_analysis.txt,sha256=iQF7k6CQCDXQyyh_TWqqn4ktJK7xEfgy4Q8xyo1acbk,2114
|
197
|
+
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_skills/18.0.1.0/upgrade_analysis_work.txt,sha256=e_ShH_T1QIVI7HEt4frY8gbCUgjFmKefmzVXAK6MnVU,2850
|
195
198
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_sms/18.0.1.0/upgrade_analysis.txt,sha256=FJI1P9IcBHW7GjFk1x8zkxu1yfA99EiujiWfva0QWxc,212
|
196
199
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_survey/18.0.1.0/noupdate_changes.xml,sha256=cfrhcI415EqNbAoWuR36rd77cmbKyJKAOxCbKnRs3a0,503
|
197
200
|
odoo/addons/openupgrade_scripts/scripts/hr_recruitment_survey/18.0.1.0/post-migration.py,sha256=px6qmnv3sWeO4qDo5B_iV2NJqe16_NzyY4FyT59Awew,1396
|
@@ -482,7 +485,10 @@ odoo/addons/openupgrade_scripts/scripts/pos_adyen/18.0.1.0/upgrade_analysis.txt,
|
|
482
485
|
odoo/addons/openupgrade_scripts/scripts/pos_discount/18.0.1.0/upgrade_analysis.txt,sha256=5eEufUSmb5oAOgmggtWzh0WuXK-XzcKq-qWBETPiL58,227
|
483
486
|
odoo/addons/openupgrade_scripts/scripts/pos_epson_printer/18.0.1.0/upgrade_analysis.txt,sha256=NEH1v3SEpIueE7tNZfWGXTMYg6UuK_r35ngjViWX-ps,174
|
484
487
|
odoo/addons/openupgrade_scripts/scripts/pos_event/18.0.1.0/upgrade_analysis.txt,sha256=ZVRM7F2eCA_nnNoM1DLpbZcpQz5N6SN6_z0ERa7-B3c,867
|
488
|
+
odoo/addons/openupgrade_scripts/scripts/pos_hr/18.0.1.0/post-migration.py,sha256=6TgBRQxpJU6c1Jq17BO895y2iokccMJhmqiAlPKuTIE,2017
|
489
|
+
odoo/addons/openupgrade_scripts/scripts/pos_hr/18.0.1.0/pre-migration.py,sha256=Y8ZJ9tQj2LMSStnI6HM4o_F5npyPGmc0lZtVzWWdrqw,314
|
485
490
|
odoo/addons/openupgrade_scripts/scripts/pos_hr/18.0.1.0/upgrade_analysis.txt,sha256=fnrcad9Of_eTTF8FOyiRWZHLNfK9u_5BgVUcMHYmXuQ,839
|
491
|
+
odoo/addons/openupgrade_scripts/scripts/pos_hr/18.0.1.0/upgrade_analysis_work.txt,sha256=1oMqaS30XkMSsiov0nPkm7f3wVVcfq2z7EjbtAtv8J8,1732
|
486
492
|
odoo/addons/openupgrade_scripts/scripts/pos_loyalty/18.0.2.0/upgrade_analysis.txt,sha256=Iifuq0KKdA7p6btBbSKW8Sr1RoNTLU79NRIi9AeWcyc,379
|
487
493
|
odoo/addons/openupgrade_scripts/scripts/pos_mercado_pago/18.0.1.0/upgrade_analysis.txt,sha256=GXkNAKYshmzoCsLKfV6nAK23UqpA6_975RPHNkYgQ8k,171
|
488
494
|
odoo/addons/openupgrade_scripts/scripts/pos_online_payment/18.0.1.0/upgrade_analysis.txt,sha256=HtaFv5lIRj4piXO0uLtEdYNzG_rJbWLLQkNGwKawmRc,177
|
@@ -552,8 +558,12 @@ odoo/addons/openupgrade_scripts/scripts/purchase_mrp/18.0.1.0/upgrade_analysis.t
|
|
552
558
|
odoo/addons/openupgrade_scripts/scripts/purchase_mrp/18.0.1.0/upgrade_analysis_work.txt,sha256=PkKq2-YeaJ7akcE-HXzvyACTWmYsv_zAstktzscNlLk,175
|
553
559
|
odoo/addons/openupgrade_scripts/scripts/purchase_product_matrix/18.0.1.0/upgrade_analysis.txt,sha256=obvxp1mgxodP6rjNo4iQu45-Tt6Dec70_Tq-nKHYdM0,466
|
554
560
|
odoo/addons/openupgrade_scripts/scripts/purchase_repair/18.0.1.0/upgrade_analysis.txt,sha256=iQamur62Z-T4-RlUG4l31Er9KvdxzIhY69VDA8O6mYo,251
|
561
|
+
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/post-migration.py,sha256=EcxwCyvSBvEtgeeTKzCJB-QdMg6iPxgkShqxkNPKcME,313
|
562
|
+
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/pre-migration.py,sha256=8KpV7d7qYArav66lj77jId2TGEWFSglAetr8d8WsIHU,1899
|
555
563
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/upgrade_analysis.txt,sha256=w5M_DR4NzvY5ZSV2pjr7Z9pW1Plles5fEbNZIB5E-ag,3034
|
564
|
+
odoo/addons/openupgrade_scripts/scripts/purchase_requisition/18.0.0.1/upgrade_analysis_work.txt,sha256=g6bk1UNLvkbGziuV5AmsCyNUFld6n2ClRpRfYVUYwAQ,3942
|
556
565
|
odoo/addons/openupgrade_scripts/scripts/purchase_requisition_stock/18.0.1.2/upgrade_analysis.txt,sha256=VBgWrgfN-tlD1isnEjx1DbRhTjvxqZIleJCKlwtjLNo,201
|
566
|
+
odoo/addons/openupgrade_scripts/scripts/purchase_requisition_stock/18.0.1.2/upgrade_analysis_work.txt,sha256=Csku4TZnhAclcZGyFrl-7Pras4Kq3RniEYs3bfMqQIE,217
|
557
567
|
odoo/addons/openupgrade_scripts/scripts/purchase_stock/18.0.1.2/post-migration.py,sha256=h7R_a75LRIE9_1Zm8nOcO92eGM33BT4W55Z_yJZMp_8,574
|
558
568
|
odoo/addons/openupgrade_scripts/scripts/purchase_stock/18.0.1.2/pre-migration.py,sha256=l6Redm8UsoWxf7rElvuDtQH9fghMe1Nt2LZG6Qr7VCI,3072
|
559
569
|
odoo/addons/openupgrade_scripts/scripts/purchase_stock/18.0.1.2/upgrade_analysis.txt,sha256=bKN4Lj4npFdtZEb-tEXGwtud6jzfEJq01t5PYrr8VUk,1011
|
@@ -748,7 +758,7 @@ odoo/addons/openupgrade_scripts/scripts/website_slides_survey/18.0.1.0/upgrade_a
|
|
748
758
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
749
759
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
750
760
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Jc0qAThlH5WnoSq6vPamjC8WyMkdo_9zkhDuU1qW1VI,12722
|
751
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
752
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
753
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
754
|
-
odoo_addon_openupgrade_scripts-18.0.1.0.0.
|
761
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info/METADATA,sha256=XUv396s9VAFKhfiuSFTD8z-tumRUNTL8RrTW4bUhp0A,3812
|
762
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
763
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
764
|
+
odoo_addon_openupgrade_scripts-18.0.1.0.0.355.dist-info/RECORD,,
|
File without changes
|