소스 검색

commit 提交接口异常

xkwg 4 년 전
부모
커밋
5d44ccd2bc
2개의 변경된 파일10개의 추가작업 그리고 8개의 파일을 삭제
  1. 4 3
      src/services/go/ermcp/exposure/index.ts
  2. 6 5
      src/services/go/ermcp/goodsInfo/index.ts

+ 4 - 3
src/services/go/ermcp/exposure/index.ts

@@ -2,6 +2,7 @@ import APP from '@/services';
 import { commonSearch_go } from '@/services/go';
 import { Ermcp3AreaSpot, Ermcp3AreaSpotDetail, Ermcp3AreaSpotDetailReq, Ermcp3ExposureDetail, Ermcp3ExposureReq, ErmcpExposurePostion, ErmcpExposurePostionReq, ErmcpHedgePosition, ErmcpHedgePositionDetail, ErmcpHedgePositionDetailReq, ErmcpRealExposureModel } from '@/services/go/ermcp/exposure/interface';
 import {getUserId} from "@/services/bus/account";
+import {getUserAccountType} from "@/services/bus/user";
 
 /** ================================= 业务 - 敞口 ================================**/
 
@@ -23,7 +24,7 @@ export function QueryActualExposure(): Promise<ErmcpRealExposureModel[]> {
  */
 export function QueryActualExposureDetail(req: Ermcp3ExposureReq): Promise<Ermcp3ExposureDetail[]> {
     const userid = getUserId(); // 用户id
-    const usertype = 2;  // 用户类型 2-机构 7-企业成员
+    const usertype = getUserAccountType();  // 用户类型 2-机构 7-企业成员
     return commonSearch_go('/Ermcp3/QueryExposureDetail', { userid, usertype, ...req }).catch((err) => {
         throw new Error(`查询敞口 ->实时敞口 -> 现货明细: ${err.message}`);
     });
@@ -47,7 +48,7 @@ export function QueryAutualExposurePosition(req: ErmcpExposurePostionReq): Promi
  */
 export function QuerySpotPosition(): Promise<Ermcp3AreaSpot[]> {
     const userid = getUserId(); // 用户id
-    const usertype = 2;  // 用户类型 2-机构 7-企业成员
+    const usertype = getUserAccountType();  // 用户类型 2-机构 7-企业成员
     return commonSearch_go('/Ermcp3/QueryExposureSpot', { userid, usertype }).catch((err) => {
         throw new Error(`查询敞口 -> 现货头寸: ${err.message}`);
     });
@@ -60,7 +61,7 @@ export function QuerySpotPosition(): Promise<Ermcp3AreaSpot[]> {
  */
 export function QuerySpotPositionDetail(req: Ermcp3AreaSpotDetailReq): Promise<Ermcp3AreaSpotDetail[]> {
     const userid = getUserId(); // 用户id
-    const usertype = 2;  // 用户类型 2-机构 7-企业成员
+    const usertype = getUserAccountType();  // 用户类型 2-机构 7-企业成员
     return commonSearch_go('/Ermcp3/QueryExposureSpotDetail', { userid, usertype, ...req }).catch((err) => {
         throw new Error(`查询敞口 -> 现货头寸 -> 现货明细: ${err.message}`);
     });

+ 6 - 5
src/services/go/ermcp/goodsInfo/index.ts

@@ -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}`);
     });