dataLists(new InventoryTransferLists()); } /** * @notes 添加商品调拨 * @return \think\response\Json * @author admin * @date 2024/08/13 16:18 */ public function add() { $params = (new InventoryTransferValidate())->post()->goCheck('add'); $result = InventoryTransferLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(InventoryTransferLogic::getError()); } /** * @notes 编辑商品调拨 * @return \think\response\Json * @author admin * @date 2024/08/13 16:18 */ public function edit() { $params = (new InventoryTransferValidate())->post()->goCheck('edit'); $result = InventoryTransferLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(InventoryTransferLogic::getError()); } /** * @notes 删除商品调拨 * @return \think\response\Json * @author admin * @date 2024/08/13 16:18 */ public function delete() { return $this->fail('删除功能暂未开放'); $params = (new InventoryTransferValidate())->post()->goCheck('delete'); InventoryTransferLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取商品调拨详情 * @return \think\response\Json * @author admin * @date 2024/08/13 16:18 */ public function detail() { $params = (new InventoryTransferValidate())->goCheck('detail'); $result = InventoryTransferLogic::detail($params); return $this->data($result); } }