mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-11-09 06:38:44 +08:00
✨ CRM:增加回款的待办事项逻辑
This commit is contained in:
@@ -64,3 +64,8 @@ export const exportReceivable = async (params) => {
|
||||
export const submitReceivable = async (id: number) => {
|
||||
return await request.put({ url: `/crm/receivable/submit?id=${id}` })
|
||||
}
|
||||
|
||||
// 获得待审核回款数量
|
||||
export const getAuditReceivableCount = async () => {
|
||||
return await request.get({ url: '/crm/receivable/audit-count' })
|
||||
}
|
||||
|
||||
@@ -67,3 +67,8 @@ export const deleteReceivablePlan = async (id: number) => {
|
||||
export const exportReceivablePlan = async (params) => {
|
||||
return await request.download({ url: `/crm/receivable-plan/export-excel`, params })
|
||||
}
|
||||
|
||||
// 获得待回款提醒数量
|
||||
export const getReceivablePlanRemindCount = async () => {
|
||||
return await request.get({ url: '/crm/receivable-plan/remind-count' })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user