mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
[14.0][MIG] stock_request_submit (Version 13.0 to 14.0)
[MIG] Prettier [MIG] Rename uninstall_hook.py to hooks.py [MIG] Added Uninstall Hook Test [IMP] Black
This commit is contained in:
11
stock_request_submit/hooks.py
Normal file
11
stock_request_submit/hooks.py
Normal file
@@ -0,0 +1,11 @@
|
||||
# Copyright 2019-2020 ForgeFlow S.L. (https://www.forgeflow.com)
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo import SUPERUSER_ID, api
|
||||
|
||||
|
||||
def uninstall_hook(cr, registry):
|
||||
env = api.Environment(cr, SUPERUSER_ID, {})
|
||||
sr = env["stock.request"].search([("state", "=", "submitted")])
|
||||
sr.write({"state": "draft"})
|
||||
sro = env["stock.request.order"].search([("state", "=", "submitted")])
|
||||
sro.write({"state": "draft"})
|
||||
Reference in New Issue
Block a user