|
@@ -21,7 +21,8 @@ import {
|
|
|
API_POST_CONFIRMATIONSHEET_ADD,
|
|
|
API_GET_GETINFO,
|
|
|
API_POST_CONFIRMATIONSHEET_DELETE,
|
|
|
- API_GET_STAFF
|
|
|
+ API_GET_STAFF,
|
|
|
+ API_GET_STAFF_FIND
|
|
|
} from '@/api/V2/contract'
|
|
|
// 列表
|
|
|
export const getList = appRx.get(API_GET_CONTRACT_TENANT, errorCatcher, errorHandle, filter)
|
|
@@ -48,6 +49,8 @@ export const deletecontract = appRx.post(API_POST_CONTRACT_DELETE, errorCatcher,
|
|
|
export const editInfo = appRx.post(API_POST_EDITINFO, errorCatcher, errorHandle, filter)
|
|
|
//获取负责人
|
|
|
export const getstaff = appRx.get(API_GET_STAFF, errorCatcher, errorHandle, filter)
|
|
|
+//获取现货采购负责人
|
|
|
+export const getstafffind = appRx.get(API_GET_STAFF_FIND, errorCatcher, errorHandle, filter)
|
|
|
//运输任务-添加-根据仓库类型选库名
|
|
|
export const getwarehousename = appRx.get(API_GET_TRAN_TASK_WAREHOUSE, errorCatcher, errorHandle, filter)
|
|
|
|