feat: 增加商品状态和库存查询条件

This commit is contained in:
mkm 2024-06-12 10:58:28 +08:00
parent 615067f01e
commit 4b5122f1ac
2 changed files with 3 additions and 1 deletions

View File

@ -119,6 +119,8 @@ class ProductLists extends BaseAdminDataLists implements ListsSearchInterface
}else{
$where[]=['store_id','=',2];
}
$this->searchWhere[]=['status','=',1];
$this->searchWhere[]=['stock','>',0];
$M_store_id=$this->request->__get('store_id');
if($M_store_id){
$where[]=['store_id','=',$M_store_id];

View File

@ -38,7 +38,7 @@ class SystemStoreStorageController extends BaseAdminController
if($id==0){
return $this->fail('参数错误');
}
$res=SystemStoreStorage::where(['id' => $id,'store_id'=>$this->adminInfo['store_id']])->update(['status'=>1,'staff_id'=>$this->adminId]);
$res=SystemStoreStorage::where(['id' => $id,'store_id'=>$this->adminInfo['store_id']])->update(['status'=>1,'staff_id'=>$this->adminId,'mark'=>'入库时间:'.date('Y-m-d H:i:s',time())]);
if($res){
$find=SystemStoreStorage::where(['id' => $id])->find();
StoreBranchProduct::where(['product_id'=>$find['product_id'],'store_id'=>$find['store_id']])->inc('stock',$find['nums'])->update();