|
@@ -15,6 +15,7 @@ import {
|
|
|
API_POST_SALEPLAN_DELETE,
|
|
|
API_POST_SALEPLAN_EDITSTATUS,
|
|
|
API_GET_GETPRICELIST,
|
|
|
+ API_GET_GETSALEPRICELIST
|
|
|
} from '@/api/V2/salesManagement'
|
|
|
// import { API_GET_PROCUREMENT_LOOK } from '../../api/V2/purchasingManagement'
|
|
|
//销售订单列表
|
|
@@ -44,4 +45,6 @@ export const editStatus = appRx.post(API_POST_EDITSTATUS, errorCatcher,errorHand
|
|
|
//销售订单删除
|
|
|
export const deletesale = appRx.post(API_POST_DELETESALE, errorCatcher,errorHandle,filter)
|
|
|
//成交价列表
|
|
|
-export const getpricelist = appRx.get(API_GET_GETPRICELIST, errorCatcher,errorHandle,filter)
|
|
|
+export const getpricelist = appRx.get(API_GET_GETPRICELIST, errorCatcher,errorHandle,filter)
|
|
|
+//成交价列表销售
|
|
|
+export const getsalepricelist = appRx.get(API_GET_GETSALEPRICELIST, errorCatcher,errorHandle,filter)
|