删除frappe-gantt

This commit is contained in:
砂糖
2025-07-19 10:26:00 +08:00
parent 69e1178fee
commit df2d9a3025
7 changed files with 409 additions and 175 deletions

View File

@@ -42,3 +42,20 @@ export function delPurchasePlan(planId) {
method: 'delete'
})
}
// 获取推荐的采购计划
export function recommendPurchasePlan(orderId) {
return request({
url: '/wms/purchasePlan/recommend/' + orderId,
method: 'get'
})
}
// 创建采购计划(含明细)
export function createPurchasePlan(data) {
return request({
url: '/wms/purchasePlan/addWithDetails',
method: 'post',
data
})
}