|
@@ -12,7 +12,14 @@ import {
|
|
API_POST_CLOSEPAYMONEY,
|
|
API_POST_CLOSEPAYMONEY,
|
|
API_POST_CLOSECOLLMONEY,
|
|
API_POST_CLOSECOLLMONEY,
|
|
API_POST_OPENINVOICE,
|
|
API_POST_OPENINVOICE,
|
|
- API_POST_BATCHOPENINVOICE
|
|
|
|
|
|
+ API_POST_BATCHOPENINVOICE,
|
|
|
|
+ API_GET_SALELIST,
|
|
|
|
+ API_POST_CASHIER_PAYMENT,
|
|
|
|
+ API_POST_SALES_INVOICING,
|
|
|
|
+ API_POST_SALES_BATCH_INVOICING,
|
|
|
|
+ API_POST_FINAL_SETTLEMENT_PRICE,
|
|
|
|
+ API_POST_ISSUE_APPROVAL
|
|
|
|
+
|
|
} from '@/api/V2/statisticalReport'
|
|
} from '@/api/V2/statisticalReport'
|
|
//采购入库报表
|
|
//采购入库报表
|
|
export const getpurchreceipt = appRx.get(API_GET_PURCHRECEIPT, errorCatcher, errorHandle, filter)
|
|
export const getpurchreceipt = appRx.get(API_GET_PURCHRECEIPT, errorCatcher, errorHandle, filter)
|
|
@@ -37,4 +44,21 @@ export const closecollmoney = appRx.post(API_POST_CLOSECOLLMONEY, errorCatcher,
|
|
//采购入库开发票
|
|
//采购入库开发票
|
|
export const postopeninvoice = appRx.post(API_POST_OPENINVOICE, 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)
|
|
|
|
|
|
+export const postbatchopeninvoice = appRx.post(API_POST_BATCHOPENINVOICE, errorCatcher, errorHandle, filter)
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+//销售出库报表
|
|
|
|
+export const salelist = appRx.get(API_GET_SALELIST, errorCatcher, errorHandle, filter)
|
|
|
|
+//销售出库出纳收款
|
|
|
|
+export const cashierpayment = appRx.post(API_POST_CASHIER_PAYMENT, errorCatcher, errorHandle, filter)
|
|
|
|
+//销售出库开发票
|
|
|
|
+export const salesinvoicing = appRx.post(API_POST_SALES_INVOICING, errorCatcher, errorHandle, filter)
|
|
|
|
+//销售出库批量开发票
|
|
|
|
+export const salesbatchinvoicing = appRx.post(API_POST_SALES_BATCH_INVOICING, 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)
|
|
|
|
+
|
|
|
|
+
|