Merge pull request 'feat: 修改仓库产品逻辑,优化库存管理,提高代码安全性' (#121) from dev into main

Reviewed-on: #121
This commit is contained in:
mkm 2024-08-10 11:23:22 +08:00
commit 316da99a0f

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();