|
@@ -13,7 +13,8 @@ import {
|
|
|
API_GET_ADUIT_CONTRACTNO,
|
|
|
API_POST_EDITSTATUS,
|
|
|
API_POST_PROCUREMENT_EDITSTATUS,
|
|
|
- API_POST_DELETEPURCHASE
|
|
|
+ API_POST_DELETEPURCHASE,
|
|
|
+ API_GET_PRICE_PURCHASE
|
|
|
} from '@/api/V2/purchasingManagement'
|
|
|
// import { API_GET_PROCUREMENT_LOOK } from '../../api/V2/purchasingManagement'
|
|
|
//采购详情列表
|
|
@@ -42,3 +43,5 @@ export const editStatus = appRx.post(API_POST_EDITSTATUS, errorCatcher,errorHand
|
|
|
export const procurementEditOther = appRx.post(API_POST_PROCUREMENT_EDITSTATUS, errorCatcher,errorHandle,filter)
|
|
|
//采购订单删除
|
|
|
export const deletepurchase = appRx.post(API_POST_DELETEPURCHASE, errorCatcher,errorHandle,filter)
|
|
|
+//采购订单平仓查看成交价
|
|
|
+export const getTransactionPriceList = appRx.get(API_GET_PRICE_PURCHASE, errorCatcher,errorHandle,filter)
|