diff --git a/app/admin/controller/store_order/StoreOrderController.php b/app/admin/controller/store_order/StoreOrderController.php new file mode 100644 index 00000000..22e3a822 --- /dev/null +++ b/app/admin/controller/store_order/StoreOrderController.php @@ -0,0 +1,95 @@ +dataLists(new StoreOrderLists()); + } + + + /** + * @notes 添加订单列表 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 16:02 + */ + public function add() + { + $params = (new StoreOrderValidate())->post()->goCheck('add'); + $result = StoreOrderLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(StoreOrderLogic::getError()); + } + + + /** + * @notes 编辑订单列表 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 16:02 + */ + public function edit() + { + $params = (new StoreOrderValidate())->post()->goCheck('edit'); + $result = StoreOrderLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(StoreOrderLogic::getError()); + } + + + /** + * @notes 删除订单列表 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 16:02 + */ + public function delete() + { + $params = (new StoreOrderValidate())->post()->goCheck('delete'); + StoreOrderLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取订单列表详情 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 16:02 + */ + public function detail() + { + $params = (new StoreOrderValidate())->goCheck('detail'); + $result = StoreOrderLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/admin/controller/store_product_unit/StoreProductUnitController.php b/app/admin/controller/store_product_unit/StoreProductUnitController.php new file mode 100644 index 00000000..bbfb693b --- /dev/null +++ b/app/admin/controller/store_product_unit/StoreProductUnitController.php @@ -0,0 +1,95 @@ +dataLists(new StoreProductUnitLists()); + } + + + /** + * @notes 添加计量单位 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 15:50 + */ + public function add() + { + $params = (new StoreProductUnitValidate())->post()->goCheck('add'); + $result = StoreProductUnitLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(StoreProductUnitLogic::getError()); + } + + + /** + * @notes 编辑计量单位 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 15:50 + */ + public function edit() + { + $params = (new StoreProductUnitValidate())->post()->goCheck('edit'); + $result = StoreProductUnitLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(StoreProductUnitLogic::getError()); + } + + + /** + * @notes 删除计量单位 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 15:50 + */ + public function delete() + { + $params = (new StoreProductUnitValidate())->post()->goCheck('delete'); + StoreProductUnitLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取计量单位详情 + * @return \think\response\Json + * @author admin + * @date 2024/05/31 15:50 + */ + public function detail() + { + $params = (new StoreProductUnitValidate())->goCheck('detail'); + $result = StoreProductUnitLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/admin/lists/store_order/StoreOrderLists.php b/app/admin/lists/store_order/StoreOrderLists.php new file mode 100644 index 00000000..4fed4915 --- /dev/null +++ b/app/admin/lists/store_order/StoreOrderLists.php @@ -0,0 +1,65 @@ + ['order_id', 'pay_type'], + ]; + } + + + /** + * @notes 获取订单列表列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author admin + * @date 2024/05/31 16:02 + */ + public function lists(): array + { + return StoreOrder::where($this->searchWhere) + ->field(['id', 'order_id', 'pay_price', 'pay_time', 'pay_type', 'status']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取订单列表数量 + * @return int + * @author admin + * @date 2024/05/31 16:02 + */ + public function count(): int + { + return StoreOrder::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/admin/lists/store_product_unit/StoreProductUnitLists.php b/app/admin/lists/store_product_unit/StoreProductUnitLists.php new file mode 100644 index 00000000..a26acc0a --- /dev/null +++ b/app/admin/lists/store_product_unit/StoreProductUnitLists.php @@ -0,0 +1,65 @@ + ['name'], + ]; + } + + + /** + * @notes 获取计量单位列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author admin + * @date 2024/05/31 15:50 + */ + public function lists(): array + { + return StoreProductUnit::where($this->searchWhere) + ->field(['id', 'name', 'is_bulk', 'py', 'number', 'data']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取计量单位数量 + * @return int + * @author admin + * @date 2024/05/31 15:50 + */ + public function count(): int + { + return StoreProductUnit::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/admin/logic/store_order/StoreOrderLogic.php b/app/admin/logic/store_order/StoreOrderLogic.php new file mode 100644 index 00000000..40775b8a --- /dev/null +++ b/app/admin/logic/store_order/StoreOrderLogic.php @@ -0,0 +1,94 @@ +getMessage()); + return false; + } + } + + + /** + * @notes 编辑订单列表 + * @param array $params + * @return bool + * @author admin + * @date 2024/05/31 16:02 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + StoreOrder::where('id', $params['id'])->update([ + + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除订单列表 + * @param array $params + * @return bool + * @author admin + * @date 2024/05/31 16:02 + */ + public static function delete(array $params): bool + { + return StoreOrder::destroy($params['id']); + } + + + /** + * @notes 获取订单列表详情 + * @param $params + * @return array + * @author admin + * @date 2024/05/31 16:02 + */ + public static function detail($params): array + { + return StoreOrder::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/admin/logic/store_product_unit/StoreProductUnitLogic.php b/app/admin/logic/store_product_unit/StoreProductUnitLogic.php new file mode 100644 index 00000000..9ec2c073 --- /dev/null +++ b/app/admin/logic/store_product_unit/StoreProductUnitLogic.php @@ -0,0 +1,104 @@ + $params['name'], + 'is_bulk' => $params['is_bulk'], + 'py' => $params['py'], + 'number' => $params['number'], + 'data' => $params['data'], + 'more' => $params['more'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑计量单位 + * @param array $params + * @return bool + * @author admin + * @date 2024/05/31 15:50 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + StoreProductUnit::where('id', $params['id'])->update([ + 'name' => $params['name'], + 'is_bulk' => $params['is_bulk'], + 'py' => $params['py'], + 'number' => $params['number'], + 'data' => $params['data'], + 'more' => $params['more'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除计量单位 + * @param array $params + * @return bool + * @author admin + * @date 2024/05/31 15:50 + */ + public static function delete(array $params): bool + { + return StoreProductUnit::destroy($params['id']); + } + + + /** + * @notes 获取计量单位详情 + * @param $params + * @return array + * @author admin + * @date 2024/05/31 15:50 + */ + public static function detail($params): array + { + return StoreProductUnit::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/app/admin/validate/store_order/StoreOrderValidate.php b/app/admin/validate/store_order/StoreOrderValidate.php new file mode 100644 index 00000000..ffb5d980 --- /dev/null +++ b/app/admin/validate/store_order/StoreOrderValidate.php @@ -0,0 +1,82 @@ + 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return StoreOrderValidate + * @author admin + * @date 2024/05/31 16:02 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return StoreOrderValidate + * @author admin + * @date 2024/05/31 16:02 + */ + public function sceneEdit() + { + return $this->only(['id']); + } + + + /** + * @notes 删除场景 + * @return StoreOrderValidate + * @author admin + * @date 2024/05/31 16:02 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return StoreOrderValidate + * @author admin + * @date 2024/05/31 16:02 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/admin/validate/store_product_unit/StoreProductUnitValidate.php b/app/admin/validate/store_product_unit/StoreProductUnitValidate.php new file mode 100644 index 00000000..a1d11c47 --- /dev/null +++ b/app/admin/validate/store_product_unit/StoreProductUnitValidate.php @@ -0,0 +1,84 @@ + 'require', + 'name' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'name' => '单位名称', + ]; + + + /** + * @notes 添加场景 + * @return StoreProductUnitValidate + * @author admin + * @date 2024/05/31 15:50 + */ + public function sceneAdd() + { + return $this->only(['name']); + } + + + /** + * @notes 编辑场景 + * @return StoreProductUnitValidate + * @author admin + * @date 2024/05/31 15:50 + */ + public function sceneEdit() + { + return $this->only(['id','name']); + } + + + /** + * @notes 删除场景 + * @return StoreProductUnitValidate + * @author admin + * @date 2024/05/31 15:50 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return StoreProductUnitValidate + * @author admin + * @date 2024/05/31 15:50 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/store_order/StoreOrder.php b/app/common/model/store_order/StoreOrder.php new file mode 100644 index 00000000..87d82e4e --- /dev/null +++ b/app/common/model/store_order/StoreOrder.php @@ -0,0 +1,22 @@ +