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
2 changes: 1 addition & 1 deletion docsource/modules170-180.rst
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ Module coverage 17.0 -> 18.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| mrp_landed_costs | Nothing to do |No DB layout changes. |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| mrp_product_expiry | | |
| mrp_product_expiry |Nothing to do |No DB layout changes. |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| mrp_repair | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2025 OpenUpgrade Contributors
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
"""No changes needed in data for mrp_product_expiry 17.0 -> 18.0"""
pass
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

this file in nonsense, remove

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2025 OpenUpgrade Contributors
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):
"""No changes needed in schema for mrp_product_expiry 17.0 -> 18.0"""
pass
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

remove

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---Models in module 'mrp_product_expiry'---
No model changes detected.

---Fields in module 'mrp_product_expiry'---
No field changes detected.

---XML records in module 'mrp_product_expiry'---
No XML record changes detected.

---Merged modules---
None

---Renamed models---
None

---Deleted models---
None

---Schema changes summary---
No database schema changes required.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

don't edit this file

Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---Models in module 'mrp_product_expiry'---
No model changes detected.
# NOTHING TO DO: Module code is identical in 17.0 and 18.0

---Fields in module 'mrp_product_expiry'---
No field changes detected.
# NOTHING TO DO: All fields remain unchanged

---XML records in module 'mrp_product_expiry'---
No XML record changes detected.
# NOTHING TO DO: All XML records remain unchanged

---Merged modules---
None
# NOTHING TO DO: No modules were merged

---Renamed models---
None
# NOTHING TO DO: No models were renamed

---Deleted models---
None
# NOTHING TO DO: No models were deleted

---Schema changes summary---
No database schema changes required.
# NOTHING TO DO: This is a lightweight technical module with no database changes
# between versions 17.0 and 18.0. All functionality is preserved as-is.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

remove nonsense comments

Loading