feat: 收付款操作

This commit is contained in:
砂糖
2025-08-13 16:01:07 +08:00
parent f6fdc5ff37
commit a4d1734e43
8 changed files with 428 additions and 40 deletions

View File

@@ -42,3 +42,12 @@ export function delPayable(payableId) {
method: 'delete'
})
}
// 付款
export function updatePaidAmount(data) {
return request({
url: '/klp/payable/updatePaidAmount',
method: 'post',
data: data
})
}

View File

@@ -42,3 +42,12 @@ export function delReceivable(receivableId) {
method: 'delete'
})
}
// 收款
export function updatePaidAmount(data) {
return request({
url: '/klp/receivable/updatePaidAmount',
method: 'post',
data: data
})
}