| | |
| | | settleRate?: string, |
| | | dispatchCount?: number, |
| | | settledAmount?: string, |
| | | actualSettlementAmount?: number, |
| | | invoiceStatus?: number, |
| | | deductionAmount?: number, |
| | | status?: number, |
| | | createBy?: string, |
| | | createTime?: string, |
| | | updateBy?: string, |
| | | updateTime?: string |
| | | reasonReduction?: string |
| | | items?: any |
| | | } |
| | | |
| | |
| | | export const getTmsArBill: requestType = (id) => { |
| | | return request({ |
| | | url: '/tms/tmsArBill/' + id, |
| | | method: 'get' |
| | | }) |
| | | } |
| | | export const cancelArBill: requestType = (id) => { |
| | | return request({ |
| | | url: '/tms/tmsArBill/cancelArBill/' + id, |
| | | method: 'get' |
| | | }) |
| | | } |
| | |
| | | download('/tms/tmsArBill/export', query); |
| | | }) |
| | | } |
| | | |
| | | /** |
| | | * 导出应收账单 |
| | | */ |
| | | export const exportArBillFormat: requestType = (query) => { |
| | | return new Promise<any>(() => { |
| | | download('/tms/tmsReceivableFee/exportArBillFormat', query); |
| | | }) |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 手动推送 |
| | | */ |
| | | export const manualPushTmsArBill: requestType = (id) => { |
| | | return request({ |
| | | url: '/tms/tmsArBill/manualPush/' + id, |
| | | method: 'post', |
| | | }) |
| | | } |
| | | /** |
| | | * 查询应收账单审核日志列表 |
| | | */ |
| | | export const listReceivableAuditLog:requestType = (query) => { |
| | | return request({ |
| | | url: '/tms/receivableAuditLog/list', |
| | | method:'get', |
| | | params:query |
| | | }) |
| | | } |
| | | |
| | | /** |
| | | * 作废 |
| | | */ |
| | | export const tmsArBillCancelPush: requestType = (id) => { |
| | | return request({ |
| | | url: '/tms/tmsArBill/cancelPush/' + id, |
| | | method: 'post', |
| | | }) |
| | | } |