Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wenHuaBu_adminServer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
node_server
wenHuaBu_adminServer
Commits
f8cff672
Commit
f8cff672
authored
Nov 01, 2024
by
chenjinjing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据导出、审批历史、批量开票确认
parent
168c9933
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
140 additions
and
0 deletions
+140
-0
order.ts
src/biz/member/order.ts
+0
-0
outPutConfig.ts
src/config/outPutConfig.ts
+63
-0
router.ts
src/routers/order/router.ts
+56
-0
router.ts
src/routers/public/router.ts
+21
-0
No files found.
src/biz/member/order.ts
View file @
f8cff672
This diff is collapsed.
Click to expand it.
src/config/outPutConfig.ts
View file @
f8cff672
...
@@ -68,4 +68,67 @@ export enum AUDITINGCOLUMNS {
...
@@ -68,4 +68,67 @@ export enum AUDITINGCOLUMNS {
}
}
/**
* 费用核对导出列-发票管理
*/
export
enum
CONFIRMRECEIPTCOLUMNS
{
"单位/个人名称"
=
"name"
,
会员类别
=
"memberCategory"
,
所缴周期
=
"orderCycle"
,
缴费金额
=
"money"
,
支付订单
=
"paymentNum"
,
支付方式
=
"paymentMethod"
,
"单位代码/个人身份证"
=
"card"
,
备注
=
"desc"
,
发票邮箱
=
"invoiceMail"
,
"单位/个人邮箱"
=
"mail"
,
提交时间
=
"operationTime"
,
//上传转账凭证的时间
}
/**
* 待开发票导出列-发票管理
*/
export
enum
BILLSTATECOLUMNS
{
"单位/个人名称"
=
"name"
,
会员类别
=
"memberCategory"
,
所缴周期
=
"orderCycle"
,
缴费金额
=
"money"
,
支付订单
=
"paymentNum"
,
支付方式
=
"paymentMethod"
,
"单位代码/个人身份证"
=
"card"
,
备注
=
"desc"
,
发票邮箱
=
"invoiceMail"
,
"单位/个人邮箱"
=
"mail"
,
审核时间
=
""
,
//什么时候从费用核对通过审核时间
提交时间
=
"operationTime"
,
//上传转账凭证的时间
支付时间
=
""
//微信支付的时间
}
/**
* 已开发票导出列-发票管理
*/
export
enum
INVOICEDCOLUMNS
{
"单位/个人名称"
=
"name"
,
会员类别
=
"memberCategory"
,
所缴周期
=
"orderCycle"
,
缴费金额
=
"money"
,
支付订单
=
"paymentNum"
,
支付方式
=
"paymentMethod"
,
"单位代码/个人身份证"
=
"card"
,
备注
=
"desc"
,
发票邮箱
=
"invoiceMail"
,
"单位/个人邮箱"
=
"mail"
,
审核时间
=
""
,
//什么时候从费用核对通过审核时间
提交时间
=
"operationTime"
,
//上传转账凭证的时间
支付时间
=
""
//微信支付的时间
}
src/routers/order/router.ts
View file @
f8cff672
...
@@ -91,6 +91,22 @@ export const Config = {
...
@@ -91,6 +91,22 @@ export const Config = {
bindBiz
:
orderBiz
.
confirmReceiptOut
bindBiz
:
orderBiz
.
confirmReceiptOut
},
},
{
{
apiName
:
"财务核对-数据导出"
,
subUrl
:
'/order/invoice/examine/outputconfirmreceipt'
,
param
:[
{
key
:
"exportColumns"
,
type
:
"[]"
,
desc
:
"导出数据列"
}
],
bindBiz
:
orderBiz
.
outPutConfirmReceipt
},
{
apiName
:
"财务核对-审批历史"
,
subUrl
:
'/order/invoice/examine/confirmreceipthistory'
,
param
:[
{
key
:
"id"
,
type
:
"String"
,
desc
:
"订单id"
},
],
bindBiz
:
orderBiz
.
confirmReceiptHistory
},
{
apiName
:
"待开发票-上传发票 已开发票-修改发票"
,
apiName
:
"待开发票-上传发票 已开发票-修改发票"
,
subUrl
:
'/order/invoice/examine/upinvoice'
,
subUrl
:
'/order/invoice/examine/upinvoice'
,
param
:[
param
:[
...
@@ -108,6 +124,30 @@ export const Config = {
...
@@ -108,6 +124,30 @@ export const Config = {
// bindBiz:orderBiz.backInvoice
// bindBiz:orderBiz.backInvoice
// },
// },
{
{
apiName
:
"待开发票-数据导出"
,
subUrl
:
'/order/invoice/examine/outputbillstate'
,
param
:[
{
key
:
"exportColumns"
,
type
:
"[]"
,
desc
:
"导出数据列"
}
],
bindBiz
:
orderBiz
.
outPutBillState
},
{
apiName
:
"待开发票-审批历史"
,
subUrl
:
'/order/invoice/examine/billstatehistory'
,
param
:[
{
key
:
"id"
,
type
:
"String"
,
desc
:
"订单id"
},
],
bindBiz
:
orderBiz
.
billStateHistory
},
{
apiName
:
"待开发票-批量开票确认"
,
subUrl
:
'/order/invoice/examine/billstatebatchadopt'
,
param
:[
{
key
:
"idList"
,
type
:
"[String]"
,
desc
:
"批量通过的用户列表"
},
],
bindBiz
:
orderBiz
.
billStateBatchAdopt
},
{
apiName
:
"发票管理-已开发票"
,
apiName
:
"发票管理-已开发票"
,
subUrl
:
'/order/invoice/examine/invoicedlist'
,
subUrl
:
'/order/invoice/examine/invoicedlist'
,
param
:[
param
:[
...
@@ -126,6 +166,22 @@ export const Config = {
...
@@ -126,6 +166,22 @@ export const Config = {
bindBiz
:
orderBiz
.
invoicedList
bindBiz
:
orderBiz
.
invoicedList
},
},
{
{
apiName
:
"已开发票-数据导出"
,
subUrl
:
'/order/invoice/examine/outputinvoiced'
,
param
:[
{
key
:
"exportColumns"
,
type
:
"[]"
,
desc
:
"导出数据列"
}
],
bindBiz
:
orderBiz
.
outPutInvoiced
},
{
apiName
:
"已开发票-审批历史"
,
subUrl
:
'/order/invoice/examine/invoicedhistory'
,
param
:[
{
key
:
"id"
,
type
:
"String"
,
desc
:
"订单id"
},
],
bindBiz
:
orderBiz
.
invoicedHistory
},
{
apiName
:
"转账单号弹窗"
,
apiName
:
"转账单号弹窗"
,
subUrl
:
'/order/transferscreenshot'
,
subUrl
:
'/order/transferscreenshot'
,
param
:[
param
:[
...
...
src/routers/public/router.ts
View file @
f8cff672
...
@@ -315,6 +315,27 @@ export const Config = {
...
@@ -315,6 +315,27 @@ export const Config = {
param
:[],
param
:[],
defaultParam
:
enumConfig
.
MEMBERLEVELCHANGE
,
defaultParam
:
enumConfig
.
MEMBERLEVELCHANGE
,
bindBiz
:
publicBiz
.
setEnumInterface
bindBiz
:
publicBiz
.
setEnumInterface
},
{
apiName
:
"发票管理-费用核对导出列"
,
subUrl
:
'/confirmreceiptcolumns'
,
param
:[],
defaultParam
:
outPutConfig
.
CONFIRMRECEIPTCOLUMNS
,
bindBiz
:
publicBiz
.
setEnumInterface
},
{
apiName
:
"发票管理-待开发票导出列"
,
subUrl
:
'/billstatecolumns'
,
param
:[],
defaultParam
:
outPutConfig
.
BILLSTATECOLUMNS
,
bindBiz
:
publicBiz
.
setEnumInterface
},
{
apiName
:
"发票管理-已开发票导出列"
,
subUrl
:
'/invoicedcolumns'
,
param
:[],
defaultParam
:
outPutConfig
.
INVOICEDCOLUMNS
,
bindBiz
:
publicBiz
.
setEnumInterface
}
}
],
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment