|
@@ -2,16 +2,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
import APP from '@/services';
|
|
import APP from '@/services';
|
|
|
-import * as type from './interface';
|
|
|
|
|
import {commonSearch_go} from '@/goServiceAPI/index';
|
|
import {commonSearch_go} from '@/goServiceAPI/index';
|
|
|
-import {ErmcpDeliveryGoodsReq} from "./interface";
|
|
|
|
|
|
|
+import {ErmcpDeliveryGoodsReq, ErmcpDeliveryGoodsRsp} from "./interface";
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 查询现货商品 /Ermcp3/QueryDeliveryGoods
|
|
* 查询现货商品 /Ermcp3/QueryDeliveryGoods
|
|
|
* @param excluudecfg 排除已配置的现货商品 1-排除
|
|
* @param excluudecfg 排除已配置的现货商品 1-排除
|
|
|
* @constructor
|
|
* @constructor
|
|
|
*/
|
|
*/
|
|
|
-export function QueryDeliveryGoods( req : ErmcpDeliveryGoodsReq) : Promise<type.ErmcpDeliveryGoodsRsp[]>{
|
|
|
|
|
|
|
+export function QueryDeliveryGoods( req : ErmcpDeliveryGoodsReq) : Promise<ErmcpDeliveryGoodsRsp[]>{
|
|
|
const MemberUserID = APP.get('userAccount').memberuserid; // 所属机构id
|
|
const MemberUserID = APP.get('userAccount').memberuserid; // 所属机构id
|
|
|
return commonSearch_go('/Ermcp3/QueryDeliveryGoods', {MemberUserID , ...req})
|
|
return commonSearch_go('/Ermcp3/QueryDeliveryGoods', {MemberUserID , ...req})
|
|
|
.catch(err => {
|
|
.catch(err => {
|