|
@@ -10,7 +10,8 @@ import {
|
|
|
API_GET_WAREHOUSE_NO,
|
|
|
API_POST_TRAN_DEL,
|
|
|
API_GET_TRAN_EXAMINE,
|
|
|
- API_GET_TRAN_EDIT
|
|
|
+ API_GET_TRAN_EDIT,
|
|
|
+ API_POST_OUT_PUT
|
|
|
} from '@/api/V2/taskspost'
|
|
|
//运输任务列表
|
|
|
export const gain = appRx.get(API_GET_TRAN_LIST, errorCatcher, errorHandle, filter)
|
|
@@ -30,3 +31,5 @@ export const deltran = appRx.post(API_POST_TRAN_DEL, errorCatcher, errorHandle,
|
|
|
export const examinetran = appRx.get(API_GET_TRAN_EXAMINE, errorCatcher, errorHandle, filter)
|
|
|
//运输任务-编辑
|
|
|
export const edittran = appRx.post(API_GET_TRAN_EDIT, errorCatcher, errorHandle, filter)
|
|
|
+//出入库任务-编辑
|
|
|
+export const addoreditoutput = appRx.post(API_POST_OUT_PUT, errorCatcher, errorHandle, filter)
|