修复采购和集成酸轧细节

This commit is contained in:
2026-06-29 10:18:26 +08:00
parent 59dad19296
commit 8c7cce90ba
18 changed files with 326 additions and 482 deletions

View File

@@ -132,19 +132,12 @@ export function refreshArrival(planId) {
})
}
// 某计划的到货上传批次(每次上传一条
export function listDeliveryBatches(planId) {
// 厂商历史记忆(手填自动补全
export function listManufacturers(keyword) {
return request({
url: `/erp/purchasePlan/${planId}/deliveryBatches`,
method: 'get'
})
}
// 某批次的到货明细
export function listDeliveryByBatch(batchId) {
return request({
url: `/erp/purchasePlan/deliveryBatch/${batchId}`,
method: 'get'
url: '/erp/purchasePlan/manufacturers',
method: 'get',
params: { keyword }
})
}