diff --git a/app/adminapi/controller/finance/FinanceRefundApplyController.php b/app/adminapi/controller/finance/FinanceRefundApplyController.php new file mode 100644 index 000000000..b0199c2ba --- /dev/null +++ b/app/adminapi/controller/finance/FinanceRefundApplyController.php @@ -0,0 +1,108 @@ +dataLists(new FinanceRefundApplyLists()); + } + + + /** + * @notes 添加 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function add() + { + $params = (new FinanceRefundApplyValidate())->post()->goCheck('add'); + $result = FinanceRefundApplyLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(FinanceRefundApplyLogic::getError()); + } + + + /** + * @notes 编辑 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function edit() + { + $params = (new FinanceRefundApplyValidate())->post()->goCheck('edit'); + $result = FinanceRefundApplyLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(FinanceRefundApplyLogic::getError()); + } + + + /** + * @notes 删除 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function delete() + { + $params = (new FinanceRefundApplyValidate())->post()->goCheck('delete'); + FinanceRefundApplyLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取详情 + * @return \think\response\Json + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function detail() + { + $params = (new FinanceRefundApplyValidate())->goCheck('detail'); + $result = FinanceRefundApplyLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/app/adminapi/lists/finance/FinanceRefundApplyLists.php b/app/adminapi/lists/finance/FinanceRefundApplyLists.php new file mode 100644 index 000000000..a613c717b --- /dev/null +++ b/app/adminapi/lists/finance/FinanceRefundApplyLists.php @@ -0,0 +1,77 @@ + ['customer_id', 'contract_id', 'collection_acccount'], + ]; + } + + + /** + * @notes 获取列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function lists(): array + { + return FinanceRefundApply::where($this->searchWhere) + ->field(['*']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取数量 + * @return int + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function count(): int + { + return FinanceRefundApply::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/app/adminapi/logic/finance/FinanceRefundApplyLogic.php b/app/adminapi/logic/finance/FinanceRefundApplyLogic.php new file mode 100644 index 000000000..6e71304be --- /dev/null +++ b/app/adminapi/logic/finance/FinanceRefundApplyLogic.php @@ -0,0 +1,133 @@ + $params['customer_id'] ?? 0, + 'contract_id' => $params['contract_id'] ?? 0, + 'approve_id' => $params['approve_id'] ?? 0, + 'refund_date' => $params['refund_date'] ?? '', + 'reason' => $params['reason'] ?? '', + 'amount' => $params['amount'] ?? 0, + 'amount_daxie' => $params['amount_daxie'] ?? '', + 'refund_type' => $params['refund_type'] ?? 0, + 'refunder' => $params['refunder'] ?? '', + 'remark' => $params['remark'] ?? '', + 'annex' => $params['annex'] ?? '', + 'collection_bank' => $params['collection_bank'] ?? '', + 'collection_acccount' => $params['collection_acccount'] ?? '' + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + FinanceRefundApply::create([ + 'customer_id' => $params['customer_id'] ?? 0, + 'contract_id' => $params['contract_id'] ?? 0, + 'approve_id' => $params['approve_id'] ?? 0, + 'refund_date' => $params['refund_date'] ?? '', + 'reason' => $params['reason'] ?? '', + 'amount' => $params['amount'] ?? 0, + 'amount_daxie' => $params['amount_daxie'] ?? '', + 'refund_type' => $params['refund_type'] ?? 0, + 'refunder' => $params['refunder'] ?? '', + 'remark' => $params['remark'] ?? '', + 'annex' => $params['annex'] ?? '', + 'collection_bank' => $params['collection_bank'] ?? '', + 'collection_acccount' => $params['collection_acccount'] ?? '' + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除 + * @param array $params + * @return bool + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public static function delete(array $params): bool + { + return FinanceRefundApply::destroy($params['id']); + } + + + /** + * @notes 获取详情 + * @param $params + * @return array + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public static function detail($params): array + { + $financeRefundApply = FinanceRefundApply::findOrEmpty($params['id']); + $financeRefundApply->contract; + $financeRefundApply->custom; + return $financeRefundApply->toArray(); + } +} \ No newline at end of file diff --git a/app/adminapi/validate/finance/FinanceRefundApplyValidate.php b/app/adminapi/validate/finance/FinanceRefundApplyValidate.php new file mode 100644 index 000000000..4226fd1da --- /dev/null +++ b/app/adminapi/validate/finance/FinanceRefundApplyValidate.php @@ -0,0 +1,97 @@ + 'require', + 'customer_id' => 'require', + 'contract_id' => 'require', + 'approve_id' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + ]; + + + /** + * @notes 添加场景 + * @return FinanceRefundApplyValidate + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function sceneAdd() + { + return $this->remove('id', true); + } + + + /** + * @notes 编辑场景 + * @return FinanceRefundApplyValidate + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function sceneEdit() + { + return $this->only(['id', 'customer_id', 'contract_id', 'approve_id']); + } + + + /** + * @notes 删除场景 + * @return FinanceRefundApplyValidate + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return FinanceRefundApplyValidate + * @author likeadmin + * @date 2023/12/14 16:58 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/app/common/model/finance/FinanceRefundApply.php b/app/common/model/finance/FinanceRefundApply.php new file mode 100644 index 000000000..0d54f29f5 --- /dev/null +++ b/app/common/model/finance/FinanceRefundApply.php @@ -0,0 +1,43 @@ +belongsTo(\app\common\model\custom\Custom::class, 'customer_id'); + } + + public function contract() + { + return $this->belongsTo(\app\common\model\contract\Contract::class, 'contract_id'); + } + +} \ No newline at end of file