feat(StoreProductController, WarehouseProductLists, StoreStorageSend): Update stock management logic, optimize inventory checking, adjust storage management methods
This commit is contained in:
parent
c6bc0b41e8
commit
d083b5e07d
@ -103,23 +103,11 @@ class StoreProductController extends BaseAdminController
|
|||||||
$warehouse_id = $this->request->post('warehouse_id');
|
$warehouse_id = $this->request->post('warehouse_id');
|
||||||
if (count($store_arr) == 1) {
|
if (count($store_arr) == 1) {
|
||||||
$store_id = $store_arr[0];
|
$store_id = $store_arr[0];
|
||||||
foreach ($product_arr as $key => $arr) {
|
|
||||||
$nums= WarehouseProductStorege::where('warehouse_id',$warehouse_id)->where('product_id',$arr['product_id'])->value('nums');
|
|
||||||
if($nums<$arr['stock']){
|
|
||||||
return $this->fail('商品ID'.$arr['product_id'].'库存不足');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
foreach ($product_arr as $key => $arr) {
|
foreach ($product_arr as $key => $arr) {
|
||||||
Redis::send('store-storage', ['product_arr' => $arr, 'store_id' => $store_id,'stock_type'=>$stock_type, 'admin_id' => $this->adminId,'warehouse_id'=>$warehouse_id]);
|
Redis::send('store-storage', ['product_arr' => $arr, 'store_id' => $store_id,'stock_type'=>$stock_type, 'admin_id' => $this->adminId,'warehouse_id'=>$warehouse_id]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
foreach ($product_arr as $key => $arr) {
|
foreach ($product_arr as $key => $arr) {
|
||||||
foreach ($product_arr as $key => $arr) {
|
|
||||||
$nums= WarehouseProductStorege::where('warehouse_id',$warehouse_id)->where('product_id',$arr['product_id'])->value('nums');
|
|
||||||
if($nums<$arr['stock']){
|
|
||||||
return $this->fail('商品ID'.$arr['product_id'].'库存不足');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
foreach ($store_arr as $k => $store_id) {
|
foreach ($store_arr as $k => $store_id) {
|
||||||
Redis::send('store-storage', ['product_arr' => $arr, 'store_id' => $store_id,'stock_type'=>$stock_type, 'admin_id' => $this->adminId,'warehouse_id'=>$warehouse_id]);
|
Redis::send('store-storage', ['product_arr' => $arr, 'store_id' => $store_id,'stock_type'=>$stock_type, 'admin_id' => $this->adminId,'warehouse_id'=>$warehouse_id]);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user