|
@ -116,3 +116,8 @@ export const exportCustomerStatementCompareDetail = async (params) => { |
|
|
export const updateAdjustmentAmount = async (id: number, masterId: number, amount: number) => { |
|
|
export const updateAdjustmentAmount = async (id: number, masterId: number, amount: number) => { |
|
|
return await request.get({ url: `wms/customer-tool-apport-statement-detail/updateAdjustmentAmount?id=` + id + '&masterId=' + masterId + '&amount=' + amount }) |
|
|
return await request.get({ url: `wms/customer-tool-apport-statement-detail/updateAdjustmentAmount?id=` + id + '&masterId=' + masterId + '&amount=' + amount }) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 客户对账单直接创建开票申请查询子分页数据
|
|
|
|
|
|
export const pageInvoice = async (params) => { |
|
|
|
|
|
return await request.get({ url: `/wms/customer-statement-detail/pageInvoice`, params }) |
|
|
|
|
|
} |
|
|