odoo-addon-openupgrade-scripts 16.0.1.0.3.12__py3-none-any.whl → 16.0.1.0.3.16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/openupgrade_scripts/apriori.py +3 -0
- odoo/addons/openupgrade_scripts/scripts/calendar/16.0.1.1/post-migration.py +1 -1
- odoo/addons/openupgrade_scripts/scripts/crm/16.0.1.8/pre-migration.py +32 -0
- odoo/addons/openupgrade_scripts/scripts/crm/16.0.1.8/upgrade_analysis_work.txt +19 -0
- odoo/addons/openupgrade_scripts/scripts/crm_iap_enrich/16.0.1.1/post-migration.py +11 -0
- odoo/addons/openupgrade_scripts/scripts/crm_iap_enrich/16.0.1.1/upgrade_analysis_work.txt +6 -0
- odoo/addons/openupgrade_scripts/scripts/crm_iap_mine/16.0.1.2/upgrade_analysis_work.txt +7 -0
- odoo/addons/openupgrade_scripts/scripts/crm_livechat/16.0.1.0/upgrade_analysis_work.txt +18 -0
- odoo/addons/openupgrade_scripts/scripts/digest/16.0.1.1/post-migration.py +20 -0
- odoo/addons/openupgrade_scripts/scripts/digest/16.0.1.1/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/event/16.0.1.7/post-migration.py +16 -0
- odoo/addons/openupgrade_scripts/scripts/event/16.0.1.7/upgrade_analysis_work.txt +38 -0
- odoo/addons/openupgrade_scripts/scripts/event_crm/16.0.1.0/upgrade_analysis_work.txt +6 -0
- odoo/addons/openupgrade_scripts/scripts/google_account/16.0.1.0/post-migration.py +8 -0
- odoo/addons/openupgrade_scripts/scripts/google_account/16.0.1.0/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/google_calendar/16.0.1.0/pre-migration.py +13 -0
- odoo/addons/openupgrade_scripts/scripts/google_calendar/16.0.1.0/upgrade_analysis_work.txt +14 -0
- odoo/addons/openupgrade_scripts/scripts/iap/16.0.1.1/upgrade_analysis_work.txt +5 -0
- odoo/addons/openupgrade_scripts/scripts/im_livechat/16.0.1.0/post-migration.py +13 -0
- odoo/addons/openupgrade_scripts/scripts/im_livechat/16.0.1.0/upgrade_analysis_work.txt +73 -0
- odoo/addons/openupgrade_scripts/scripts/snailmail/16.0.0.4/upgrade_analysis_work.txt +10 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.12.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.12.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info}/RECORD +25 -6
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.12.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-16.0.1.0.3.12.dist-info → odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info}/top_level.txt +0 -0
@@ -39,6 +39,9 @@ merged_modules = {
|
|
39
39
|
"l10n_be_edi": "account_edi_ubl_cii",
|
40
40
|
"l10n_nl_edi": "account_edi_ubl_cii",
|
41
41
|
"l10n_no_edi": "account_edi_ubl_cii",
|
42
|
+
"note_pad": "note",
|
43
|
+
"pad": "web_editor",
|
44
|
+
"pad_project": "project",
|
42
45
|
"pos_coupon": "pos_loyalty",
|
43
46
|
"pos_gift_card": "pos_loyalty",
|
44
47
|
"sale_gift_card": "sale_loyalty",
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# Copyright 2023 ACSONE SA/NV
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
_field_renames = [("crm.lead", "crm_lead", "lost_reason", "lost_reason_id")]
|
7
|
+
|
8
|
+
|
9
|
+
def res_partner_compute_team_id(env):
|
10
|
+
openupgrade.logged_query(
|
11
|
+
env.cr,
|
12
|
+
"""
|
13
|
+
UPDATE res_partner as p
|
14
|
+
SET team_id = res.parent_team_id
|
15
|
+
FROM(
|
16
|
+
SELECT p.id, parent.team_id
|
17
|
+
FROM res_partner p
|
18
|
+
JOIN res_partner parent
|
19
|
+
ON p.parent_id = parent.id
|
20
|
+
WHERE p.team_id IS NULL
|
21
|
+
AND NOT p.is_company
|
22
|
+
AND parent.team_id IS NOT NULL
|
23
|
+
) as res(partner_id, parent_team_id)
|
24
|
+
WHERE p.id = res.partner_id
|
25
|
+
""",
|
26
|
+
)
|
27
|
+
|
28
|
+
|
29
|
+
@openupgrade.migrate()
|
30
|
+
def migrate(env, version):
|
31
|
+
openupgrade.rename_fields(env, _field_renames)
|
32
|
+
res_partner_compute_team_id(env)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---Models in module 'crm'---
|
2
|
+
---Fields in module 'crm'---
|
3
|
+
crm / crm.lead / lead_properties (properties) : NEW hasdefault: compute
|
4
|
+
# NOTHING TO DO: new feature
|
5
|
+
|
6
|
+
crm / crm.lead / lost_reason (many2one) : DEL relation: crm.lost.reason
|
7
|
+
crm / crm.lead / lost_reason_id (many2one) : NEW relation: crm.lost.reason
|
8
|
+
# DONE: pre-migration: rename column
|
9
|
+
|
10
|
+
crm / crm.team / lead_properties_definition (properties_definition): NEW
|
11
|
+
# NOTHING TO DO: new feature
|
12
|
+
|
13
|
+
crm / res.partner / team_id (False) : NEW mode: modify, hasdefault: compute
|
14
|
+
# DONE: pre-migration: compute value in DB
|
15
|
+
|
16
|
+
---XML records in module 'crm'---
|
17
|
+
NEW ir.ui.view: crm.crm_lead_merge_summary
|
18
|
+
NEW ir.ui.view: crm.crm_lead_view_tree_reporting
|
19
|
+
# NOTHING TO DO
|
@@ -0,0 +1,18 @@
|
|
1
|
+
---Models in module 'crm_livechat'---
|
2
|
+
---Fields in module 'crm_livechat'---
|
3
|
+
crm_livechat / chatbot.script.step / crm_team_id (many2one) : NEW relation: crm.team
|
4
|
+
crm_livechat / chatbot.script.step / step_type (False) : NEW selection_keys: ['create_lead', 'forward_operator', 'free_input_multi', 'free_input_single', 'question_email', 'question_phone', 'question_selection', 'text'], mode: modify
|
5
|
+
|
6
|
+
# NOTHING TO DO: new field
|
7
|
+
|
8
|
+
---XML records in module 'crm_livechat'---
|
9
|
+
NEW chatbot.script: crm_livechat.chatbot_script_lead_generation_bot (noupdate)
|
10
|
+
NEW chatbot.script.step: crm_livechat.chatbot_script_lead_generation_step_forward_operator (noupdate)
|
11
|
+
NEW chatbot.script.step: crm_livechat.chatbot_script_lead_generation_step_noone_available (noupdate)
|
12
|
+
NEW chatbot.script.step: crm_livechat.chatbot_script_lead_generation_step_welcome (noupdate)
|
13
|
+
NEW chatbot.script.step: crm_livechat.chatbot_script_welcome_step_just_looking (noupdate)
|
14
|
+
NEW chatbot.script.step: crm_livechat.chatbot_script_welcome_step_pricing_email (noupdate)
|
15
|
+
NEW ir.ui.view: crm_livechat.chatbot_script_step_view_form
|
16
|
+
NEW ir.ui.view: crm_livechat.chatbot_script_view_form
|
17
|
+
|
18
|
+
# NOTHING TO DODO: new xml
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Copyright 2023 ACSONE SA/NV
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
_translations_to_delete = [
|
7
|
+
"digest_mail_layout",
|
8
|
+
"digest_section_mobile",
|
9
|
+
"digest_tip_digest_0",
|
10
|
+
"digest_tip_digest_1",
|
11
|
+
"digest_tip_digest_2",
|
12
|
+
"digest_tip_digest_3",
|
13
|
+
"digest_tip_digest_4",
|
14
|
+
]
|
15
|
+
|
16
|
+
|
17
|
+
@openupgrade.migrate()
|
18
|
+
def migrate(env, version):
|
19
|
+
openupgrade.load_data(env.cr, "digest", "16.0.1.1/noupdate_changes.xml")
|
20
|
+
openupgrade.delete_record_translations(env.cr, "digest", _translations_to_delete)
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Copyright 2023 ACSONE SA/NV
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
_translations_to_delete = [
|
7
|
+
"event_registration_mail_template_badge",
|
8
|
+
"event_reminder",
|
9
|
+
"event_subscription",
|
10
|
+
]
|
11
|
+
|
12
|
+
|
13
|
+
@openupgrade.migrate()
|
14
|
+
def migrate(env, version):
|
15
|
+
openupgrade.load_data(env.cr, "event", "16.0.1.7/noupdate_changes.xml")
|
16
|
+
openupgrade.delete_record_translations(env.cr, "event", _translations_to_delete)
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---Models in module 'event'---
|
2
|
+
---Fields in module 'event'---
|
3
|
+
event / event.event / seats_available (integer) : not stored anymore
|
4
|
+
event / event.event / seats_reserved (integer) : not stored anymore
|
5
|
+
event / event.event / seats_unconfirmed (integer) : not stored anymore
|
6
|
+
event / event.event / seats_used (integer) : not stored anymore
|
7
|
+
event / event.event.ticket / seats_available (integer) : not stored anymore
|
8
|
+
event / event.event.ticket / seats_reserved (integer) : not stored anymore
|
9
|
+
event / event.event.ticket / seats_unconfirmed (integer) : not stored anymore
|
10
|
+
event / event.event.ticket / seats_used (integer) : not stored anymore
|
11
|
+
# NOTHING TO DO
|
12
|
+
|
13
|
+
event / event.registration / date_open (datetime) : DEL
|
14
|
+
# NOTHING TO DO: obsolete feature
|
15
|
+
|
16
|
+
event / event.tag / _order : _order is now 'category_sequence, sequence, id' ('sequence')
|
17
|
+
# NOTHING TO DO
|
18
|
+
|
19
|
+
event / event.tag / category_sequence (integer) : NEW isrelated: related, stored
|
20
|
+
# NOTHING TO DO: new field
|
21
|
+
|
22
|
+
---XML records in module 'event'---
|
23
|
+
NEW ir.actions.act_window: event.event_registration_action_kanban
|
24
|
+
NEW ir.actions.act_window: event.event_registration_action_stats_from_event
|
25
|
+
# NOTHING TO DO
|
26
|
+
|
27
|
+
DEL ir.actions.act_window: event.event_event_action_pivot
|
28
|
+
DEL ir.ui.menu: event.event_event_menu_pivot_report
|
29
|
+
# NOTHING TO DO: deleted by the ORM
|
30
|
+
|
31
|
+
NEW ir.ui.view: event.event_registration_view_search_event_specific
|
32
|
+
# NOTHING TO DO
|
33
|
+
|
34
|
+
DEL ir.ui.view: event.event_event_view_graph
|
35
|
+
DEL ir.ui.view: event.event_event_view_pivot
|
36
|
+
# NOTHING TO DO: deleted by the ORM
|
37
|
+
|
38
|
+
# Done (post-migration): load noupdate_changes.xml and delete obsolete translations
|
@@ -0,0 +1,13 @@
|
|
1
|
+
from openupgradelib import openupgrade
|
2
|
+
|
3
|
+
_field_renames = [
|
4
|
+
("res.users", "res_users", "google_cal_account_id", "google_calendar_account_id"),
|
5
|
+
]
|
6
|
+
|
7
|
+
|
8
|
+
@openupgrade.migrate()
|
9
|
+
def migrate(env, version):
|
10
|
+
openupgrade.rename_fields(env, _field_renames)
|
11
|
+
openupgrade.delete_sql_constraint_safely(
|
12
|
+
env, "google_calendar", "res_users", "google_token_uniq"
|
13
|
+
)
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---Models in module 'google_calendar'---
|
2
|
+
---Fields in module 'google_calendar'---
|
3
|
+
google_calendar / res.users / google_cal_account_id (many2one): DEL relation: google.calendar.credentials
|
4
|
+
google_calendar / res.users / google_calendar_account_id (many2one): NEW relation: google.calendar.credentials
|
5
|
+
# DONE pre-migration: rename google_cal_account_id -> google_calendar_account_id
|
6
|
+
|
7
|
+
---XML records in module 'google_calendar'---
|
8
|
+
ir.model.constraint: google_calendar.constraint_res_users_google_token_uniq (changed definition: is now 'unique(google_calendar_account_id)' ('unique(google_cal_account_id)'))
|
9
|
+
# DONE pre-migration: safely delete constraint to recreate it
|
10
|
+
|
11
|
+
NEW ir.rule: google_calendar.google_calendar_not_own_token_rule (noupdate)
|
12
|
+
NEW ir.rule: google_calendar.google_calendar_own_token_rule (noupdate)
|
13
|
+
NEW ir.rule: google_calendar.google_calendar_token_system_access (noupdate)
|
14
|
+
# NOTHING TO DO
|
@@ -0,0 +1,13 @@
|
|
1
|
+
from openupgradelib import openupgrade
|
2
|
+
|
3
|
+
_translations_to_delete = [
|
4
|
+
"livechat_email_template",
|
5
|
+
]
|
6
|
+
|
7
|
+
|
8
|
+
@openupgrade.migrate()
|
9
|
+
def migrate(env, version):
|
10
|
+
openupgrade.load_data(env.cr, "im_livechat", "16.0.1.0/noupdate_changes.xml")
|
11
|
+
openupgrade.delete_record_translations(
|
12
|
+
env.cr, "im_livechat", _translations_to_delete
|
13
|
+
)
|
@@ -0,0 +1,73 @@
|
|
1
|
+
---Models in module 'im_livechat'---
|
2
|
+
new model chatbot.message
|
3
|
+
new model chatbot.script
|
4
|
+
new model chatbot.script.answer
|
5
|
+
new model chatbot.script.step
|
6
|
+
# NOTHING TO DO: new model
|
7
|
+
---Fields in module 'im_livechat'---
|
8
|
+
im_livechat / chatbot.message / mail_channel_id (many2one) : NEW relation: mail.channel, required
|
9
|
+
im_livechat / chatbot.message / mail_message_id (many2one) : NEW relation: mail.message, required
|
10
|
+
im_livechat / chatbot.message / script_step_id (many2one) : NEW relation: chatbot.script.step, required
|
11
|
+
im_livechat / chatbot.message / user_raw_answer (html) : NEW
|
12
|
+
im_livechat / chatbot.message / user_script_answer_id (many2one): NEW relation: chatbot.script.answer
|
13
|
+
im_livechat / chatbot.script / active (boolean) : NEW hasdefault: default
|
14
|
+
im_livechat / chatbot.script / image_1024 (binary) : NEW attachment: True, isrelated: related, stored
|
15
|
+
im_livechat / chatbot.script / image_128 (binary) : NEW attachment: True, isrelated: related, stored
|
16
|
+
im_livechat / chatbot.script / image_256 (binary) : NEW attachment: True, isrelated: related, stored
|
17
|
+
im_livechat / chatbot.script / image_512 (binary) : NEW attachment: True, isrelated: related, stored
|
18
|
+
im_livechat / chatbot.script / operator_partner_id (many2one): NEW relation: res.partner, required
|
19
|
+
im_livechat / chatbot.script / script_step_ids (one2many) : NEW relation: chatbot.script.step
|
20
|
+
im_livechat / chatbot.script / source_id (many2one) : NEW relation: utm.source, required
|
21
|
+
im_livechat / chatbot.script / title (char) : NEW required, hasdefault: default
|
22
|
+
im_livechat / chatbot.script.answer / name (char) : NEW required
|
23
|
+
im_livechat / chatbot.script.answer / redirect_link (char) : NEW
|
24
|
+
im_livechat / chatbot.script.answer / script_step_id (many2one) : NEW relation: chatbot.script.step, required
|
25
|
+
im_livechat / chatbot.script.answer / sequence (integer) : NEW hasdefault: default
|
26
|
+
im_livechat / chatbot.script.step / answer_ids (one2many) : NEW relation: chatbot.script.answer
|
27
|
+
im_livechat / chatbot.script.step / chatbot_script_id (many2one) : NEW relation: chatbot.script, required
|
28
|
+
im_livechat / chatbot.script.step / message (text) : NEW
|
29
|
+
im_livechat / chatbot.script.step / sequence (integer) : NEW
|
30
|
+
im_livechat / chatbot.script.step / step_type (selection) : NEW required, selection_keys: ['forward_operator', 'free_input_multi', 'free_input_single', 'question_email', 'question_phone', 'question_selection', 'text'], hasdefault: default
|
31
|
+
im_livechat / chatbot.script.step / triggering_answer_ids (many2many): NEW relation: chatbot.script.answer, hasdefault: compute
|
32
|
+
# NOTHING TO DO: fields of new model
|
33
|
+
im_livechat / im_livechat.channel.rule / action (selection) : selection_keys is now '['auto_popup', 'display_button', 'display_button_and_text', 'hide_button']' ('['auto_popup', 'display_button', 'hide_button']')
|
34
|
+
im_livechat / im_livechat.channel.rule / chatbot_only_if_no_operator (boolean): NEW
|
35
|
+
im_livechat / im_livechat.channel.rule / chatbot_script_id (many2one) : NEW relation: chatbot.script
|
36
|
+
im_livechat / mail.channel / chatbot_current_step_id (many2one): NEW relation: chatbot.script.step
|
37
|
+
im_livechat / mail.channel / chatbot_message_ids (one2many): NEW relation: chatbot.message
|
38
|
+
# NOTHING TO DO
|
39
|
+
---XML records in module 'im_livechat'---
|
40
|
+
NEW chatbot.script: im_livechat.chatbot_script_welcome_bot (noupdate)
|
41
|
+
NEW chatbot.script.answer: im_livechat.chatbot_script_welcome_step_dispatch_answer_documentation (noupdate)
|
42
|
+
NEW chatbot.script.answer: im_livechat.chatbot_script_welcome_step_dispatch_answer_just_looking (noupdate)
|
43
|
+
NEW chatbot.script.answer: im_livechat.chatbot_script_welcome_step_dispatch_answer_pricing (noupdate)
|
44
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_dispatch (noupdate)
|
45
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_documentation_exit (noupdate)
|
46
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_documentation_redirect (noupdate)
|
47
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_just_looking (noupdate)
|
48
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_pricing (noupdate)
|
49
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_pricing_email (noupdate)
|
50
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_pricing_forward_operator (noupdate)
|
51
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_pricing_noone_available (noupdate)
|
52
|
+
NEW chatbot.script.step: im_livechat.chatbot_script_welcome_step_welcome (noupdate)
|
53
|
+
NEW ir.actions.act_window: im_livechat.chatbot_script_action
|
54
|
+
NEW ir.model.access: im_livechat.access_chatbot_message_all
|
55
|
+
NEW ir.model.access: im_livechat.access_chatbot_message_user
|
56
|
+
NEW ir.model.access: im_livechat.access_chatbot_script
|
57
|
+
NEW ir.model.access: im_livechat.access_chatbot_script_answer
|
58
|
+
NEW ir.model.access: im_livechat.access_chatbot_script_answer_user
|
59
|
+
NEW ir.model.access: im_livechat.access_chatbot_script_step
|
60
|
+
NEW ir.model.access: im_livechat.access_chatbot_script_step_user
|
61
|
+
NEW ir.model.access: im_livechat.access_chatbot_script_user
|
62
|
+
NEW ir.model.constraint: im_livechat.constraint_chatbot_message__unique_mail_message_id
|
63
|
+
NEW ir.ui.menu: im_livechat.chatbot_config
|
64
|
+
NEW ir.ui.view: im_livechat.chatbot_script_answer_view_form
|
65
|
+
NEW ir.ui.view: im_livechat.chatbot_script_answer_view_tree
|
66
|
+
NEW ir.ui.view: im_livechat.chatbot_script_step_view_form
|
67
|
+
NEW ir.ui.view: im_livechat.chatbot_script_step_view_tree
|
68
|
+
NEW ir.ui.view: im_livechat.chatbot_script_view_form
|
69
|
+
NEW ir.ui.view: im_livechat.chatbot_script_view_search
|
70
|
+
NEW ir.ui.view: im_livechat.chatbot_script_view_tree
|
71
|
+
NEW ir.ui.view: im_livechat.chatbot_test_script_page
|
72
|
+
DEL ir.ui.view: im_livechat.rating_rating_view_form_livechat
|
73
|
+
# NOTHING TO DO
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---Models in module 'snailmail'---
|
2
|
+
obsolete model snailmail.letter.cancel [transient]
|
3
|
+
#NOTHING TO DO: transient model
|
4
|
+
|
5
|
+
---Fields in module 'snailmail'---
|
6
|
+
---XML records in module 'snailmail'---
|
7
|
+
DEL ir.actions.act_window: snailmail.snailmail_letter_cancel_action
|
8
|
+
DEL ir.model.access: snailmail.access_snailmail_letter_cancel
|
9
|
+
DEL ir.ui.view: snailmail.snailmail_letter_cancel
|
10
|
+
# NOTHING TO DO
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-openupgrade-scripts
|
3
|
-
Version: 16.0.1.0.3.
|
3
|
+
Version: 16.0.1.0.3.16
|
4
4
|
Summary: Module that contains all the migrations analysis and scripts for migrate Odoo SA modules.
|
5
5
|
Home-page: https://github.com/OCA/OpenUpgrade
|
6
6
|
Author: Odoo Community Association (OCA)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
odoo/addons/openupgrade_scripts/README.rst,sha256=bOOvKEGy3L5CzUuRZaiMLehJ_LrFeQZ2bJgrIiXWXdI,2824
|
2
2
|
odoo/addons/openupgrade_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
odoo/addons/openupgrade_scripts/__manifest__.py,sha256=pE4R-JQdRitStZ2m2AN39foAoEfLWmwuL9nhHP1i3r8,614
|
4
|
-
odoo/addons/openupgrade_scripts/apriori.py,sha256=
|
4
|
+
odoo/addons/openupgrade_scripts/apriori.py,sha256=fq2a_UY1IiptQVnz8Bg_bTqILisUuRpvby8oMm4_uYI,3090
|
5
5
|
odoo/addons/openupgrade_scripts/readme/CONFIGURE.rst,sha256=cy1swpDkuqi9-6q8L1M1QD058QyfBvAE2PN_mmdxvwI,255
|
6
6
|
odoo/addons/openupgrade_scripts/readme/DESCRIPTION.rst,sha256=ckrM5YlY8awluPWIV7WOBynTOG_QKOjXrCsXD_RhmyU,86
|
7
7
|
odoo/addons/openupgrade_scripts/readme/INSTALL.rst,sha256=tXbOmw3QIhO1KLIziMpXzuuY0tOhI8IGT2ktCArwfGM,115
|
@@ -58,26 +58,37 @@ odoo/addons/openupgrade_scripts/scripts/board/16.0.1.0/upgrade_analysis.txt,sha2
|
|
58
58
|
odoo/addons/openupgrade_scripts/scripts/bus/16.0.1.0/upgrade_analysis.txt,sha256=7Ki-1lAhhmDMS2VnEDlcA6KXUU9NlKIcTxPG73Mviok,126
|
59
59
|
odoo/addons/openupgrade_scripts/scripts/bus/16.0.1.0/upgrade_analysis_work.txt,sha256=3B2y3innKI-RvGXAKTymYP56ZjxtfF36djTtciGdptM,143
|
60
60
|
odoo/addons/openupgrade_scripts/scripts/calendar/16.0.1.1/noupdate_changes.xml,sha256=zc-fCvIpCCBqG3vLdavvjCFh54Ju0V3yon1Er-4o43g,24100
|
61
|
-
odoo/addons/openupgrade_scripts/scripts/calendar/16.0.1.1/post-migration.py,sha256=
|
61
|
+
odoo/addons/openupgrade_scripts/scripts/calendar/16.0.1.1/post-migration.py,sha256=iHhmfUgmMjQSj45sypl860SZ9iqcG2BB8yMLUELToOg,583
|
62
62
|
odoo/addons/openupgrade_scripts/scripts/calendar/16.0.1.1/upgrade_analysis.txt,sha256=sy-6wUDLSVkpKwub-uhskQg5SYAwmf0lb1ZmN3IcimU,931
|
63
63
|
odoo/addons/openupgrade_scripts/scripts/calendar/16.0.1.1/upgrade_analysis_work.txt,sha256=Ej-Z8ctFSkUO0DlW302CBU_ZDdgUkZ2LgFR0lKsIW_w,1107
|
64
64
|
odoo/addons/openupgrade_scripts/scripts/calendar_sms/16.0.1.1/upgrade_analysis.txt,sha256=47lk299PLtdInb0P2M8s639WNqNAx33M5V1Xxy-y-AQ,173
|
65
|
+
odoo/addons/openupgrade_scripts/scripts/crm/16.0.1.8/pre-migration.py,sha256=TVh8eAfnKbEzThj8QlcusPm75QcoSdnm3_yV9zifDws,903
|
65
66
|
odoo/addons/openupgrade_scripts/scripts/crm/16.0.1.8/upgrade_analysis.txt,sha256=pTXeYDW7Mi7MQbUFFNS7caUJEhSIubXYYOhVUVluYL8,700
|
67
|
+
odoo/addons/openupgrade_scripts/scripts/crm/16.0.1.8/upgrade_analysis_work.txt,sha256=UR7yiwXlPIw2999QaNmRzTLUrN6TB-1lU6Z4KdeSekk,857
|
68
|
+
odoo/addons/openupgrade_scripts/scripts/crm_iap_enrich/16.0.1.1/post-migration.py,sha256=OJDcSi6h-g8I2Xl-Mc_iHZfP0SLIua46CcpgPjtfJ88,245
|
66
69
|
odoo/addons/openupgrade_scripts/scripts/crm_iap_enrich/16.0.1.1/upgrade_analysis.txt,sha256=6GkSi9zcQX89J9JqLea_Nx0v_ps74VkwzCVe4jo1Vmg,202
|
70
|
+
odoo/addons/openupgrade_scripts/scripts/crm_iap_enrich/16.0.1.1/upgrade_analysis_work.txt,sha256=taoZl-Fo0hCXg-HEQ_MFWv8uHyYa1SYdvL-KBgPzYsY,261
|
67
71
|
odoo/addons/openupgrade_scripts/scripts/crm_iap_mine/16.0.1.2/upgrade_analysis.txt,sha256=atmpIoKiOP_rzZn7ZOGZF85dvvMlKlkRQu_hwdCEK4w,236
|
72
|
+
odoo/addons/openupgrade_scripts/scripts/crm_iap_mine/16.0.1.2/upgrade_analysis_work.txt,sha256=RrDMr2pWEf2oGL_ca3XALXlKsssyxxGx1oM_6PZvKaY,253
|
68
73
|
odoo/addons/openupgrade_scripts/scripts/crm_livechat/16.0.1.0/upgrade_analysis.txt,sha256=dLR4dzjp06adT5zhyuGREDVvj3587_IJNIaPsiyjBxY,1136
|
74
|
+
odoo/addons/openupgrade_scripts/scripts/crm_livechat/16.0.1.0/upgrade_analysis_work.txt,sha256=m9FHu7awHx6VJpfQfE2qeh1ldIuvzJyuK9_zzZQpUcg,1193
|
69
75
|
odoo/addons/openupgrade_scripts/scripts/data_recycle/16.0.1.3/upgrade_analysis.txt,sha256=9qPUSS6VGypt-BdA2-W3aTMDZx_6hBGesGriGEQqtC8,3681
|
70
76
|
odoo/addons/openupgrade_scripts/scripts/delivery/16.0.1.0/upgrade_analysis.txt,sha256=8_3hq28eUw-RTZgQNG81Bo86Hwhup438SCog0XHXDRo,1642
|
71
77
|
odoo/addons/openupgrade_scripts/scripts/delivery_mondialrelay/16.0.0.1/upgrade_analysis.txt,sha256=b8I5lcmNozL7-QxXWat4eRogSuXBKJ2yoDt_hOP1Kqk,186
|
72
78
|
odoo/addons/openupgrade_scripts/scripts/delivery_stock_picking_batch/16.0.1.0/upgrade_analysis.txt,sha256=eXuu3u85QNBmHk3fmCf4DaxbbyI6nE5qzqyol70x5X4,433
|
73
79
|
odoo/addons/openupgrade_scripts/scripts/digest/16.0.1.1/noupdate_changes.xml,sha256=iZkqYk1BBsm8vZzXsxtb3f0aRHadFwniakdmljB3Mq0,13839
|
80
|
+
odoo/addons/openupgrade_scripts/scripts/digest/16.0.1.1/post-migration.py,sha256=nVi-YFhUWF3hvNrioNhBipnrK81mK07xNIsArmeHaQc,570
|
74
81
|
odoo/addons/openupgrade_scripts/scripts/digest/16.0.1.1/upgrade_analysis.txt,sha256=27GKZG56lMZHgvYd87_9Ch6GC83e-oiG4bnhQuwv2gU,141
|
82
|
+
odoo/addons/openupgrade_scripts/scripts/digest/16.0.1.1/upgrade_analysis_work.txt,sha256=b_VerItwAy70F1d32-4jafI8PPSbCQ0d8Xu_SSBeuJs,192
|
75
83
|
odoo/addons/openupgrade_scripts/scripts/event/16.0.1.7/noupdate_changes.xml,sha256=6B03BWJbF_bFyNRpwghd279Nfz0zRj1bfsoT_JvIoqk,33429
|
84
|
+
odoo/addons/openupgrade_scripts/scripts/event/16.0.1.7/post-migration.py,sha256=P37bBdhv748TFUQnliW31FmlfgMu8Ga-OMof8zkialk,472
|
76
85
|
odoo/addons/openupgrade_scripts/scripts/event/16.0.1.7/upgrade_analysis.txt,sha256=SsBSMHZf-aM8GnYcKYofFhW1OKVF1YLHRxSYwKTAdzE,1570
|
86
|
+
odoo/addons/openupgrade_scripts/scripts/event/16.0.1.7/upgrade_analysis_work.txt,sha256=I-TIsTt1CEJD9JICyTGz-XXYfrQAYR15LeGWyqlqJno,1859
|
77
87
|
odoo/addons/openupgrade_scripts/scripts/event_booth/16.0.1.0/noupdate_changes.xml,sha256=9pP2FaOlk76ZD25AUR4iiskwsu7eFEX2-ZdloTXMWiY,968
|
78
88
|
odoo/addons/openupgrade_scripts/scripts/event_booth/16.0.1.0/upgrade_analysis.txt,sha256=VT5piP6BrwFrVXVM5nHCCfNSqVX9KGqv7-O7pbgkOrM,218
|
79
89
|
odoo/addons/openupgrade_scripts/scripts/event_booth_sale/16.0.1.1/upgrade_analysis.txt,sha256=LSQQSfcwI6i6IHIlONNIPilj41EYFwwBV2XohbWvHjY,784
|
80
90
|
odoo/addons/openupgrade_scripts/scripts/event_crm/16.0.1.0/upgrade_analysis.txt,sha256=fM9d2_K57GYqoLCxc_B7nPgCJNT0G-h5rhtu5VDDfJ4,177
|
91
|
+
odoo/addons/openupgrade_scripts/scripts/event_crm/16.0.1.0/upgrade_analysis_work.txt,sha256=7PDB2P-bpHemGKxLOScuRRUv7oTrFL4s6SiwThiHYzI,194
|
81
92
|
odoo/addons/openupgrade_scripts/scripts/event_sale/16.0.1.2/upgrade_analysis.txt,sha256=ehVvajkvMsWEYF3dFQJbWgmlUy9DQkqWGzF4t3cnfLM,867
|
82
93
|
odoo/addons/openupgrade_scripts/scripts/event_sms/16.0.1.0/noupdate_changes.xml,sha256=_cAf_tMXFuyZFgpit7st4KZEyaPfpYYLdetoi6cjxOo,691
|
83
94
|
odoo/addons/openupgrade_scripts/scripts/event_sms/16.0.1.0/upgrade_analysis.txt,sha256=pnGaVYE8aFEgrU4s_krQnKOo6SP1RrkO7AcMnjAJDt8,150
|
@@ -87,8 +98,12 @@ odoo/addons/openupgrade_scripts/scripts/gamification/16.0.1.0/noupdate_changes.x
|
|
87
98
|
odoo/addons/openupgrade_scripts/scripts/gamification/16.0.1.0/post-migration.py,sha256=RENj40Q95_s5Sn7LetQroMdu4NMaBPHx0eCdNkNrSTA,174
|
88
99
|
odoo/addons/openupgrade_scripts/scripts/gamification/16.0.1.0/upgrade_analysis.txt,sha256=e_Afe0zDOptwLE_y2-XLUgDe6w1euemWw7f1y8Nj2vw,207
|
89
100
|
odoo/addons/openupgrade_scripts/scripts/gamification/16.0.1.0/upgrade_analysis_work.txt,sha256=AnVd_o1bhVxM9hqbluE-Hs4q4GZ_uN5Q6w5_36JLxyA,224
|
101
|
+
odoo/addons/openupgrade_scripts/scripts/google_account/16.0.1.0/post-migration.py,sha256=Yx2rIFhINXbhYZGZHz50m7a850ajIvI4_u1AO8JtKDw,205
|
90
102
|
odoo/addons/openupgrade_scripts/scripts/google_account/16.0.1.0/upgrade_analysis.txt,sha256=Wb64cfPlf_QxS-vOh1piAbfJoib4bZzibyfJnCeGcBA,203
|
103
|
+
odoo/addons/openupgrade_scripts/scripts/google_account/16.0.1.0/upgrade_analysis_work.txt,sha256=Xr_c-fM9FiiqUHDfhiZyMC5xDyNwqp_w5BpvUm1XNDA,248
|
104
|
+
odoo/addons/openupgrade_scripts/scripts/google_calendar/16.0.1.0/pre-migration.py,sha256=pr7pQBxDlCPX-NiS3yxc0jCNQPhG13QXmGgAbzjKc0A,368
|
91
105
|
odoo/addons/openupgrade_scripts/scripts/google_calendar/16.0.1.0/upgrade_analysis.txt,sha256=vtlGaXwEI5VzGKgNJ3n1iOzlHnVm_tiFtxJdaSUtajc,773
|
106
|
+
odoo/addons/openupgrade_scripts/scripts/google_calendar/16.0.1.0/upgrade_analysis_work.txt,sha256=nOmkTeFL8yX645S3W3AiZNIZjMR-n6nB8zFN2o5CanI,934
|
92
107
|
odoo/addons/openupgrade_scripts/scripts/google_gmail/16.0.1.2/upgrade_analysis.txt,sha256=IwbhaowpeT0-qDxlVkEoQJCz1xWtUrcz6yvBhBhkje0,1125
|
93
108
|
odoo/addons/openupgrade_scripts/scripts/hr/16.0.1.1/noupdate_changes.xml,sha256=7Kh6ikV0c8llO66FzBlAXZuPURS0oJLO43aQSqKs9ow,950
|
94
109
|
odoo/addons/openupgrade_scripts/scripts/hr/16.0.1.1/upgrade_analysis.txt,sha256=DwKjJr6JjhU6NaVCcD7UZhTu9eW9jiAOr8vZUspgyOU,3327
|
@@ -121,9 +136,12 @@ odoo/addons/openupgrade_scripts/scripts/hr_work_entry/16.0.1.0/upgrade_analysis.
|
|
121
136
|
odoo/addons/openupgrade_scripts/scripts/hr_work_entry_contract/16.0.1.0/upgrade_analysis.txt,sha256=H4xuArLCSzJ4blG0j_iWhlk1_aXLW3b5jZeaCZLp2JY,550
|
122
137
|
odoo/addons/openupgrade_scripts/scripts/hr_work_entry_holidays/16.0.1.0/upgrade_analysis.txt,sha256=-wF9U3GWdsuzBlkc7Gz2XYElk4lAGOAmtBUwX8nwVKI,189
|
123
138
|
odoo/addons/openupgrade_scripts/scripts/iap/16.0.1.1/upgrade_analysis.txt,sha256=m_-TjWi5058tgVrFB8i8ZR5UxeAX7mOTHHkwNU7iXg8,132
|
139
|
+
odoo/addons/openupgrade_scripts/scripts/iap/16.0.1.1/upgrade_analysis_work.txt,sha256=ZvGbDvdN2NOIVO53FsIezeDVEhSknG8gAlhjHfinTXk,148
|
124
140
|
odoo/addons/openupgrade_scripts/scripts/iap_crm/16.0.1.0/upgrade_analysis.txt,sha256=Qxdh9V6HQd4HpmXsmxEMxN3Vu7y8Q6v0NWL3ZrRK1oA,144
|
125
141
|
odoo/addons/openupgrade_scripts/scripts/im_livechat/16.0.1.0/noupdate_changes.xml,sha256=-9hm2HGPV2dnHV_-Qc1qi4HhCCtYO8rNi01JiI9nkIw,5900
|
142
|
+
odoo/addons/openupgrade_scripts/scripts/im_livechat/16.0.1.0/post-migration.py,sha256=nAgT1jz8zjkSM8mnYHe82YwnK6NjDO8zECcCCOtrt9M,340
|
126
143
|
odoo/addons/openupgrade_scripts/scripts/im_livechat/16.0.1.0/upgrade_analysis.txt,sha256=ro9bPGhv_oEq5jmIUZRo82y5qrV9qIqB9lTlM_JmNqs,5967
|
144
|
+
odoo/addons/openupgrade_scripts/scripts/im_livechat/16.0.1.0/upgrade_analysis_work.txt,sha256=SEQWyCU5bxqoLUmEClmSUpfoQaM8O00HMa8gvsjK-vA,6063
|
127
145
|
odoo/addons/openupgrade_scripts/scripts/im_livechat_mail_bot/16.0.1.0/upgrade_analysis.txt,sha256=xGhm2WEi7ACkVuwg3tKYA2ItfbahG5H9UENyFMPk78A,183
|
128
146
|
odoo/addons/openupgrade_scripts/scripts/l10n_ae/16.0.1.0/upgrade_analysis.txt,sha256=PPa0lnV7lkZHrf4gWWlAs81depH4i3EkepJbpD3xujc,11361
|
129
147
|
odoo/addons/openupgrade_scripts/scripts/l10n_ar/16.0.3.5/upgrade_analysis.txt,sha256=Eh_XvfrnJqp6DcApGwDUXmSVlim_zmP1Qjy4Ut1PKhY,185
|
@@ -361,6 +379,7 @@ odoo/addons/openupgrade_scripts/scripts/sales_team/16.0.1.1/upgrade_analysis.txt
|
|
361
379
|
odoo/addons/openupgrade_scripts/scripts/sales_team/16.0.1.1/upgrade_analysis_work.txt,sha256=NZeP-iA5SSfLcMa2o9eFGoaZ4JM15eiBDOKDv4aLVOA,260
|
362
380
|
odoo/addons/openupgrade_scripts/scripts/sms/16.0.2.4/upgrade_analysis.txt,sha256=_rqOOvN_wXpJmP-mMhO3SRQoPOD6UMEae_lZaMJGHYY,1513
|
363
381
|
odoo/addons/openupgrade_scripts/scripts/snailmail/16.0.0.4/upgrade_analysis.txt,sha256=v4qtr3-5jUBMT-3um_5JXWti7ttQ6tVPPvJXUprDQxY,341
|
382
|
+
odoo/addons/openupgrade_scripts/scripts/snailmail/16.0.0.4/upgrade_analysis_work.txt,sha256=YVEwoRAlFgT8NaTYxfVOa3LTlXyct21jO4g09Ai7tRk,390
|
364
383
|
odoo/addons/openupgrade_scripts/scripts/snailmail_account/16.0.0.1/upgrade_analysis.txt,sha256=MaQtDcBDlO5xYL7JKNWp6hzYroFhiUyPUm8zxi1wZtc,174
|
365
384
|
odoo/addons/openupgrade_scripts/scripts/social_media/16.0.0.1/upgrade_analysis.txt,sha256=NXtUgjhcmewMU1Smf3vbdHu3Xo6AkvfB15sNgJenwkQ,159
|
366
385
|
odoo/addons/openupgrade_scripts/scripts/spreadsheet_dashboard/16.0.1.0/upgrade_analysis.txt,sha256=xKu3uh2sIFAkdIhHh9OigbiHu6a8iByYY-EECwT4h3A,2836
|
@@ -454,7 +473,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/16.0.1.0/upgrade_analysi
|
|
454
473
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
455
474
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
456
475
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=Y3zNAMnpWGzBNS-ogKwHB6Zvp4kZexMk1208AUrVgC8,12083
|
457
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
458
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
459
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
460
|
-
odoo_addon_openupgrade_scripts-16.0.1.0.3.
|
476
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info/METADATA,sha256=BSUJr8EMHmR-W8eyqih-Kd14yJAnH5eOiTjzU2ryuTs,3450
|
477
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
478
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
479
|
+
odoo_addon_openupgrade_scripts-16.0.1.0.3.16.dist-info/RECORD,,
|
File without changes
|