From d07098bae1b7fa4b878a15a97a0e5d871e29dc9e Mon Sep 17 00:00:00 2001 From: "jinling.yang" Date: Thu, 31 Aug 2023 17:32:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E5=93=81=E5=BA=93=E5=AD=98=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E6=B2=A1=E6=9C=89=E5=9C=A8cloud=E7=94=9F=E6=88=90?= =?UTF-8?q?=E5=8A=A8=E6=80=81=E7=9A=84=E5=A4=B9=E5=85=B7=E5=92=8C=E5=88=80?= =?UTF-8?q?=E5=85=B7=E7=89=A9=E6=96=99Bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sf_manufacturing/models/stock.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/sf_manufacturing/models/stock.py b/sf_manufacturing/models/stock.py index 8b95c5af..c29abbf4 100644 --- a/sf_manufacturing/models/stock.py +++ b/sf_manufacturing/models/stock.py @@ -472,3 +472,22 @@ class ReStockMove(models.Model): item.product_id.write({'register_state': '注册失败'}) except Exception as e: raise UserError("注册刀具到云端失败,请联系管理员!") + + +class ReStockQuant(models.Model): + _inherit = 'stock.quant' + + def action_apply_inventory(self): + inventory_diff_quantity = self.inventory_diff_quantity + super(ReStockQuant, self).action_apply_inventory() + if inventory_diff_quantity >= 1: + stock = self.env['stock.move'].search([('product_id', '=', self.product_id.id), ('is_inventory', '=', True), + ('reference', '=', '更新的产品数量'), ('state', '=', 'done')], + limit=1, order='id desc') + if self.product_id.categ_type == '夹具': + stock._register_fixture() + elif self.product_id.categ_type == '刀具': + stock._register_cutting_tool() + return True + +