|
@@ -0,0 +1,14 @@
|
|
|
+import { errorCatcher, errorHandle, filter } from 'base-core-lib'
|
|
|
+import { appRx } from '../defalutConfig/indexRx'
|
|
|
+import {
|
|
|
+ API_GET_PURCHASING_LIST,
|
|
|
+ API_POST_PURCHASING_LIST,
|
|
|
+ API_POST_PURCHASING_CLOSEPOSITION,
|
|
|
+
|
|
|
+} from '@/api/V2/purchasingManagement'
|
|
|
+//采购详情列表
|
|
|
+export const detailsList = appRx.get(API_GET_PURCHASING_LIST, errorCatcher, errorHandle, filter)
|
|
|
+//采购详情成交
|
|
|
+export const chengList = appRx.post(API_POST_PURCHASING_LIST, errorCatcher, errorHandle, filter)
|
|
|
+//采购详情平仓
|
|
|
+export const closePositionList = appRx.post(API_POST_PURCHASING_CLOSEPOSITION, errorCatcher, errorHandle,filter)
|