Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docsource/modules180-190.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,19 +136,19 @@ Module coverage 18.0 -> 19.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event_booth | | |
| event_booth |Done |Nothing to do |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event_booth_sale | | |
| event_booth_sale |Done |Nothing to do |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event_crm | | |
| event_crm |Done |Nothing to do |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event_crm_sale | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event_product | | |
| event_product |Done |Nothing to do |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event_sale | | |
| event_sale |Done |Nothing to do |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| event_sms | |No DB layout changes. |
| event_sms |Done |Nothing to do |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| fleet | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---Models in module 'event_booth'---

---Fields in module 'event_booth'---

---XML records in module 'event_booth'---
NEW ir.model.access: event_booth.access_event_booth_desk

# NOTHING TO DO
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---Models in module 'event_booth_sale'---

---Fields in module 'event_booth_sale'---
event_booth_sale / product.template / service_tracking (False) : selection_keys added: [partnership, repair] (most likely nothing to do)

# NOTHING TO DO

---XML records in module 'event_booth_sale'---
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---Models in module 'event_crm'---

---Fields in module 'event_crm'---
event_crm / event.lead.request / event_lead_rule_ids (many2many): NEW relation: event.lead.rule

# NOTHING TO DO

---XML records in module 'event_crm'---
NEW ir.actions.act_window: event_crm.event_lead_rule_answer_action
NEW ir.actions.server: event_crm.action_generate_leads
NEW ir.ui.view: event_crm.event_question_view_form

# NOTHING TO DO
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---Models in module 'event_product'---

---Fields in module 'event_product'---
event_product / event.registration / sale_status (selection) : previously in module event_sale

# NOTHING TO DO

---XML records in module 'event_product'---
NEW ir.ui.view: event_product.event_registration_ticket_view_form
NEW ir.ui.view: event_product.event_registration_view_graph
NEW ir.ui.view: event_product.view_event_registration_ticket_tree

# NOTHING TO DO
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need to analyze if pertinent (otherwise you should comment out lines that you do not want to udapte in the following file) and load https://github.com/OCA/OpenUpgrade/blob/19.0/openupgrade_scripts/scripts/event_product/19.0.1.0/noupdate_changes.xml

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks — added a ---noupdate_changes.xml--- block to the work doc explaining the decision. The single record (product_category_events parent_id → product.product_category_services with raise_if_not_found=False) is left active: it's a default-hierarchy alignment on a base shipped category, and the fallback flag makes it safe on databases where the parent category was renamed or removed.
Users who reparented the Events category under a custom tree would be silently rewritten — happy to flip to commented-out if you'd prefer the strictly conservative path.

But then the default would not get the update.

Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---Models in module 'event_sale'---

---Fields in module 'event_sale'---
event_sale / event.registration / sale_status (selection) : module is now 'event_product' ('event_sale')
event_sale / sale.order.line / event_slot_id (many2one) : NEW relation: event.slot, hasdefault: compute

# NOTHING TO DO

---XML records in module 'event_sale'---
DEL ir.model.access: event_sale.access_product_product_event_manager
DEL ir.model.access: event_sale.access_product_template_event_manager
NEW ir.ui.view: event_sale.event_registration_change_exception
DEL ir.ui.view: event_sale.event_registration_view_graph
DEL ir.ui.view: event_sale.event_registration_view_kanban
DEL ir.ui.view: event_sale.event_ticket_id_change_exception

# NOTHING TO DO
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<?xml version='1.0' encoding='utf-8'?>
<odoo>
<!--
<record id="sms_template_data_event_registration" model="sms.template">
<field name="lang"/>
</record>
<record id="sms_template_data_event_reminder" model="sms.template">
<field name="lang"/>
</record>
-->
</odoo>
Loading