Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---Fields in module 'stock_landed_costs'---
stock_landed_costs / stock.landed.cost / message_follower_ids (many2many): not a function anymore
stock_landed_costs / stock.landed.cost / message_follower_ids (many2many): relation is now 'mail.followers' ('res.partner')
stock_landed_costs / stock.landed.cost / message_follower_ids (many2many): type is now 'one2many' ('many2many')
# NOTHING TO DO: mail stuff already handled

---XML records in module 'stock_landed_costs'---
DEL ir.sequence.type: stock_landed_costs.seq_type_stock_landed_costs
# DONE: post-migration: Remove safely noupdate=1 record

DEL ir.ui.menu: stock_landed_costs.menu_stock_landed_cost_main
# NOTHING TO DO: noupdate=0 record

NEW res.groups: base.group_user
# NOTHING TO DO: Fake report
10 changes: 10 additions & 0 deletions addons/stock_landed_costs/migrations/9.0.1.1/post-migration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2021 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openupgradelib import openupgrade


@openupgrade.migrate(use_env=True)
def migrate(env, version):
openupgrade.delete_records_safely_by_xml_id(
env, [("stock_landed_costs.seq_type_stock_landed_costs")],
)
2 changes: 1 addition & 1 deletion openerp/openupgrade/doc/source/modules80-90.rst
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ missing in the new release are marked with |del|.
+----------------------------------------+------------------------------------------+
| |del| stock_invoice_directly | |
+----------------------------------------+------------------------------------------+
|stock_landed_costs | |
|stock_landed_costs | Done |
+----------------------------------------+------------------------------------------+
|stock_picking_wave | Nothing to do |
+----------------------------------------+------------------------------------------+
Expand Down