dataLists(new WarehouseProductLists()); } /** * @notes 添加商品仓储信息 * @return \think\response\Json * @author admin * @date 2024/07/31 16:55 */ public function add() { $params = (new WarehouseProductValidate())->post()->goCheck('add'); $params['admin_id']=$this->adminId; $result = WarehouseProductLogic::add($params); if (WarehouseProductLogic::hasError()) { return $this->fail(WarehouseProductLogic::getError()); }else{ return $this->success('添加成功', [], 1, 1); } } /** * @notes 编辑商品仓储信息 * @return \think\response\Json * @author admin * @date 2024/07/31 16:55 */ public function edit() { $params = (new WarehouseProductValidate())->post()->goCheck('edit'); $params['admin_id']=$this->adminId; $result = WarehouseProductLogic::edit($params); if (WarehouseProductLogic::hasError()) { return $this->fail(WarehouseProductLogic::getError()); }else{ return $this->success('编辑成功', [], 1, 1); } } /** * @notes 删除商品仓储信息 * @return \think\response\Json * @author admin * @date 2024/07/31 16:55 */ public function delete() { $params = (new WarehouseProductValidate())->post()->goCheck('delete'); WarehouseProductLogic::delete($params); if (WarehouseProductLogic::hasError()) { return $this->fail(WarehouseProductLogic::getError()); }else{ return $this->success('删除成功', [], 1, 1); } } /** * @notes 获取商品仓储信息详情 * @return \think\response\Json * @author admin * @date 2024/07/31 16:55 */ public function detail() { $params = (new WarehouseProductValidate())->goCheck('detail'); $result = WarehouseProductLogic::detail($params); return $this->data($result); } /** * 确认操作 */ public function enter(){ $id=$this->request->post('id'); $result = WarehouseProductLogic::enter($id); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(WarehouseProductLogic::getError()); return $this->success($result); } }