|
@@ -24,7 +24,11 @@ import {
|
|
|
API_POST_CONFIRMATIONSHEET_DELETE,
|
|
|
API_GET_STAFF,
|
|
|
API_GET_STAFF_FIND,
|
|
|
- API_GET_CUSTOMERINFO
|
|
|
+ API_GET_CUSTOMERINFO,
|
|
|
+ API_GET_RECORDPAGE,
|
|
|
+ API_POST_ADDRECORD,
|
|
|
+ API_GET_IDENTITYBYCARD,
|
|
|
+ API_POST_RECORDEDIT
|
|
|
} from '@/api/V2/contract'
|
|
|
// 列表
|
|
|
export const getList = appRx.get(API_GET_CONTRACT_TENANT, errorCatcher, errorHandle, filter)
|
|
@@ -73,4 +77,16 @@ export const deletePriceConfirmationSheet = appRx.post(API_POST_CONFIRMATIONSHEE
|
|
|
//编辑时查看点价确认单
|
|
|
export const getInfo = appRx.get(API_GET_GETINFO, errorCatcher, errorHandle, filter)
|
|
|
// 客户
|
|
|
-export const getcustomerinfo = appRx.get(API_GET_CUSTOMERINFO, errorCatcher, errorHandle, filter)
|
|
|
+export const getcustomerinfo = appRx.get(API_GET_CUSTOMERINFO, errorCatcher, errorHandle, filter)
|
|
|
+
|
|
|
+// 代收合同记录
|
|
|
+export const selectCollectionWarehousingRecordPage = appRx.get(API_GET_RECORDPAGE, errorCatcher, errorHandle, filter)
|
|
|
+
|
|
|
+// 代收合同记录
|
|
|
+export const insertCollectionWarehousingRecord = appRx.post(API_POST_ADDRECORD, errorCatcher, errorHandle, filter)
|
|
|
+
|
|
|
+// 代收合同身份证号查询认证客户
|
|
|
+export const selectIdentityByCard = appRx.get(API_GET_IDENTITYBYCARD, errorCatcher, errorHandle, filter)
|
|
|
+
|
|
|
+// 代收合同记录编辑
|
|
|
+export const editCollectionWarehousingRecord = appRx.post(API_POST_RECORDEDIT, errorCatcher, errorHandle, filter)
|