-
-
Notifications
You must be signed in to change notification settings - Fork 696
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
360c08c
commit 83cb90e
Showing
3 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
openupgrade_scripts/scripts/purchase_stock/16.0.1.2/pre-migration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
from openupgradelib import openupgrade | ||
|
||
|
||
def _compute_purchase_order_receipt_status(env): | ||
openupgrade.add_fields( | ||
env, | ||
[ | ||
( | ||
"receipt_status", | ||
"purchase.order", | ||
"purchase_order", | ||
"selection", | ||
"character varying", | ||
"purchase_stock", | ||
False, | ||
), | ||
], | ||
) | ||
openupgrade.logged_query( | ||
env.cr, | ||
""" | ||
WITH po_receipt_status as ( | ||
SELECT rel.purchase_order_id as id, | ||
CASE | ||
WHEN | ||
COUNT(sp.state) FILTER(WHERE sp.state = 'cancel') = COUNT(sp.state) | ||
THEN null | ||
WHEN | ||
COUNT(sp.state) FILTER(WHERE sp.state not in ('done', 'cancel')) = 0 | ||
THEN 'full' | ||
WHEN | ||
COUNT(sp.state) FILTER(WHERE sp.state = 'done') > 0 | ||
THEN 'partial' | ||
ELSE 'pending' | ||
END as receipt_status | ||
FROM stock_picking as sp | ||
JOIN purchase_order_stock_picking_rel as rel | ||
ON rel.stock_picking_id = sp.id | ||
GROUP BY 1 | ||
ORDER BY 1 | ||
) | ||
UPDATE purchase_order as po | ||
SET receipt_status = po_receipt_status.receipt_status | ||
FROM po_receipt_status | ||
WHERE po_receipt_status.id = po.id; | ||
""", | ||
) | ||
|
||
|
||
@openupgrade.migrate() | ||
def migrate(env, version): | ||
_compute_purchase_order_receipt_status(env) |
20 changes: 20 additions & 0 deletions
20
openupgrade_scripts/scripts/purchase_stock/16.0.1.2/upgrade_analysis_work.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
'---Models in module 'purchase_stock'--- | ||
---Fields in module 'purchase_stock'--- | ||
purchase_stock / purchase.order / dest_address_id (False) : NEW mode: modify, hasdefault: compute | ||
purchase_stock / purchase.order / incoterm_location (char) : NEW | ||
# NOTHING TO DO | ||
|
||
purchase_stock / purchase.order / receipt_status (selection) : NEW selection_keys: ['full', 'partial', 'pending'], isfunction: function, stored | ||
# DONE: pre-migration: create column and fill values | ||
|
||
purchase_stock / stock.warehouse.orderpoint / purchase_visibility_days (float): NEW hasdefault: default | ||
# NOTHING TO DO | ||
|
||
---XML records in module 'purchase_stock'--- | ||
NEW ir.ui.view: purchase_stock.purchase_order_view_tree_inherit | ||
DEL ir.ui.view: purchase_stock.product_category_view_form | ||
# NOTHING TO DO: noupdate="0" records | ||
|
||
DEL stock.location.route: purchase_stock.route_warehouse0_buy (noupdate) | ||
NEW stock.route: purchase_stock.route_warehouse0_buy (noupdate) | ||
# NOTHING TO DO: handle in 'stock' module |