Skip to content

Commit

Permalink
Merge pull request #4086 from nguyenvietlam0640/16.0-website_event_tr…
Browse files Browse the repository at this point in the history
…ack-mig

[16.0] [OU-ADD] website_event_track
  • Loading branch information
pedrobaeza authored Apr 12, 2024
2 parents a05539e + d47f2da commit c0bb97a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docsource/modules150-160.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
+-------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -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"],
)
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c0bb97a

Please sign in to comment.