|
@@ -10,7 +10,9 @@ import {
|
|
|
API_GET_CLOSE,
|
|
|
API_POST_CLOAEAUDIT,
|
|
|
API_POST_CLOSEPAYMONEY,
|
|
|
- API_POST_CLOSECOLLMONEY
|
|
|
+ API_POST_CLOSECOLLMONEY,
|
|
|
+ API_POST_OPENINVOICE,
|
|
|
+ API_POST_BATCHOPENINVOICE
|
|
|
} from '@/api/V2/statisticalReport'
|
|
|
//采购入库报表
|
|
|
export const getpurchreceipt = appRx.get(API_GET_PURCHRECEIPT, errorCatcher, errorHandle, filter)
|
|
@@ -31,4 +33,8 @@ export const closeaudit = appRx.post(API_POST_CLOAEAUDIT, errorCatcher, errorHan
|
|
|
//采购平仓付款
|
|
|
export const closepaymoney = appRx.post(API_POST_CLOSEPAYMONEY, errorCatcher, errorHandle, filter)
|
|
|
//采购平仓收款
|
|
|
-export const closecollmoney = appRx.post(API_POST_CLOSECOLLMONEY, errorCatcher, errorHandle, filter)
|
|
|
+export const closecollmoney = appRx.post(API_POST_CLOSECOLLMONEY, errorCatcher, errorHandle, filter)
|
|
|
+//采购入库开发票
|
|
|
+export const postopeninvoice = appRx.post(API_POST_OPENINVOICE, errorCatcher, errorHandle, filter)
|
|
|
+//采购入库批量开发票
|
|
|
+export const postbatchopeninvoice = appRx.post(API_POST_BATCHOPENINVOICE, errorCatcher, errorHandle, filter)
|