|
@@ -25,7 +25,9 @@ import {
|
|
API_POST_ISSUE_APPROVAL,
|
|
API_POST_ISSUE_APPROVAL,
|
|
API_GET_SALE_OUT_CONTRACTNO,
|
|
API_GET_SALE_OUT_CONTRACTNO,
|
|
API_GET_PURCHASE_CONTRACTNO,
|
|
API_GET_PURCHASE_CONTRACTNO,
|
|
- API_GET_PURCHASE_IN_CONTRACTNO
|
|
|
|
|
|
+ API_GET_PURCHASE_IN_CONTRACTNO,
|
|
|
|
+ API_GET_SELECTORDER,
|
|
|
|
+ API_GET_SELECTSALEORDER
|
|
|
|
|
|
} from '@/api/V2/statisticalReport'
|
|
} from '@/api/V2/statisticalReport'
|
|
//采购入库报表
|
|
//采购入库报表
|
|
@@ -46,6 +48,8 @@ export const postreplanishent = appRx.post(API_POST_REPLANISHENT, errorCatcher,
|
|
export const postaudit = appRx.post(API_POST_AUDIT, errorCatcher, errorHandle, filter)
|
|
export const postaudit = appRx.post(API_POST_AUDIT, errorCatcher, errorHandle, filter)
|
|
//采购入库付款
|
|
//采购入库付款
|
|
export const postpaymoney = appRx.post(API_POST_PAYMONEY, errorCatcher, errorHandle, filter)
|
|
export const postpaymoney = appRx.post(API_POST_PAYMONEY, errorCatcher, errorHandle, filter)
|
|
|
|
+//采购入库报表头部
|
|
|
|
+export const getorder = appRx.get(API_GET_SELECTORDER, errorCatcher, errorHandle, filter)
|
|
//销售平仓审核
|
|
//销售平仓审核
|
|
export const postsaleaudit = appRx.post(API_POST_SALE_EXAMINE, errorCatcher, errorHandle, filter)
|
|
export const postsaleaudit = appRx.post(API_POST_SALE_EXAMINE, errorCatcher, errorHandle, filter)
|
|
//销售平仓列表
|
|
//销售平仓列表
|
|
@@ -81,5 +85,7 @@ export const salesbatchinvoicing = appRx.post(API_POST_SALES_BATCH_INVOICING, er
|
|
export const finalsettlementprice = appRx.post(API_POST_FINAL_SETTLEMENT_PRICE, errorCatcher, errorHandle, filter)
|
|
export const finalsettlementprice = appRx.post(API_POST_FINAL_SETTLEMENT_PRICE, errorCatcher, errorHandle, filter)
|
|
//销售出库审核
|
|
//销售出库审核
|
|
export const issueapproval = appRx.post(API_POST_ISSUE_APPROVAL, errorCatcher, errorHandle, filter)
|
|
export const issueapproval = appRx.post(API_POST_ISSUE_APPROVAL, errorCatcher, errorHandle, filter)
|
|
|
|
+//销售出库报表头部
|
|
|
|
+export const getsaleorder = appRx.get(API_GET_SELECTSALEORDER, errorCatcher, errorHandle, filter)
|
|
|
|
|
|
|
|
|