|
@@ -4,6 +4,10 @@ import {
|
|
API_GET_SALE_ORDER_LIST,
|
|
API_GET_SALE_ORDER_LIST,
|
|
API_POST_SALE_ORDER_DEAL,
|
|
API_POST_SALE_ORDER_DEAL,
|
|
API_POST_SALE_CLOSEPOSITION,
|
|
API_POST_SALE_CLOSEPOSITION,
|
|
|
|
+ API_POST_ADUIT_SALE,
|
|
|
|
+ API_GET_ADUIT_CONTRACTNO,
|
|
|
|
+ API_POST_EDITSTATUS,
|
|
|
|
+ API_POST_DELETESALE,
|
|
API_GET_SALEPLAN_LIST,
|
|
API_GET_SALEPLAN_LIST,
|
|
API_GET_SALEPLAN_LOOK,
|
|
API_GET_SALEPLAN_LOOK,
|
|
API_POST_SALEPLAN_ADD,
|
|
API_POST_SALEPLAN_ADD,
|
|
@@ -12,11 +16,11 @@ import {
|
|
API_POST_SALEPLAN_EDITSTATUS,
|
|
API_POST_SALEPLAN_EDITSTATUS,
|
|
} from '@/api/V2/salesManagement'
|
|
} from '@/api/V2/salesManagement'
|
|
// import { API_GET_PROCUREMENT_LOOK } from '../../api/V2/purchasingManagement'
|
|
// import { API_GET_PROCUREMENT_LOOK } from '../../api/V2/purchasingManagement'
|
|
-//销售详情列表
|
|
|
|
|
|
+//销售订单列表
|
|
export const detailsList = appRx.get(API_GET_SALE_ORDER_LIST, errorCatcher, errorHandle, filter)
|
|
export const detailsList = appRx.get(API_GET_SALE_ORDER_LIST, errorCatcher, errorHandle, filter)
|
|
-//销售详情成交
|
|
|
|
|
|
+//销售订单成交
|
|
export const chengList = appRx.post(API_POST_SALE_ORDER_DEAL, errorCatcher, errorHandle, filter)
|
|
export const chengList = appRx.post(API_POST_SALE_ORDER_DEAL, errorCatcher, errorHandle, filter)
|
|
-//销售详情平仓
|
|
|
|
|
|
+//销售订单平仓
|
|
export const closePositionList = appRx.post(API_POST_SALE_CLOSEPOSITION, errorCatcher, errorHandle,filter)
|
|
export const closePositionList = appRx.post(API_POST_SALE_CLOSEPOSITION, errorCatcher, errorHandle,filter)
|
|
//销售计划列表
|
|
//销售计划列表
|
|
export const salePlan = appRx.get(API_GET_SALEPLAN_LIST,errorCatcher, errorHandle, filter)
|
|
export const salePlan = appRx.get(API_GET_SALEPLAN_LIST,errorCatcher, errorHandle, filter)
|
|
@@ -30,3 +34,11 @@ export const saleEdit = appRx.post(API_POST_SALEPLAN_EDIT, errorCatcher, errorHa
|
|
export const saleDel = appRx.post(API_POST_SALEPLAN_DELETE, errorCatcher,errorHandle,filter)
|
|
export const saleDel = appRx.post(API_POST_SALEPLAN_DELETE, errorCatcher,errorHandle,filter)
|
|
//销售状态,基差,单价修改
|
|
//销售状态,基差,单价修改
|
|
export const saleEditOther = appRx.post(API_POST_SALEPLAN_EDITSTATUS, errorCatcher,errorHandle,filter)
|
|
export const saleEditOther = appRx.post(API_POST_SALEPLAN_EDITSTATUS, errorCatcher,errorHandle,filter)
|
|
|
|
+//销售订单审核
|
|
|
|
+export const aduitsale = appRx.post(API_POST_ADUIT_SALE, errorCatcher,errorHandle,filter)
|
|
|
|
+//销售订单合同编号下拉列表
|
|
|
|
+export const aduitcontractno = appRx.get(API_GET_ADUIT_CONTRACTNO, errorCatcher,errorHandle,filter)
|
|
|
|
+//销售订单flag0 补充定金 1解冻定金 2完成 3更改基差
|
|
|
|
+export const editStatus = appRx.post(API_POST_EDITSTATUS, errorCatcher,errorHandle,filter)
|
|
|
|
+//销售订单删除
|
|
|
|
+export const deletesale = appRx.post(API_POST_DELETESALE, errorCatcher,errorHandle,filter)
|