feat: 修改仓库产品逻辑,优化库存管理,提高代码安全性

This commit is contained in:
mkm 2024-08-10 11:22:34 +08:00
parent 09d157d81a
commit 8e8a031b05

View File

@ -89,11 +89,17 @@ class StoreProductLogic extends BaseLogic
} else {
if (is_array($params['store_arr']) && count($params['store_arr']) > 0) {
foreach ($params['store_arr'] as $key => $store_id) {
Redis::send('store-storage', ['product_arr' => ['id' => $res['id'], 'stock' => 0], 'store_id' => $store_id,'stock_type'=>1, 'admin_id' => Request()->adminId]);
if($store_id!=5){
Redis::send('store-storage', ['product_arr' => ['id' => $res['id'], 'stock' => 0], 'store_id' => $store_id,'stock_type'=>1, 'admin_id' => Request()->adminId]);
}
}
// Redis::send('copy-product', ['product_id' => $res['id'], 'store_arr' => $params['store_arr']]);
}
}
if(getenv('STORE_ID')){
Redis::send('store-storage', ['product_arr' => ['id' => $res['id'], 'stock' => 0], 'store_id' => getenv('STORE_ID'),'stock_type'=>1, 'admin_id' => Request()->adminId]);
}
return true;
} catch (\Exception $e) {
Db::rollback();