规程添加绑定功能
This commit is contained in:
@@ -33,6 +33,14 @@ export function getTimingSegByEncoilId(encoilId) {
|
||||
})
|
||||
}
|
||||
|
||||
// 计划详情 + SEG 实绩合并,后端一次返回,避免前端二次请求
|
||||
export function getPlanWithSeg(encoilId) {
|
||||
return request({
|
||||
url: '/sql-server-api/plans-with-seg/' + encoilId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
export function getTimingSegByHotcoilId(encoilId) {
|
||||
return request({
|
||||
url: '/sql-server-api/seg-by-hotcoil/' + encoilId,
|
||||
|
||||
@@ -15,3 +15,7 @@ export function countProcessCoilRecord(versionId) {
|
||||
export function upsertProcessCoilRecord(data) {
|
||||
return request({ url: '/wms/processCoilRecord/upsert', method: 'post', data })
|
||||
}
|
||||
|
||||
export function batchRebindCoilRecord(data) {
|
||||
return request({ url: '/wms/processCoilRecord/batchRebind', method: 'post', data })
|
||||
}
|
||||
|
||||
@@ -42,3 +42,4 @@ export function delProcessSpec(specId) {
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user