odoo-addon-openupgrade-scripts 17.0.1.0.1.322__py3-none-any.whl → 17.0.1.0.1.327__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/scripts/event_sale/17.0.1.3/pre-migration.py +52 -0
- odoo/addons/openupgrade_scripts/scripts/event_sale/17.0.1.3/upgrade_analysis_work.txt +25 -0
- odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/post-migration.py +9 -0
- odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/pre-migration.py +16 -0
- odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/upgrade_analysis_work.txt +14 -0
- odoo/addons/openupgrade_scripts/scripts/website_event_sale/17.0.1.0/upgrade_analysis work.txt +11 -0
- odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/noupdate_changes.xml +2 -2
- odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/post-migration.py +12 -0
- odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/pre-migration.py +33 -0
- odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/upgrade_analysis_work.txt +86 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.322.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info}/METADATA +1 -1
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.322.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info}/RECORD +14 -5
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.322.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info}/WHEEL +0 -0
- {odoo_addon_openupgrade_scripts-17.0.1.0.1.322.dist-info → odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
def _adjust_event_ticket_sequence(env):
|
8
|
+
"""As now the order is by sequence, and on v16 it was the price, we have to assign
|
9
|
+
the sequence numbers to preserve the previous order by default. Once in v17, you
|
10
|
+
can redefine the order to your choice if desired.
|
11
|
+
"""
|
12
|
+
openupgrade.logged_query(
|
13
|
+
env.cr,
|
14
|
+
"""
|
15
|
+
UPDATE event_event_ticket eet
|
16
|
+
SET sequence = sub.row_number
|
17
|
+
FROM (
|
18
|
+
SELECT id, event_id, row_number()
|
19
|
+
OVER (PARTITION BY event_id order by price)
|
20
|
+
FROM event_event_ticket
|
21
|
+
) as sub
|
22
|
+
WHERE sub.id = eet.id
|
23
|
+
""",
|
24
|
+
)
|
25
|
+
|
26
|
+
|
27
|
+
def _prefill_event_registration_sale_status(env):
|
28
|
+
openupgrade.add_columns(
|
29
|
+
env, [(False, "sale_status", "char", "to_pay", "event_registration")]
|
30
|
+
)
|
31
|
+
openupgrade.logged_query(
|
32
|
+
env.cr,
|
33
|
+
"""
|
34
|
+
UPDATE event_registration er
|
35
|
+
SET sale_status = 'free'
|
36
|
+
FROM sale_order_line sol
|
37
|
+
WHERE sol.id = er.sale_order_line_id AND sol.price_total = 0
|
38
|
+
""",
|
39
|
+
)
|
40
|
+
openupgrade.logged_query(
|
41
|
+
env.cr,
|
42
|
+
"""UPDATE event_registration
|
43
|
+
SET sale_status = 'sold'
|
44
|
+
WHERE is_paid AND sale_status = 'to_pay'
|
45
|
+
""",
|
46
|
+
)
|
47
|
+
|
48
|
+
|
49
|
+
@openupgrade.migrate()
|
50
|
+
def migrate(env, version):
|
51
|
+
_adjust_event_ticket_sequence(env)
|
52
|
+
_prefill_event_registration_sale_status(env)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---Models in module 'event_sale'---
|
2
|
+
---Fields in module 'event_sale'---
|
3
|
+
event_sale / event.event.ticket / _order : _order is now 'event_id, sequence, price, name, id' ('event_id, price')
|
4
|
+
# DONE: pre-migration: Preserve the previous order on existing tickets assigning the sequence by price
|
5
|
+
|
6
|
+
event_sale / event.event.ticket / price_incl (float) : NEW hasdefault: compute
|
7
|
+
# NOTHING TO DO: While computing by ORM is not optimal, given the complexity of the computations and the expected number of records, let's keep it this way for now
|
8
|
+
|
9
|
+
event_sale / event.registration / is_paid (boolean) : DEL
|
10
|
+
event_sale / event.registration / sale_status (selection) : NEW selection_keys: ['free', 'sold', 'to_pay'], isfunction: function, stored
|
11
|
+
# DONE: pre-migration: filled sale_status by SQL, using is_paid and SOL price as data source
|
12
|
+
|
13
|
+
event_sale / event.registration / state (False) : NEW mode: modify, hasdefault: compute
|
14
|
+
# NOTHING TO DO: existing field in event module being added a compute (which is not the best practice).
|
15
|
+
|
16
|
+
event_sale / product.template / detailed_type (False) : selection_keys is now '['combo', 'consu', 'event', 'product', 'service']' ('['consu', 'event', 'product', 'service']')
|
17
|
+
# NOTHING TO DO: The detailed_type value already exists
|
18
|
+
|
19
|
+
event_sale / sale.order.line / registration_ids (one2many) : NEW relation: event.registration
|
20
|
+
# NOTHING TO DO: one2many counterpart over existing m2o field
|
21
|
+
|
22
|
+
---XML records in module 'event_sale'---
|
23
|
+
NEW ir.ui.view: event_sale.event_registration_view_graph
|
24
|
+
DEL ir.ui.view: event_sale.event_report_template_full_page_ticket_inherit_sale
|
25
|
+
# NOTHING TO DO: ir noupdate=0 stuff
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
@openupgrade.migrate()
|
8
|
+
def migrate(env, version):
|
9
|
+
openupgrade.load_data(env, "payment_stripe", "17.0.2.0/noupdate_changes.xml")
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
@openupgrade.migrate()
|
8
|
+
def migrate(env, version):
|
9
|
+
openupgrade.logged_query(
|
10
|
+
env.cr,
|
11
|
+
"""
|
12
|
+
UPDATE payment_transaction
|
13
|
+
SET provider_reference = stripe_payment_intent
|
14
|
+
WHERE stripe_payment_intent IS NOT NULL
|
15
|
+
""",
|
16
|
+
)
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---Models in module 'payment_stripe'---
|
2
|
+
---Fields in module 'payment_stripe'---
|
3
|
+
payment_stripe / payment.token / stripe_mandate (char) : NEW
|
4
|
+
# NOTHING TO DO: New feature for tokenizing payment methods
|
5
|
+
|
6
|
+
payment_stripe / payment.transaction / stripe_payment_intent (char) : DEL
|
7
|
+
# DONE: pre-migration: Store this value in the generic field "provider_reference" that is now used
|
8
|
+
|
9
|
+
---XML records in module 'payment_stripe'---
|
10
|
+
NEW ir.ui.view: payment_stripe.inline_form
|
11
|
+
NEW ir.ui.view: payment_stripe.payment_form
|
12
|
+
DEL ir.ui.view: payment_stripe.checkout
|
13
|
+
DEL ir.ui.view: payment_stripe.manage
|
14
|
+
# NOTHING TO DO: ir noupdate=0 stuff
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---Models in module 'website_event_sale'---
|
2
|
+
# NOTHING TO DO
|
3
|
+
---Fields in module 'website_event_sale'---
|
4
|
+
# NOTHING TO DO
|
5
|
+
---XML records in module 'website_event_sale'---
|
6
|
+
NEW ir.ui.view: website_event_sale.index_topbar
|
7
|
+
NEW ir.ui.view: website_event_sale.modal_ticket_registration
|
8
|
+
NEW ir.ui.view: website_event_sale.registration_attendee_details
|
9
|
+
DEL ir.ui.view: website_event_sale.cart_popover_inherit_website_event_sale
|
10
|
+
DEL ir.ui.view: website_event_sale.registration_template
|
11
|
+
# NOTHING TO DO
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
2
2
|
<odoo>
|
3
|
-
<record id="forum_help" model="forum.forum">
|
3
|
+
<!-- <record id="forum_help" model="forum.forum">
|
4
4
|
<field name="image_1920" type="base64" file="website_forum/static/src/img/help.jpg"/>
|
5
|
-
</record>
|
5
|
+
</record> -->
|
6
6
|
</odoo>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
@openupgrade.migrate()
|
8
|
+
def migrate(env, version):
|
9
|
+
openupgrade.load_data(env, "website_forum", "17.0.1.2/noupdate_changes.xml")
|
10
|
+
openupgrade.set_xml_ids_noupdate_value(
|
11
|
+
env, "website_forum", ["action_open_forum", "forum_post_view_kanban"], True
|
12
|
+
)
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# Copyright 2025 Tecnativa - Pedro M. Baeza
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
|
4
|
+
from openupgradelib import openupgrade
|
5
|
+
|
6
|
+
|
7
|
+
def _forum_default_order_last_activity_date(env):
|
8
|
+
"""The criteria "write_date desc" of forums order has been removed, while
|
9
|
+
"last_activity_date desc" has been added. We can switch them, and more
|
10
|
+
initializing the field with the same value.
|
11
|
+
"""
|
12
|
+
openupgrade.add_columns(
|
13
|
+
env, [(False, "last_activity_date", "datetime", None, "forum_forum")]
|
14
|
+
)
|
15
|
+
openupgrade.logged_query(
|
16
|
+
env.cr, "UPDATE forum_forum SET last_activity_date = write_date"
|
17
|
+
)
|
18
|
+
openupgrade.logged_query(
|
19
|
+
env.cr,
|
20
|
+
"""
|
21
|
+
UPDATE forum_forum
|
22
|
+
SET default_order = 'last_activity_date desc'
|
23
|
+
WHERE default_order = 'write_date desc'
|
24
|
+
""",
|
25
|
+
)
|
26
|
+
|
27
|
+
|
28
|
+
@openupgrade.migrate()
|
29
|
+
def migrate(env, version):
|
30
|
+
_forum_default_order_last_activity_date(env)
|
31
|
+
openupgrade.rename_fields(
|
32
|
+
env, [("website", "website", "forums_count", "forum_count")]
|
33
|
+
)
|
@@ -0,0 +1,86 @@
|
|
1
|
+
---Models in module 'website_forum'---
|
2
|
+
---Fields in module 'website_forum'---
|
3
|
+
website_forum / forum.forum / _order : _order is now 'sequence, id' ('sequence')
|
4
|
+
# NOTHING TO DO: The order has been refined a bit more.
|
5
|
+
|
6
|
+
website_forum / forum.forum / allow_bump (boolean) : DEL
|
7
|
+
website_forum / forum.post / bump_date (datetime) : DEL
|
8
|
+
# NOTHING TO DO: Removed feature that wasn't very used.
|
9
|
+
|
10
|
+
website_forum / forum.forum / default_order (selection) : selection_keys is now '['child_count desc', 'create_date desc', 'last_activity_date desc', 'relevancy desc', 'vote_count desc']' ('['child_count desc', 'create_date desc', 'relevancy desc', 'vote_count desc', 'write_date desc']')
|
11
|
+
website_forum / forum.post / last_activity_date (datetime) : NEW required
|
12
|
+
# DONE: pre-migration: switch "write_date desc" to "last_activity_date desc" and set last_activity_date with the current write_date
|
13
|
+
|
14
|
+
website_forum / forum.forum / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
15
|
+
website_forum / forum.forum / rating_ids (one2many) : NEW relation: rating.rating
|
16
|
+
website_forum / forum.post / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
17
|
+
website_forum / forum.post / rating_ids (one2many) : NEW relation: rating.rating
|
18
|
+
website_forum / forum.tag / message_main_attachment_id (many2one): DEL relation: ir.attachment
|
19
|
+
website_forum / forum.tag / rating_ids (one2many) : NEW relation: rating.rating
|
20
|
+
# NOTHING TO DO: mixin stuff with nothing to be done
|
21
|
+
|
22
|
+
website_forum / forum.forum / tag_ids (one2many) : NEW relation: forum.tag
|
23
|
+
# TODO: As this feature is underused, no work is done for now
|
24
|
+
|
25
|
+
website_forum / forum.post / _order : _order is now 'is_correct DESC, vote_count DESC, last_activity_date DESC' ('is_correct DESC, vote_count DESC, write_date DESC')
|
26
|
+
# NOTHING TO DO: Both fields (last_activity_date and write_date) is containing the same value in the moment of the migration
|
27
|
+
|
28
|
+
website_forum / website / forum_count (integer) : NEW
|
29
|
+
website_forum / website / forums_count (integer) : DEL
|
30
|
+
# DONE: pre-migration: Rename the field
|
31
|
+
|
32
|
+
---XML records in module 'website_forum'---
|
33
|
+
ir.actions.act_url: website_forum.action_open_forum (noupdate) (noupdate switched)
|
34
|
+
ir.ui.view: website_forum.forum_post_view_kanban (noupdate) (noupdate switched)
|
35
|
+
# DONE: post-migration: switch noupdate in this phase for getting updates before
|
36
|
+
|
37
|
+
NEW ir.actions.act_window: website_forum.forum_forum_action
|
38
|
+
NEW ir.actions.act_window: website_forum.forum_post_action (noupdate)
|
39
|
+
NEW ir.actions.act_window: website_forum.forum_post_action_favorites (noupdate)
|
40
|
+
NEW ir.actions.act_window: website_forum.forum_post_action_forum_main (noupdate)
|
41
|
+
NEW ir.actions.act_window: website_forum.forum_post_reason_action
|
42
|
+
DEL ir.actions.act_window: website_forum.action_forum_favorites
|
43
|
+
DEL ir.actions.act_window: website_forum.action_forum_forum
|
44
|
+
DEL ir.actions.act_window: website_forum.action_forum_post
|
45
|
+
DEL ir.actions.act_window: website_forum.action_forum_posts
|
46
|
+
DEL ir.actions.act_window: website_forum.forum_post_reasons_action
|
47
|
+
NEW ir.model.access: website_forum.access_forum_forum_employee
|
48
|
+
NEW ir.model.access: website_forum.access_forum_forum_portal
|
49
|
+
NEW ir.model.access: website_forum.access_forum_forum_public
|
50
|
+
DEL ir.model.access: website_forum.access_forum_forum
|
51
|
+
NEW ir.ui.view: website_forum.follow
|
52
|
+
NEW ir.ui.view: website_forum.forum_forum_view_form
|
53
|
+
NEW ir.ui.view: website_forum.forum_forum_view_search
|
54
|
+
NEW ir.ui.view: website_forum.forum_forum_view_tree
|
55
|
+
NEW ir.ui.view: website_forum.forum_index_tags
|
56
|
+
NEW ir.ui.view: website_forum.forum_model_nav
|
57
|
+
NEW ir.ui.view: website_forum.forum_post_view_form (noupdate)
|
58
|
+
NEW ir.ui.view: website_forum.forum_post_view_graph (noupdate)
|
59
|
+
NEW ir.ui.view: website_forum.forum_post_view_search (noupdate)
|
60
|
+
NEW ir.ui.view: website_forum.forum_post_view_tree (noupdate)
|
61
|
+
NEW ir.ui.view: website_forum.gamification_karma_tracking_view_search
|
62
|
+
NEW ir.ui.view: website_forum.header_welcome_message
|
63
|
+
NEW ir.ui.view: website_forum.no_results_message
|
64
|
+
NEW ir.ui.view: website_forum.post_display
|
65
|
+
NEW ir.ui.view: website_forum.post_dropdown
|
66
|
+
NEW ir.ui.view: website_forum.post_stats
|
67
|
+
NEW ir.ui.view: website_forum.profile_access_denied
|
68
|
+
NEW ir.ui.view: website_forum.user_sidebar_body
|
69
|
+
NEW ir.ui.view: website_forum.user_sidebar_header
|
70
|
+
NEW ir.ui.view: website_forum.user_sidebar_mobile
|
71
|
+
DEL ir.ui.view: website_forum.forum_nav_header
|
72
|
+
DEL ir.ui.view: website_forum.forum_post_options
|
73
|
+
DEL ir.ui.view: website_forum.forum_view_search
|
74
|
+
DEL ir.ui.view: website_forum.moderation_display_post_answer
|
75
|
+
DEL ir.ui.view: website_forum.post_answers
|
76
|
+
DEL ir.ui.view: website_forum.post_reply
|
77
|
+
DEL ir.ui.view: website_forum.private_profile
|
78
|
+
DEL ir.ui.view: website_forum.question_dropdown
|
79
|
+
DEL ir.ui.view: website_forum.tag
|
80
|
+
DEL ir.ui.view: website_forum.view_forum_forum_form
|
81
|
+
DEL ir.ui.view: website_forum.view_forum_forum_list
|
82
|
+
DEL ir.ui.view: website_forum.view_forum_post_form
|
83
|
+
DEL ir.ui.view: website_forum.view_forum_post_graph
|
84
|
+
DEL ir.ui.view: website_forum.view_forum_post_list
|
85
|
+
DEL ir.ui.view: website_forum.view_forum_post_search
|
86
|
+
# NOTHING TO DO:ir noupdate=0 or new noupdate=1 stuff
|
@@ -123,7 +123,9 @@ odoo/addons/openupgrade_scripts/scripts/event_booth/17.0.1.1/noupdate_changes.xm
|
|
123
123
|
odoo/addons/openupgrade_scripts/scripts/event_booth/17.0.1.1/upgrade_analysis.txt,sha256=sF-T-vRsKVL8z6zOaXX1EzIZa7WJ1hL9-dlN5wq5mEk,588
|
124
124
|
odoo/addons/openupgrade_scripts/scripts/event_booth_sale/17.0.1.2/upgrade_analysis.txt,sha256=93zxvY5pNeVDm0H25cv9YJmV45VQ0rN12h9uAqabxzU,552
|
125
125
|
odoo/addons/openupgrade_scripts/scripts/event_crm/17.0.1.0/upgrade_analysis.txt,sha256=Omj6WoajseGGw6gBGTMatYXmTY873d1s05eJjw-Wpnc,150
|
126
|
+
odoo/addons/openupgrade_scripts/scripts/event_sale/17.0.1.3/pre-migration.py,sha256=BMzn1Wc7wlqYPSas41uzkuXMWHX2lVq3t6Gvl38fS7U,1520
|
126
127
|
odoo/addons/openupgrade_scripts/scripts/event_sale/17.0.1.3/upgrade_analysis.txt,sha256=87X1DXbr7IAzhar_2v--b0nh3ndj6nw-ERskhtznfOc,1134
|
128
|
+
odoo/addons/openupgrade_scripts/scripts/event_sale/17.0.1.3/upgrade_analysis_work.txt,sha256=CmbVSiVfxetDCYtN043PwKQ9JlEY9xdcMqnKQymflkg,1759
|
127
129
|
odoo/addons/openupgrade_scripts/scripts/event_sms/17.0.1.0/noupdate_changes.xml,sha256=zCF9IS2bFYTsShraPQSxHkrQ0dQJTnPIlper2DFueHY,690
|
128
130
|
odoo/addons/openupgrade_scripts/scripts/event_sms/17.0.1.0/upgrade_analysis.txt,sha256=pnGaVYE8aFEgrU4s_krQnKOo6SP1RrkO7AcMnjAJDt8,150
|
129
131
|
odoo/addons/openupgrade_scripts/scripts/fleet/17.0.0.1/upgrade_analysis.txt,sha256=c7bQPAHj7d_apltC_ufIfe_HDuKMIFaOIbb1Q1xnY58,2652
|
@@ -484,7 +486,10 @@ odoo/addons/openupgrade_scripts/scripts/payment_razorpay/17.0.1.0/upgrade_analys
|
|
484
486
|
odoo/addons/openupgrade_scripts/scripts/payment_razorpay_oauth/17.0.1.0/upgrade_analysis.txt,sha256=Ko_2heaGi24jY5RgkXcXjvH-sy2Iz5ailDL-1JgllNk,733
|
485
487
|
odoo/addons/openupgrade_scripts/scripts/payment_sips/17.0.2.0/upgrade_analysis.txt,sha256=jcNAnS3qIQ_cwRKtwGlnRMOp93z86Dt25oXuziyUZp8,159
|
486
488
|
odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/noupdate_changes.xml,sha256=ZpbCtVdmQ-xDYb92ZSlz_oKfPpcKycmLR826EU6R-V8,197
|
489
|
+
odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/post-migration.py,sha256=oVvCY-cbxPqGw9VKPw848lDN7n8UAdcSQsX-7lBA8rI,287
|
490
|
+
odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/pre-migration.py,sha256=SuP0aFwwDxfbo9GraAp9zPc5fdKsqtxAkyBMwo7qCNo,420
|
487
491
|
odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/upgrade_analysis.txt,sha256=C8v3ngfImENCbbM7zx2kgbjS-ICtxK0xu0m6Azl9ZOQ,450
|
492
|
+
odoo/addons/openupgrade_scripts/scripts/payment_stripe/17.0.2.0/upgrade_analysis_work.txt,sha256=0iUL-0WGBZjTIou-nxVN7t_6uFtFow8M0NjG5XJyL14,648
|
488
493
|
odoo/addons/openupgrade_scripts/scripts/payment_xendit/17.0.1.0/upgrade_analysis.txt,sha256=RM5ORztDmdzXwxOs0m6ZR7bFQ9xmckKm6l9FS52ERuw,670
|
489
494
|
odoo/addons/openupgrade_scripts/scripts/phone_validation/17.0.2.1/upgrade_analysis.txt,sha256=WYwF7sN06juJO8wJgo3x5a3zGPiK7elW0VPONJAcFlQ,244
|
490
495
|
odoo/addons/openupgrade_scripts/scripts/phone_validation/17.0.2.1/upgrade_analysis_work.txt,sha256=VS_n-bjkpdTtxZ8tQvMq0VwECZqBC01wi14VESpYnAI,261
|
@@ -692,6 +697,7 @@ odoo/addons/openupgrade_scripts/scripts/website_event_booth_sale/17.0.1.0/upgrad
|
|
692
697
|
odoo/addons/openupgrade_scripts/scripts/website_event_booth_sale_exhibitor/17.0.1.0/upgrade_analysis.txt,sha256=5DW4vW8QV3NJW7Y1dXqHJghzFwdgOoN6bHnww3cqxrM,225
|
693
698
|
odoo/addons/openupgrade_scripts/scripts/website_event_exhibitor/17.0.1.1/upgrade_analysis.txt,sha256=uMWy08V7ommbUVUv7bBo-rctIJoTlmSGwfQZK_1ribA,1080
|
694
699
|
odoo/addons/openupgrade_scripts/scripts/website_event_meet/17.0.1.0/upgrade_analysis.txt,sha256=8n6r65MGuzUsRuwI8Wg4GEc-4xf9Gxpc7apDpq7o_T4,424
|
700
|
+
odoo/addons/openupgrade_scripts/scripts/website_event_sale/17.0.1.0/upgrade_analysis work.txt,sha256=TUMUNeiZrKsSLtD-Ii4RTyI9NW1V2y6X-gs3avB7FWQ,491
|
695
701
|
odoo/addons/openupgrade_scripts/scripts/website_event_sale/17.0.1.0/upgrade_analysis.txt,sha256=RD6Mzk_JereQL4WGK6xwcVlWKSSWUb4gVT1fTYWheKc,443
|
696
702
|
odoo/addons/openupgrade_scripts/scripts/website_event_track/17.0.1.3/upgrade_analysis.txt,sha256=4gw_RM8A1lVugLBL49EjxWi0hGaUdIx-06yetcDVrY4,1533
|
697
703
|
odoo/addons/openupgrade_scripts/scripts/website_event_track/17.0.1.3/upgrade_analysis_work.txt,sha256=SACisWnr90UwZ8cmbI8xMuZFY98d9JjsnvlAAkdgg4E,1621
|
@@ -699,8 +705,11 @@ odoo/addons/openupgrade_scripts/scripts/website_event_track_live/17.0.1.0/upgrad
|
|
699
705
|
odoo/addons/openupgrade_scripts/scripts/website_event_track_quiz/17.0.1.0/upgrade_analysis.txt,sha256=UhqqYMoCUY3akNEdgtGeVw35anBJUQjSgit8c1xx_PA,195
|
700
706
|
odoo/addons/openupgrade_scripts/scripts/website_form_project/17.0.1.0/upgrade_analysis.txt,sha256=ZOWcB0tufrrhjRnUwoW2RRk638uox68dGHZ1CM1RR5g,266
|
701
707
|
odoo/addons/openupgrade_scripts/scripts/website_form_project/17.0.1.0/upgrade_analysis_work.txt,sha256=gXR6Ku5J7PTlYCZFAl2RL-8438R1dmA2m0oLwAgySs8,295
|
702
|
-
odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/noupdate_changes.xml,sha256=
|
708
|
+
odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/noupdate_changes.xml,sha256=Hog7k5P9703xUPC6uRIjaLuvgMlpLkBUTZDwWeKPea0,212
|
709
|
+
odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/post-migration.py,sha256=Q2Wo5QJPeIXTcfud-PbAm-oW9CvsKizoGKUP2vGklP8,420
|
710
|
+
odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/pre-migration.py,sha256=0w7ur-SKzbodJDQ_7T8DTIaGiJtQnoowJaomJLh_r2k,1049
|
703
711
|
odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/upgrade_analysis.txt,sha256=maKZgyf6btXV16pKT1OGCoLQmvDm8AA1rvODhjs5lMc,4725
|
712
|
+
odoo/addons/openupgrade_scripts/scripts/website_forum/17.0.1.2/upgrade_analysis_work.txt,sha256=I2bAwbLljmEqJLP1sjqwZKfwkeopb8BtdzNwIlwLdIE,5392
|
704
713
|
odoo/addons/openupgrade_scripts/scripts/website_hr_recruitment/17.0.1.1/pre-migration.py,sha256=-3pgpO8jSwfET5mZB3mN3GVlgiqMnAYbEeyv-dnyop4,718
|
705
714
|
odoo/addons/openupgrade_scripts/scripts/website_hr_recruitment/17.0.1.1/upgrade_analysis.txt,sha256=fgkQdUCtQylRlge2ReZ4TXhBs2KXEeFuHroNSLvPgFY,799
|
706
715
|
odoo/addons/openupgrade_scripts/scripts/website_hr_recruitment/17.0.1.1/upgrade_analysis_work.txt,sha256=rv3UI_z7rwLVh_ddyvi6X8709hkONmkvSd9kwKu0xp4,908
|
@@ -747,7 +756,7 @@ odoo/addons/openupgrade_scripts/scripts/website_twitter/17.0.1.0/upgrade_analysi
|
|
747
756
|
odoo/addons/openupgrade_scripts/static/description/banner.png,sha256=KTIBu4gfxeZVw9zjs_fivTgFEOeaAorlBxajmCA1p6k,26859
|
748
757
|
odoo/addons/openupgrade_scripts/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
749
758
|
odoo/addons/openupgrade_scripts/static/description/index.html,sha256=iV41-zYBM4uvZPuunpcr7bQeRgBaojVsKo_gkeyJyA4,12639
|
750
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
751
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
752
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
753
|
-
odoo_addon_openupgrade_scripts-17.0.1.0.1.
|
759
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info/METADATA,sha256=SHQL0Z8CXRuhftJHQVl9E-cdofyZvpSnYQmAAawZemQ,3786
|
760
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
|
761
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
762
|
+
odoo_addon_openupgrade_scripts-17.0.1.0.1.327.dist-info/RECORD,,
|
File without changes
|