feat: 修改仓库产品逻辑,优化库存管理,提高代码安全性
This commit is contained in:
parent
09d157d81a
commit
8e8a031b05
@ -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) {
|
||||
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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user