|
|
@ -64,7 +64,8 @@ export default function (businessType, type) { |
|
|
|
service = "invoice_service"; |
|
|
|
} |
|
|
|
const queryUrl = `settleaccount/${service}/main-query`; |
|
|
|
const exportUrl = `settleaccount/invoice_service/export-detail`; |
|
|
|
const exportUrl = `settleaccount/invoice_service/export`; |
|
|
|
const exportGroupUrl = `settleaccount/invoice_service/export-detail`; |
|
|
|
const invoiceUrl = `settleaccount/${service}/generate-invoice`; |
|
|
|
const receivedUrl = `settleaccount/${service}/received`; |
|
|
|
const rejectUrl = `settleaccount/${service}/reject`; |
|
|
@ -73,6 +74,7 @@ export default function (businessType, type) { |
|
|
|
const importUrl = `settleaccount/${service}/excel-import`; |
|
|
|
const queryMethod = "POST"; |
|
|
|
const exportMethod = "POST"; |
|
|
|
const exportGroupMethod = "POST"; |
|
|
|
const invoiceMethod = "POST"; |
|
|
|
const receivedMethod = "POST"; |
|
|
|
const rejectMethod = "POST"; |
|
|
@ -150,6 +152,7 @@ export default function (businessType, type) { |
|
|
|
}, |
|
|
|
edit: { |
|
|
|
exportUrl, |
|
|
|
exportGroupUrl, |
|
|
|
invoiceUrl, |
|
|
|
receivedUrl, |
|
|
|
rejectUrl, |
|
|
@ -157,6 +160,7 @@ export default function (businessType, type) { |
|
|
|
approvalUrl, |
|
|
|
importUrl, |
|
|
|
exportMethod, |
|
|
|
exportGroupMethod, |
|
|
|
invoiceMethod, |
|
|
|
receivedMethod, |
|
|
|
rejectMethod, |
|
|
|