CRM:完善回款

(cherry picked from commit 41e5cf667e)
This commit is contained in:
puhui999
2024-02-25 00:35:50 +08:00
committed by shizhong
parent 0ee76778c5
commit 0a6af3e862
5 changed files with 293 additions and 194 deletions

View File

@ -12,7 +12,6 @@ export interface ReceivableVO {
returnType: string
price: number
ownerUserId: number
sort: number
remark: string
}
@ -50,3 +49,8 @@ export const deleteReceivable = async (id: number) => {
export const exportReceivable = async (params) => {
return await request.download({ url: `/crm/receivable/export-excel`, params })
}
// 提交审核
export const submitReceivable = async (id: number) => {
return await request.put({ url: `/crm/receivable/submit?id=${id}` })
}