From 0ddfd9c483df071aa12610887de36f5c734f10cc Mon Sep 17 00:00:00 2001 From: lewis <604446095@qq.com> Date: Thu, 20 Mar 2025 15:58:38 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95=E8=B4=A2=E5=8A=A1=E6=BA=AF?= =?UTF-8?q?=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProductSourceLinkInfoLogic.php | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/app/admin/logic/product_source_link_info/ProductSourceLinkInfoLogic.php b/app/admin/logic/product_source_link_info/ProductSourceLinkInfoLogic.php index ddfd6ade..62362aa7 100644 --- a/app/admin/logic/product_source_link_info/ProductSourceLinkInfoLogic.php +++ b/app/admin/logic/product_source_link_info/ProductSourceLinkInfoLogic.php @@ -168,6 +168,7 @@ class ProductSourceLinkInfoLogic extends BaseLogic { $dataNums = bcsub($data['nums'], $rollbackNum, 2); $currentNums = max(bcsub($data['current_nums'], $rollbackNum, 2), 0); + $totalPrice = bcmul($data['price'], $dataNums, 2); $update[] = [ 'id' => $data['id'], 'nums' => $dataNums, @@ -176,10 +177,26 @@ class ProductSourceLinkInfoLogic extends BaseLogic 'delete_time' => $dataNums > 0 ? null : time(), ]; if ($data['from_id'] > 0) { - $update[] = [ - 'id' => $data['from_id'], - 'current_nums' => Db::raw("current_nums+{$rollbackNum}"), - ]; + if ($data['types'] == ProductSourceLinkInfo::TypeStoreIn) { + // 门店入库数量发起退库,更新出库单的数量和价格,更新入库单的可分配数量 + $outboundLinkInfoId = ProductSourceLinkInfo::where('id', $data['from_id'])->value('from_id'); + $update[] = [ + 'id' => $data['from_id'], + 'nums' => Db::raw("nums-{$rollbackNum}"), + 'current_nums' => Db::raw("current_nums-{$rollbackNum}"), + 'total_price' => Db::raw("total_price-{$totalPrice}"), + ]; + $update[] = [ + 'id' => $outboundLinkInfoId, + 'current_nums' => Db::raw("current_nums+{$rollbackNum}"), + ]; + } else { + // 更新来源单的可分配数量 + $update[] = [ + 'id' => $data['from_id'], + 'current_nums' => Db::raw("current_nums+{$rollbackNum}"), + ]; + } } return $update; }