Skip to content
Closed
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/modules160-170.rst
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ Module coverage 16.0 -> 17.0
+---------------------------------------------------+----------------------+-------------------------------------------------+
| stock | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| stock_account | | |
| stock_account | Done | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
| |new| stock_delivery | | |
+---------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024 Viindoo Technology Joint Stock Company (Viindoo)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from openupgradelib import openupgrade


def _stock_move_convert_analytic_account_line_id_m2o_to_m2m(env):
openupgrade.m2o_to_x2m(
env.cr,
env["stock.move"],
"stock_move",
"analytic_account_line_ids",
"analytic_account_line_id",
)


@openupgrade.migrate()
def migrate(env, version):
_stock_move_convert_analytic_account_line_id_m2o_to_m2m(env)
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 2023 Trần Trường Sơn
# Copyright 2023 Rémy Taymans
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from openupgradelib import openupgrade

_new_fields = [
(
"categ_id", # Field name
"stock.valuation.layer", # Model name
"stock_valuation_layer", # Table name
"many2one", # Odoo Field type (in lower case)
False, # [Optional] SQL type (if custom fields)
"stock_account", # Module name
False, # [Optional] Default value
)
]


def _fill_stock_valuation_layer_categ_id(env):
"""Field `categ_id` on stock.valuation.layer is now a stored field."""
openupgrade.logged_query(
env.cr,
"""
UPDATE stock_valuation_layer
SET categ_id = pt.categ_id
FROM product_product p
JOIN product_template pt ON p.product_tmpl_id = pt.id
WHERE stock_valuation_layer.product_id = p.id;
""",
)


@openupgrade.migrate()
def migrate(env, version):
openupgrade.add_fields(env, _new_fields)
_fill_stock_valuation_layer_categ_id(env)
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---Models in module 'stock_account'---
---Fields in module 'stock_account'---
stock_account / account.move.line / cogs_origin_id (many2one) : NEW relation: account.move.line
# NOTHING TO DO: new feature

stock_account / stock.move / analytic_account_line_id (many2one): DEL relation: account.analytic.line
stock_account / stock.move / analytic_account_line_ids (many2many): NEW relation: account.analytic.line
# DONE post-migraton: m2o to m2m

stock_account / stock.valuation.layer / categ_id (many2one) : is now stored
# DONE: pre-migration: Add new column & set value for it

---XML records in module 'stock_account'---
NEW ir.actions.act_window: stock_account.inventory_aging_action
NEW ir.filters: stock_account.filter_invoice_inventory_valuation
# NOTHING TO DO: new feature

DEL ir.property: stock_account.property_stock_account_input_categ_id (noupdate)
DEL ir.property: stock_account.property_stock_account_output_categ_id (noupdate)
# NOTHING TO DO: New noupdate="1" records

NEW ir.ui.menu: stock_account.menu_inventory_aging
NEW ir.ui.view: stock_account.stock_valuation_layer_graph
NEW ir.ui.view: stock_account.stock_valuation_layer_valuation_at_date_tree_inherited
# NOTHING TO DO: new feature

DEL ir.ui.view: stock_account.stock_account_report_product_product_replenishment
# NOTHING TO DO

NEW res.groups: stock_account.group_stock_accounting_automatic (noupdate)
# NOTHING TO DO: New noupdate="1" records