From 75b4a99040e1511ff9cd7f11b8bdd9ccbd69c072 Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Thu, 28 Mar 2024 15:56:59 +0800 Subject: [PATCH] add --- ...inancialExpenseReimbursementController.php | 108 +++++++++ ...FinancialTravelReimbursementController.php | 108 +++++++++ .../FinancialExpenseReimbursementLists.php | 78 +++++++ .../FinancialTravelReimbursementLists.php | 77 +++++++ .../FinancialExpenseReimbursementLogic.php | 124 +++++++++++ .../FinancialTravelReimbursementLogic.php | 124 +++++++++++ .../FinancialExpenseReimbursementValidate.php | 112 ++++++++++ .../FinancialTravelReimbursementValidate.php | 114 ++++++++++ .../FinancialExpenseReimbursement.php | 34 +++ .../FinancialTravelReimbursement.php | 34 +++ generate/sql/menu.sql | 13 ++ .../api/financial_expense_reimbursement.ts | 26 +++ .../src/api/financial_travel_reimbursement.ts | 26 +++ .../financial_expense_reimbursement/edit.vue | 185 ++++++++++++++++ .../financial_expense_reimbursement/index.vue | 153 +++++++++++++ .../financial_travel_reimbursement/edit.vue | 190 ++++++++++++++++ .../financial_travel_reimbursement/index.vue | 150 +++++++++++++ src/api/financial_expense_reimbursement.ts | 11 + src/api/financial_fee_application.ts | 20 +- src/api/financial_travel_reimbursement.ts | 26 +++ .../dialogTable/dialogTableConfig.ts | 35 +++ src/components/formTable/index.vue | 2 + .../financial_expense_reimbursement/detail.js | 103 +++++++++ .../financial_expense_reimbursement/edit.vue | 206 ++++++++++++++---- .../financial_expense_reimbursement/index.vue | 107 ++++++--- src/views/financial_fee_application/detail.js | 73 +++++++ src/views/financial_fee_application/edit.vue | 136 +++++++++--- src/views/financial_fee_application/index.vue | 35 ++- .../financial_travel_reimbursement/edit.vue | 190 ++++++++++++++++ .../financial_travel_reimbursement/index.vue | 150 +++++++++++++ 30 files changed, 2626 insertions(+), 124 deletions(-) create mode 100644 generate/php/app/adminapi/controller/financial/FinancialExpenseReimbursementController.php create mode 100644 generate/php/app/adminapi/controller/financial/FinancialTravelReimbursementController.php create mode 100644 generate/php/app/adminapi/lists/financial/FinancialExpenseReimbursementLists.php create mode 100644 generate/php/app/adminapi/lists/financial/FinancialTravelReimbursementLists.php create mode 100644 generate/php/app/adminapi/logic/financial/FinancialExpenseReimbursementLogic.php create mode 100644 generate/php/app/adminapi/logic/financial/FinancialTravelReimbursementLogic.php create mode 100644 generate/php/app/adminapi/validate/financial/FinancialExpenseReimbursementValidate.php create mode 100644 generate/php/app/adminapi/validate/financial/FinancialTravelReimbursementValidate.php create mode 100644 generate/php/app/common/model/financial/FinancialExpenseReimbursement.php create mode 100644 generate/php/app/common/model/financial/FinancialTravelReimbursement.php create mode 100644 generate/sql/menu.sql create mode 100644 generate/vue/src/api/financial_expense_reimbursement.ts create mode 100644 generate/vue/src/api/financial_travel_reimbursement.ts create mode 100644 generate/vue/src/views/financial_expense_reimbursement/edit.vue create mode 100644 generate/vue/src/views/financial_expense_reimbursement/index.vue create mode 100644 generate/vue/src/views/financial_travel_reimbursement/edit.vue create mode 100644 generate/vue/src/views/financial_travel_reimbursement/index.vue create mode 100644 src/api/financial_travel_reimbursement.ts create mode 100644 src/views/financial_expense_reimbursement/detail.js create mode 100644 src/views/financial_fee_application/detail.js create mode 100644 src/views/financial_travel_reimbursement/edit.vue create mode 100644 src/views/financial_travel_reimbursement/index.vue diff --git a/generate/php/app/adminapi/controller/financial/FinancialExpenseReimbursementController.php b/generate/php/app/adminapi/controller/financial/FinancialExpenseReimbursementController.php new file mode 100644 index 0000000..f5ca67b --- /dev/null +++ b/generate/php/app/adminapi/controller/financial/FinancialExpenseReimbursementController.php @@ -0,0 +1,108 @@ +dataLists(new FinancialExpenseReimbursementLists()); + } + + + /** + * @notes 添加财务管理--费用报销单 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function add() + { + $params = (new FinancialExpenseReimbursementValidate())->post()->goCheck('add'); + $result = FinancialExpenseReimbursementLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(FinancialExpenseReimbursementLogic::getError()); + } + + + /** + * @notes 编辑财务管理--费用报销单 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function edit() + { + $params = (new FinancialExpenseReimbursementValidate())->post()->goCheck('edit'); + $result = FinancialExpenseReimbursementLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(FinancialExpenseReimbursementLogic::getError()); + } + + + /** + * @notes 删除财务管理--费用报销单 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function delete() + { + $params = (new FinancialExpenseReimbursementValidate())->post()->goCheck('delete'); + FinancialExpenseReimbursementLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取财务管理--费用报销单详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function detail() + { + $params = (new FinancialExpenseReimbursementValidate())->goCheck('detail'); + $result = FinancialExpenseReimbursementLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/generate/php/app/adminapi/controller/financial/FinancialTravelReimbursementController.php b/generate/php/app/adminapi/controller/financial/FinancialTravelReimbursementController.php new file mode 100644 index 0000000..e378058 --- /dev/null +++ b/generate/php/app/adminapi/controller/financial/FinancialTravelReimbursementController.php @@ -0,0 +1,108 @@ +dataLists(new FinancialTravelReimbursementLists()); + } + + + /** + * @notes 添加财务管理--差旅费报销单 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function add() + { + $params = (new FinancialTravelReimbursementValidate())->post()->goCheck('add'); + $result = FinancialTravelReimbursementLogic::add($params); + if (true === $result) { + return $this->success('添加成功', [], 1, 1); + } + return $this->fail(FinancialTravelReimbursementLogic::getError()); + } + + + /** + * @notes 编辑财务管理--差旅费报销单 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function edit() + { + $params = (new FinancialTravelReimbursementValidate())->post()->goCheck('edit'); + $result = FinancialTravelReimbursementLogic::edit($params); + if (true === $result) { + return $this->success('编辑成功', [], 1, 1); + } + return $this->fail(FinancialTravelReimbursementLogic::getError()); + } + + + /** + * @notes 删除财务管理--差旅费报销单 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function delete() + { + $params = (new FinancialTravelReimbursementValidate())->post()->goCheck('delete'); + FinancialTravelReimbursementLogic::delete($params); + return $this->success('删除成功', [], 1, 1); + } + + + /** + * @notes 获取财务管理--差旅费报销单详情 + * @return \think\response\Json + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function detail() + { + $params = (new FinancialTravelReimbursementValidate())->goCheck('detail'); + $result = FinancialTravelReimbursementLogic::detail($params); + return $this->data($result); + } + + +} \ No newline at end of file diff --git a/generate/php/app/adminapi/lists/financial/FinancialExpenseReimbursementLists.php b/generate/php/app/adminapi/lists/financial/FinancialExpenseReimbursementLists.php new file mode 100644 index 0000000..51fac3c --- /dev/null +++ b/generate/php/app/adminapi/lists/financial/FinancialExpenseReimbursementLists.php @@ -0,0 +1,78 @@ + ['contract_id', 'fee_application_id', 'pay_type'], + '%like%' => ['theme', 'code', 'create_user'], + ]; + } + + + /** + * @notes 获取财务管理--费用报销单列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function lists(): array + { + return FinancialExpenseReimbursement::where($this->searchWhere) + ->field(['id', 'contract_id', 'fee_application_id', 'theme', 'code', 'bill_num', 'pay_type', 'content', 'create_user', 'create_time']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取财务管理--费用报销单数量 + * @return int + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function count(): int + { + return FinancialExpenseReimbursement::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/generate/php/app/adminapi/lists/financial/FinancialTravelReimbursementLists.php b/generate/php/app/adminapi/lists/financial/FinancialTravelReimbursementLists.php new file mode 100644 index 0000000..6021314 --- /dev/null +++ b/generate/php/app/adminapi/lists/financial/FinancialTravelReimbursementLists.php @@ -0,0 +1,77 @@ + ['code', 'approve_dept', 'cost_type', 'pay_type', 'create_user'], + ]; + } + + + /** + * @notes 获取财务管理--差旅费报销单列表 + * @return array + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function lists(): array + { + return FinancialTravelReimbursement::where($this->searchWhere) + ->field(['id', 'code', 'approve_dept', 'cost_type', 'pay_type', 'tax_deductible_amount', 'bill_num', 'fee_application_id', 'content', 'create_user', 'create_time']) + ->limit($this->limitOffset, $this->limitLength) + ->order(['id' => 'desc']) + ->select() + ->toArray(); + } + + + /** + * @notes 获取财务管理--差旅费报销单数量 + * @return int + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function count(): int + { + return FinancialTravelReimbursement::where($this->searchWhere)->count(); + } + +} \ No newline at end of file diff --git a/generate/php/app/adminapi/logic/financial/FinancialExpenseReimbursementLogic.php b/generate/php/app/adminapi/logic/financial/FinancialExpenseReimbursementLogic.php new file mode 100644 index 0000000..8d8accb --- /dev/null +++ b/generate/php/app/adminapi/logic/financial/FinancialExpenseReimbursementLogic.php @@ -0,0 +1,124 @@ + $params['contract_id'], + 'fee_application_id' => $params['fee_application_id'], + 'theme' => $params['theme'], + 'code' => $params['code'], + 'bill_num' => $params['bill_num'], + 'pay_type' => $params['pay_type'], + 'content' => $params['content'], + 'annex' => $params['annex'], + 'create_user' => $params['create_user'], + 'create_time' => $params['create_time'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑财务管理--费用报销单 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + FinancialExpenseReimbursement::where('id', $params['id'])->update([ + 'contract_id' => $params['contract_id'], + 'fee_application_id' => $params['fee_application_id'], + 'theme' => $params['theme'], + 'code' => $params['code'], + 'bill_num' => $params['bill_num'], + 'pay_type' => $params['pay_type'], + 'content' => $params['content'], + 'annex' => $params['annex'], + 'create_user' => $params['create_user'], + 'create_time' => $params['create_time'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除财务管理--费用报销单 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public static function delete(array $params): bool + { + return FinancialExpenseReimbursement::destroy($params['id']); + } + + + /** + * @notes 获取财务管理--费用报销单详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public static function detail($params): array + { + return FinancialExpenseReimbursement::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/generate/php/app/adminapi/logic/financial/FinancialTravelReimbursementLogic.php b/generate/php/app/adminapi/logic/financial/FinancialTravelReimbursementLogic.php new file mode 100644 index 0000000..ff63e0d --- /dev/null +++ b/generate/php/app/adminapi/logic/financial/FinancialTravelReimbursementLogic.php @@ -0,0 +1,124 @@ + $params['code'], + 'approve_dept' => $params['approve_dept'], + 'cost_type' => $params['cost_type'], + 'pay_type' => $params['pay_type'], + 'tax_deductible_amount' => $params['tax_deductible_amount'], + 'bill_num' => $params['bill_num'], + 'fee_application_id' => $params['fee_application_id'], + 'content' => $params['content'], + 'create_user' => $params['create_user'], + 'create_time' => $params['create_time'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 编辑财务管理--差旅费报销单 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public static function edit(array $params): bool + { + Db::startTrans(); + try { + FinancialTravelReimbursement::where('id', $params['id'])->update([ + 'code' => $params['code'], + 'approve_dept' => $params['approve_dept'], + 'cost_type' => $params['cost_type'], + 'pay_type' => $params['pay_type'], + 'tax_deductible_amount' => $params['tax_deductible_amount'], + 'bill_num' => $params['bill_num'], + 'fee_application_id' => $params['fee_application_id'], + 'content' => $params['content'], + 'create_user' => $params['create_user'], + 'create_time' => $params['create_time'] + ]); + + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + self::setError($e->getMessage()); + return false; + } + } + + + /** + * @notes 删除财务管理--差旅费报销单 + * @param array $params + * @return bool + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public static function delete(array $params): bool + { + return FinancialTravelReimbursement::destroy($params['id']); + } + + + /** + * @notes 获取财务管理--差旅费报销单详情 + * @param $params + * @return array + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public static function detail($params): array + { + return FinancialTravelReimbursement::findOrEmpty($params['id'])->toArray(); + } +} \ No newline at end of file diff --git a/generate/php/app/adminapi/validate/financial/FinancialExpenseReimbursementValidate.php b/generate/php/app/adminapi/validate/financial/FinancialExpenseReimbursementValidate.php new file mode 100644 index 0000000..836608d --- /dev/null +++ b/generate/php/app/adminapi/validate/financial/FinancialExpenseReimbursementValidate.php @@ -0,0 +1,112 @@ + 'require', + 'contract_id' => 'require', + 'fee_application_id' => 'require', + 'theme' => 'require', + 'code' => 'require', + 'bill_num' => 'require', + 'pay_type' => 'require', + 'content' => 'require', + 'create_user' => 'require', + 'create_time' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'contract_id' => '合同id', + 'fee_application_id' => '费用申请id', + 'theme' => '单据主题', + 'code' => '单据编号', + 'bill_num' => '单据张数', + 'pay_type' => '支付方式', + 'content' => '事由', + 'create_user' => '申请人员', + 'create_time' => '报销日期', + ]; + + + /** + * @notes 添加场景 + * @return FinancialExpenseReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneAdd() + { + return $this->only(['contract_id','fee_application_id','theme','code','bill_num','pay_type','content','create_user','create_time']); + } + + + /** + * @notes 编辑场景 + * @return FinancialExpenseReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneEdit() + { + return $this->only(['id','contract_id','fee_application_id','theme','code','bill_num','pay_type','content','create_user','create_time']); + } + + + /** + * @notes 删除场景 + * @return FinancialExpenseReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return FinancialExpenseReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/generate/php/app/adminapi/validate/financial/FinancialTravelReimbursementValidate.php b/generate/php/app/adminapi/validate/financial/FinancialTravelReimbursementValidate.php new file mode 100644 index 0000000..ca4911d --- /dev/null +++ b/generate/php/app/adminapi/validate/financial/FinancialTravelReimbursementValidate.php @@ -0,0 +1,114 @@ + 'require', + 'code' => 'require', + 'approve_dept' => 'require', + 'cost_type' => 'require', + 'pay_type' => 'require', + 'tax_deductible_amount' => 'require', + 'bill_num' => 'require', + 'fee_application_id' => 'require', + 'content' => 'require', + 'create_user' => 'require', + 'create_time' => 'require', + ]; + + + /** + * 参数描述 + * @var string[] + */ + protected $field = [ + 'id' => 'id', + 'code' => '单据编号', + 'approve_dept' => '审批部门', + 'cost_type' => '费用类别', + 'pay_type' => '支付方式', + 'tax_deductible_amount' => '可抵扣税额', + 'bill_num' => '附单据张数', + 'fee_application_id' => '关联费用申请', + 'content' => '事由', + 'create_user' => '申请人', + 'create_time' => '申请日期', + ]; + + + /** + * @notes 添加场景 + * @return FinancialTravelReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneAdd() + { + return $this->only(['code','approve_dept','cost_type','pay_type','tax_deductible_amount','bill_num','fee_application_id','content','create_user','create_time']); + } + + + /** + * @notes 编辑场景 + * @return FinancialTravelReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneEdit() + { + return $this->only(['id','code','approve_dept','cost_type','pay_type','tax_deductible_amount','bill_num','fee_application_id','content','create_user','create_time']); + } + + + /** + * @notes 删除场景 + * @return FinancialTravelReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneDelete() + { + return $this->only(['id']); + } + + + /** + * @notes 详情场景 + * @return FinancialTravelReimbursementValidate + * @author likeadmin + * @date 2024/03/28 14:45 + */ + public function sceneDetail() + { + return $this->only(['id']); + } + +} \ No newline at end of file diff --git a/generate/php/app/common/model/financial/FinancialExpenseReimbursement.php b/generate/php/app/common/model/financial/FinancialExpenseReimbursement.php new file mode 100644 index 0000000..86659b3 --- /dev/null +++ b/generate/php/app/common/model/financial/FinancialExpenseReimbursement.php @@ -0,0 +1,34 @@ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/generate/vue/src/views/financial_expense_reimbursement/index.vue b/generate/vue/src/views/financial_expense_reimbursement/index.vue new file mode 100644 index 0000000..f14365e --- /dev/null +++ b/generate/vue/src/views/financial_expense_reimbursement/index.vue @@ -0,0 +1,153 @@ + + + + diff --git a/generate/vue/src/views/financial_travel_reimbursement/edit.vue b/generate/vue/src/views/financial_travel_reimbursement/edit.vue new file mode 100644 index 0000000..136f0d6 --- /dev/null +++ b/generate/vue/src/views/financial_travel_reimbursement/edit.vue @@ -0,0 +1,190 @@ + + + diff --git a/generate/vue/src/views/financial_travel_reimbursement/index.vue b/generate/vue/src/views/financial_travel_reimbursement/index.vue new file mode 100644 index 0000000..7a9e3eb --- /dev/null +++ b/generate/vue/src/views/financial_travel_reimbursement/index.vue @@ -0,0 +1,150 @@ + + + + diff --git a/src/api/financial_expense_reimbursement.ts b/src/api/financial_expense_reimbursement.ts index d376881..5d75431 100644 --- a/src/api/financial_expense_reimbursement.ts +++ b/src/api/financial_expense_reimbursement.ts @@ -23,4 +23,15 @@ export function apiFinancialExpenseReimbursementDelete(params: any) { // 财务管理--费用报销单详情 export function apiFinancialExpenseReimbursementDetail(params: any) { return request.get({ url: '/financial.financial_expense_reimbursement/detail', params }) +} + +// 财务管理--费用报销单列表 +export function apiFinancialExpenseReimbursementDetailLists(params: any) { + return request.get({ url: '/financial.financial_expense_reimbursement_detail/lists', params }) +} + + +// 删除财务管理--费用报销单 +export function apiFinancialExpenseReimbursementDetailDelete(params: any) { + return request.post({ url: '/financial.financial_expense_reimbursement_detail/delete', params }) } \ No newline at end of file diff --git a/src/api/financial_fee_application.ts b/src/api/financial_fee_application.ts index 48154bf..5fc3531 100644 --- a/src/api/financial_fee_application.ts +++ b/src/api/financial_fee_application.ts @@ -2,25 +2,35 @@ import request from '@/utils/request' // 财务管理--费用申请列表 export function apiFinancialFeeApplicationLists(params: any) { - return request.get({ url: '/financial.financial_fee_application/lists', params }) + return request.get({ url: '/financial.financial_fee_applications/lists', params }) } // 添加财务管理--费用申请 export function apiFinancialFeeApplicationAdd(params: any) { - return request.post({ url: '/financial.financial_fee_application/add', params }) + return request.post({ url: '/financial.financial_fee_applications/add', params }) } // 编辑财务管理--费用申请 export function apiFinancialFeeApplicationEdit(params: any) { - return request.post({ url: '/financial.financial_fee_application/edit', params }) + return request.post({ url: '/financial.financial_fee_applications/edit', params }) } // 删除财务管理--费用申请 export function apiFinancialFeeApplicationDelete(params: any) { - return request.post({ url: '/financial.financial_fee_application/delete', params }) + return request.post({ url: '/financial.financial_fee_applications/delete', params }) } // 财务管理--费用申请详情 export function apiFinancialFeeApplicationDetail(params: any) { - return request.get({ url: '/financial.financial_fee_application/detail', params }) + return request.get({ url: '/financial.financial_fee_applications/detail', params }) +} + +// 财务管理--费用申请列表 +export function apiFinancialFeeApplicationDetailLists(params: any) { + return request.get({ url: '/financial.financial_fee_application_detail/lists', params }) +} + +// 删除财务管理--费用申请 +export function apiFinancialFeeApplicationDetailDelete(params: any) { + return request.post({ url: '/financial.financial_fee_application_detail/delete', params }) } \ No newline at end of file diff --git a/src/api/financial_travel_reimbursement.ts b/src/api/financial_travel_reimbursement.ts new file mode 100644 index 0000000..a799f5b --- /dev/null +++ b/src/api/financial_travel_reimbursement.ts @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +// 财务管理--差旅费报销单列表 +export function apiFinancialTravelReimbursementLists(params: any) { + return request.get({ url: '/financial.financial_travel_reimbursement/lists', params }) +} + +// 添加财务管理--差旅费报销单 +export function apiFinancialTravelReimbursementAdd(params: any) { + return request.post({ url: '/financial.financial_travel_reimbursement/add', params }) +} + +// 编辑财务管理--差旅费报销单 +export function apiFinancialTravelReimbursementEdit(params: any) { + return request.post({ url: '/financial.financial_travel_reimbursement/edit', params }) +} + +// 删除财务管理--差旅费报销单 +export function apiFinancialTravelReimbursementDelete(params: any) { + return request.post({ url: '/financial.financial_travel_reimbursement/delete', params }) +} + +// 财务管理--差旅费报销单详情 +export function apiFinancialTravelReimbursementDetail(params: any) { + return request.get({ url: '/financial.financial_travel_reimbursement/detail', params }) +} \ No newline at end of file diff --git a/src/components/dialogTable/dialogTableConfig.ts b/src/components/dialogTable/dialogTableConfig.ts index 3fbba90..95d285d 100644 --- a/src/components/dialogTable/dialogTableConfig.ts +++ b/src/components/dialogTable/dialogTableConfig.ts @@ -607,3 +607,38 @@ export const financial_budget_doc: Iconfig = { { issue_date: "下达日期" }, ], }; + + +import { apiFinancialFeeApplicationLists } from '@/api/financial_fee_application' + + +export const financial_fee_application: Iconfig = { + fetchFn: apiFinancialFeeApplicationLists, + serchList: [ + { + label: "单据主题", + value: "theme", + }, + { + label: "单据编号", + value: "code", + }, + { + label: "申请人", + value: "create_user", + }, + ], + tableList: [ + { theme: "单据主题" }, + { code: "单据编号" }, + { days: "借款天数" }, + { create_user: "申请人" }, + { total_amount: "申请金额" }, + { create_time: "申请日期" }, + { total_bill_num: "票据总张数" }, + { remark: "备注" }, + ], +}; + + + diff --git a/src/components/formTable/index.vue b/src/components/formTable/index.vue index 362267f..c797dfe 100644 --- a/src/components/formTable/index.vue +++ b/src/components/formTable/index.vue @@ -33,6 +33,8 @@ 暂无数据,点击添加 + + + diff --git a/src/views/financial_fee_application/detail.js b/src/views/financial_fee_application/detail.js new file mode 100644 index 0000000..f0fc748 --- /dev/null +++ b/src/views/financial_fee_application/detail.js @@ -0,0 +1,73 @@ +import { apiFinancialFeeApplicationDetailLists } from '@/api/financial_fee_application' + + +const detailConfig = { + title: "财务管理--费用申请", + config: [ + { + label: "单据主题", + value: "theme" + }, + { + label: "单据编号", + value: "code" + }, + { + label: "单据编号", + value: "code" + }, + { + label: "申请金额", + value: "total_amount" + }, + { + label: "票据总张数", + value: "total_bill_num" + }, + { + label: "备注", + value: "remark" + }, + + + { + label: "申请人", + value: "create_user" + }, + { + label: "申请时间", + value: "create_time" + }, + + + ], + table: { + title: "申请明细", + tableConfig: [ + { + label: "科目类别", + value: 'subject_category_text', + + + }, + { + label: "票据张数", + value: 'bill_num' + }, + { + label: "申请金额", + value: 'amount', + }, + { + label: "备注", + value: 'remark', + }, + + + ], + query: 'fee_application_id', + fetchFun: apiFinancialFeeApplicationDetailLists, + } + +} +export default detailConfig; \ No newline at end of file diff --git a/src/views/financial_fee_application/edit.vue b/src/views/financial_fee_application/edit.vue index ad0e778..22afb6a 100644 --- a/src/views/financial_fee_application/edit.vue +++ b/src/views/financial_fee_application/edit.vue @@ -1,32 +1,48 @@