add 漏斗复位

This commit is contained in:
2025-02-28 13:23:56 +08:00
parent 5b2cfb84dc
commit ff3a20e1de
4 changed files with 129 additions and 3 deletions

View File

@@ -49,9 +49,9 @@ export const resumeMoveWasteFoilv3 = (flag, scode, ecode) => request({
data: {flag: flag, startPoint: scode, endPoint: ecode}
})
// 废箔搬运
export const startMoveWasteFoilv2 = (code) => request({
export const startMoveWasteFoilv2 = (code, sp) => request({
url:'api/pda/other/startMoveWasteFoil/v2',
data: {point_code: code}
data: {point_code: code, start_point: sp}
})
export const resumeMoveWasteFoilv2 = (flag, code) => request({
url:'api/pda/other/resumeMoveWasteFoil/v2',
@@ -200,4 +200,8 @@ export const getWeightCacheInfos = () => request({
export const doSubVolumeDown = (code) => request({
url:'api/pda/nbj/doSubVolumeDown',
data: {point_code: code}
})
export const getWastePointList = (type) => request({
url:'api/schBasePoint/getWastePointList?point_type=' + type,
method: 'get'
})