|
|
@@ -11,6 +11,7 @@ import {
|
|
|
ErmcpDeliveryGoodsReq,
|
|
|
ErmcpDeliveryGoodsRsp, ErmcpMiddleGoodsModel
|
|
|
} from './interface';
|
|
|
+import {getUserAccountType} from "@/services/bus/user";
|
|
|
|
|
|
/**
|
|
|
* 查询现货商品 /Ermcp3/QueryDeliveryGoods
|
|
|
@@ -19,7 +20,7 @@ import {
|
|
|
*/
|
|
|
export function QueryDeliveryGoods(req: ErmcpDeliveryGoodsReq): Promise<ErmcpDeliveryGoodsRsp[]> {
|
|
|
const userid = getUserId(); // 所属机构id
|
|
|
- const usertype = 2; // 用户类型 2-机构 7-企业成员
|
|
|
+ const usertype = getUserAccountType(); // 用户类型 2-机构 7-企业成员
|
|
|
return commonSearch_go('/Ermcp3/QueryDeliveryGoods', { usertype, userid, ...req }).catch((err) => {
|
|
|
throw new Error(`查询现货商品: ${err.message}`);
|
|
|
});
|
|
|
@@ -32,7 +33,7 @@ export function QueryDeliveryGoods(req: ErmcpDeliveryGoodsReq): Promise<ErmcpDel
|
|
|
*/
|
|
|
export function QueryGoodsWrstandard(deliverygoodsid: number): Promise<Ermcp3Wrstandard[]> {
|
|
|
const userid = getUserId(); // 所属机构id
|
|
|
- const usertype = 2; // 用户类型 2-机构 7-企业成员
|
|
|
+ const usertype = getUserAccountType(); // 用户类型 2-机构 7-企业成员
|
|
|
return commonSearch_go('/Ermcp3/QueryGoodsWrstandard', { userid, usertype, deliverygoodsid }).catch((err) => {
|
|
|
throw new Error(`查询商品品类: ${err.message}`);
|
|
|
});
|
|
|
@@ -44,7 +45,7 @@ export function QueryGoodsWrstandard(deliverygoodsid: number): Promise<Ermcp3Wrs
|
|
|
*/
|
|
|
export function QueryGoodsbrand(): Promise<Ermcp3Brand[]> {
|
|
|
const userid = getUserId(); // 用户id
|
|
|
- const usertype = 2; // 用户类型 2-机构 7-企业成员
|
|
|
+ const usertype = getUserAccountType(); // 用户类型 2-机构 7-企业成员
|
|
|
return commonSearch_go('/Ermcp3/QueryGoodsbrand', { userid, usertype }).catch((err) => {
|
|
|
throw new Error(`查询商品品牌: ${err.message}`);
|
|
|
});
|
|
|
@@ -72,7 +73,7 @@ export function QueryDeliveryGoodsDetail(deliverygoodsid?: number): Promise<Ermc
|
|
|
*/
|
|
|
export function QueryGoodsfGroup(excludecfg?: number): Promise<Ermcp3GoodsGroup[]> {
|
|
|
const userid = getUserId(); // 用户id
|
|
|
- const usertype = 2; // 用户类型 2-机构 7-企业成员
|
|
|
+ const usertype = getUserAccountType(); // 用户类型 2-机构 7-企业成员
|
|
|
const param = excludecfg ? { userid, excludecfg, usertype } : { userid, usertype }
|
|
|
return commonSearch_go('/Ermcp3/QueryGoodsGroup', param).catch((err) => {
|
|
|
throw new Error(`查询期货商品组: ${err.message}`);
|
|
|
@@ -99,7 +100,7 @@ export function QueryMiddleGoods(status: number): Promise<ErmcpMiddleGoodsModel[
|
|
|
*/
|
|
|
export function QueryMiddleGoodsDetail(middlegoodsid: number): Promise<Ermcp3MiddleGoodsDetailEx[]> {
|
|
|
const userid = getUserId(); // 用户id
|
|
|
- const usertype = 2 // 用户类型 2-机构 7-企业成员
|
|
|
+ const usertype = getUserAccountType() // 用户类型 2-机构 7-企业成员
|
|
|
return commonSearch_go('/Ermcp3/QueryMiddleGoodsDetail', { userid, usertype, middlegoodsid }).catch((err) => {
|
|
|
throw new Error(`查询套保品种详情(套保品种/商品详情): ${err.message}`);
|
|
|
});
|