|
|
@@ -1 +1,14 @@
|
|
|
-/** ================================= 库存报表 ================================**/
|
|
|
+/** ================================= 库存报表 ================================**/
|
|
|
+import APP from '@/services';
|
|
|
+import * as type from './interface';
|
|
|
+import {commonSearch_go} from '@/goServiceAPI/index';
|
|
|
+import {QueryAreaStockReportReq} from "./interface";
|
|
|
+
|
|
|
+export async function QueryAreaStockReportReq(queryType:QueryAreaStockReportReq):Promise<type.QueryAreaStockReportRsp[]>
|
|
|
+{
|
|
|
+ try {
|
|
|
+ return commonSearch_go('/Ermcp3/QueryAreaStockReport', { queryType });
|
|
|
+ } catch (err) {
|
|
|
+ throw new Error(err.message);
|
|
|
+ }
|
|
|
+}
|