diff --git a/docsource/modules150-160.rst b/docsource/modules150-160.rst index 4dbe33da3ebc..0a28089b3bf7 100644 --- a/docsource/modules150-160.rst +++ b/docsource/modules150-160.rst @@ -842,7 +842,7 @@ Module coverage 15.0 -> 16.0 +-------------------------------------------------+----------------------+-------------------------------------------------+ | website_event_sale | Nothing to do | | +-------------------------------------------------+----------------------+-------------------------------------------------+ -| website_event_track | | | +| website_event_track | Done | | +-------------------------------------------------+----------------------+-------------------------------------------------+ | website_event_track_live | |No DB layout changes. | +-------------------------------------------------+----------------------+-------------------------------------------------+ diff --git a/openupgrade_scripts/scripts/website_event_track/16.0.1.3/post-migration.py b/openupgrade_scripts/scripts/website_event_track/16.0.1.3/post-migration.py new file mode 100644 index 000000000000..faf7d511fb66 --- /dev/null +++ b/openupgrade_scripts/scripts/website_event_track/16.0.1.3/post-migration.py @@ -0,0 +1,14 @@ +from openupgradelib import openupgrade + + +@openupgrade.migrate() +def migrate(env, version): + openupgrade.load_data( + env.cr, "website_event_track", "16.0.1.3/noupdate_changes.xml" + ) + openupgrade.delete_record_translations( + env.cr, + "website_event_track", + ["mail_template_data_track_confirmation"], + ["name", "description"], + ) diff --git a/openupgrade_scripts/scripts/website_event_track/16.0.1.3/upgrade_analysis_work.txt b/openupgrade_scripts/scripts/website_event_track/16.0.1.3/upgrade_analysis_work.txt new file mode 100644 index 000000000000..c61ceb0a86b8 --- /dev/null +++ b/openupgrade_scripts/scripts/website_event_track/16.0.1.3/upgrade_analysis_work.txt @@ -0,0 +1,17 @@ +---Models in module 'website_event_track'--- +---Fields in module 'website_event_track'--- +website_event_track / event.track.location / _order : _order is now 'sequence, id' ('id') +# NOTHING TO DO + +website_event_track / event.track.location / sequence (integer) : NEW hasdefault: default +# NOTHING TO DO: Default value applied by ORM is OK + +website_event_track / website.event.menu / menu_type (False) : selection_keys is now '['booth', 'community', 'introduction', 'location', 'register', 'track', 'track_proposal']' ('['booth', 'community', 'exhibitor', 'introduction', 'location', 'meeting_room', 'register', 'track', 'track_proposal']') +# NOTHING TO DO: nothing change in website.event.menu of module website_event_track + +---XML records in module 'website_event_track'--- +NEW ir.ui.view: website_event_track.event_track_content_partner_info +NEW ir.ui.view: website_event_track.event_track_view_form_quick_create +NEW ir.ui.view: website_event_track.snippet_options +DEL ir.ui.view: website_event_track.track_edit_options +# NOTHING TO DO