This commit is contained in:
2024-10-16 09:55:22 +08:00
parent 9fc6f013cc
commit 9699e90ab3
21 changed files with 1621 additions and 829 deletions

View File

@@ -50,6 +50,22 @@ export function getOrderById(query) {
params: query
})
}
// 订单进度-获取普通模式订单剩余数量
export function getOrderRemainNum(id) {
return request({
url: '/base/order/getOrderRemainNum?id=' + id,
method: 'get'
})
}
// 订单进度-获取工艺模式订单预计消耗物料(计算后)
export function getMaterialCostOrder(data) {
return request({
url: '/extend/process-retrospect/getMaterialCostOrder',
method: 'post',
data: data
})
}
// 获得工艺流程列表
export function getProcessFlowList() {
@@ -59,6 +75,16 @@ export function getProcessFlowList() {
})
}
// 获得工艺流程列表
export function getProcessFlowPage(query) {
return request({
url: '/extend/process-flow/page',
method: 'get',
params: query
})
}
// 创建订单
export function orderCreate(data) {
return request({