|
@@ -21,7 +21,8 @@ import {
|
|
API_POST_INOUTWAREHOUSETASK,
|
|
API_POST_INOUTWAREHOUSETASK,
|
|
API_GET_OUT_MOVELOOK,
|
|
API_GET_OUT_MOVELOOK,
|
|
API_POST_OUT_STATES,
|
|
API_POST_OUT_STATES,
|
|
- API_POST_OUT_MOVESTATES
|
|
|
|
|
|
+ API_POST_OUT_MOVESTATES,
|
|
|
|
+ API_POST_DEL_HAULAGE_STAGE
|
|
} from '@/api/V2/taskspost'
|
|
} from '@/api/V2/taskspost'
|
|
//运输任务列表
|
|
//运输任务列表
|
|
export const gain = appRx.get(API_GET_TRAN_LIST, errorCatcher, errorHandle, filter)
|
|
export const gain = appRx.get(API_GET_TRAN_LIST, errorCatcher, errorHandle, filter)
|
|
@@ -62,4 +63,6 @@ export const moveLook = appRx.get(API_GET_OUT_MOVELOOK, errorCatcher, errorHandl
|
|
//运输任务状态修改
|
|
//运输任务状态修改
|
|
export const states = appRx.post(API_POST_OUT_STATES, errorCatcher, errorHandle, filter)
|
|
export const states = appRx.post(API_POST_OUT_STATES, errorCatcher, errorHandle, filter)
|
|
//移库任务状态修改
|
|
//移库任务状态修改
|
|
-export const movestates = appRx.post(API_POST_OUT_MOVESTATES, errorCatcher, errorHandle, filter)
|
|
|
|
|
|
+export const movestates = appRx.post(API_POST_OUT_MOVESTATES, errorCatcher, errorHandle, filter)
|
|
|
|
+//删除运输阶段
|
|
|
|
+export const delhaulagestage = appRx.post(API_POST_DEL_HAULAGE_STAGE, errorCatcher, errorHandle, filter)
|