Bladeren bron

报表接口以及个人信息接口

yu.jie 4 jaren geleden
bovenliggende
commit
28d1c7f975

+ 2 - 0
src/services/funcode/index.ts

@@ -114,4 +114,6 @@ export const funCode: Code = {
     ErmsMiddelGoodsEditReq: 1900677, // 套保品种修改请求
     ErmsMiddelGoodsEditRsp: 1900678, // 套保品种修改响应
 
+    //
+
 };

+ 36 - 2
src/services/go/ermcp/account/index.ts

@@ -3,10 +3,11 @@ import APP from "@/services";
 import { commonSearch_go } from "@/services/go";
 import {
     ErmcpBizGroupEx,
-    ErmcpBizGroupReq,
-    ErmcpLoginUserEx,
+    ErmcpBizGroupReq, ErmcpFuturesCompany,
+    ErmcpLoginUserEx, ErmcpRole, ErmcpRoleMenuEx,
     ErmcpTaAccountEx
 } from "@/services/go/ermcp/account/interface";
+import {getUserId} from "@/services/bus/account";
 
 /**
  * 查询业务类型分组(账户管理/账户设置) /Ermcp/QueryAccMgrBizGroupSet
@@ -43,4 +44,37 @@ export function QueryAccMgrLoginUser(querytype: number): Promise<ErmcpLoginUserE
     return commonSearch_go('/Ermcp/QueryAccMgrLoginUser', { userid, querytype }).catch((err) => {
         throw new Error(`查询账户管理登录账号: ${err.message}`);
     });
+}
+
+/**
+ * 查询期货公司(新增期货主账户时候查询的期货公司接口) /Ermcp/QueryFuturesCompany
+ * @constructor
+ */
+export function QueryFuturesCompany(): Promise<ErmcpFuturesCompany> {
+    return commonSearch_go('/Ermcp/QueryFuturesCompany', {}).catch((err) => {
+        throw new Error(`查询期货公司: ${err.message}`);
+    });
+}
+
+/**
+ * 查询账户管理角色详情(账户管理/角色设置/角色详情) /Ermcp/QueryAccMgrRoleMenu
+ * @param roleid  角色id(可多个,逗号隔开)
+ * @constructor
+ */
+export function QueryAccMgrRoleMenu(roleid: string): Promise<ErmcpRoleMenuEx> {
+    const userid = getUserId()
+    return commonSearch_go('/Ermcp/QueryAccMgrRoleMenu', {roleid, userid}).catch((err) => {
+        throw new Error(`查询账户管理角色详情: ${err.message}`);
+    });
+}
+
+/**
+ * 查询账户管理角色设置(账户管理/角色设置) /Ermcp/QueryAccMgrRole
+ * @constructor
+ */
+export function QueryAccMgrRole(): Promise<ErmcpRole> {
+    const userid = getUserId()
+    return commonSearch_go('/Ermcp/QueryAccMgrRole', {userid}).catch((err) => {
+        throw new Error(`查询账户管理角色设置: ${err.message}`);
+    });
 }

+ 59 - 0
src/services/go/ermcp/account/interface.ts

@@ -101,3 +101,62 @@ export interface ErmcpLoginUserEx{
     usertype	:number;//用户类型 - 1:交易所 2:机构 3:会员子机构 4:经纪人 5:投资者 6:客户 7:企业成员(云平台)
 }
 
+/**
+ * 查询期货公司返回
+ */
+export interface ErmcpFuturesCompany{
+    brokerid        :string;//经纪公司代码
+    channeladdress  :string;//对冲渠道服务地址(多个地址用逗号分隔) – 192.168.30.10:3000,192.168.30.10:3001
+    channelid       :string;//对冲渠道ID
+    createtime      :string;//创建时间
+    creatorid       :string;//创建人
+    fcid    :number;//期货公司ID(SEQ_ERMCP_FUTURESCOMPANY)
+    fcname  :string;//期货公司名称
+    isvalid :number;//是否有效 - number;
+//:无效 1:有效
+    mhpaddress      :string;//MHP服务地址(IP:Port)
+    riskrulegroupid :string;//风控规则组ID
+    tradefeetmpid   :string;//手续费模板ID[TradeConfigTmpType为2]
+    trademargintmpid        :string;//保证金模板ID [TradeConfigTmpType为1]
+    traderatetmpid  :string;//汇率模板ID[TradeConfigTmpType为3]
+    updatetime      :string;//更新时间
+    updatorid       :string;//更新人
+}
+
+/**
+ * 账户管理角色详情
+ */
+export interface ErmcpRoleMenuEx{
+    menu: ErmcpRoleMenu[]
+}
+
+export interface ErmcpRoleMenu{
+    iconame	:string;//菜单图标
+    ishadrole	:boolean;//是否有权限
+    menutype	:number;//菜单类型 1:管理端 2:交易端 3:终端(企业云平台)
+    parentcode	:string;//上级资源代码
+    remark	:string;//菜单备注
+    resourcecode	:string;//菜单代码
+    resourcelevel	:number;//级别
+    resourcename	:string;//菜单名称
+    roleid	:number;//角色id
+    sort	:number;//排序
+    url	:string;//URL
+    userid	:number;//用户id
+}
+
+/**
+ * 查询账户管理角色设置
+ */
+export interface ErmcpRole{
+    areauserid	:number;//所属机构
+    autoid	:number;//角色ID(自增ID)
+    modifierid	:number;//修改人(创建人)
+    modifiername	:string;//修改人名称
+    modifytime	:string;//修改时间(创建时间)
+    rolename	:string;//角色名称
+    rolestatus	:number;//角色状态 - 1:启用 2:停用
+    roletype	:number;//角色类型 - 1- 管理端 2- 交易端
+}
+
+

+ 53 - 0
src/services/go/ermcp/report/index.ts

@@ -0,0 +1,53 @@
+/***********************   报表相关 *********************/
+import {
+    AreaExpourseReportReq,
+    AreaSpotplReportReq, AreaStockReportReq, Ermcp3AreaSpotPLRsp, Ermcp3AreaStockReport,
+    Ermcp3ExpourseReportRsp, Ermcp3FinanceReport, FinanceReportReq
+} from "@/services/go/ermcp/report/interface";
+import {getUserId} from "@/services/bus/account";
+import APP from "@/services";
+import {commonSearch_go} from "@/services/go";
+
+/**
+ * 查询敞口报表 /Ermcp3/QryAreaExpourseReport
+ * @param req.userid
+ * @param req.querytype  查询类型 1-日报表 2-周期报表 3-日报表(指定时间段[开始交易日,结束交易日]) 4-日报表明细
+ */
+export function qryAreaExpourseReport(req: AreaExpourseReportReq): Promise<Ermcp3ExpourseReportRsp>{
+    req.userid = getUserId()
+    return commonSearch_go('/Ermcp3/QryAreaExpourseReport', req).catch((err) => {
+        throw new Error(`查询敞口报表: ${err.message}`);
+    });
+}
+
+/**
+ *  查询现货报表 /Ermcp3/QryAreaSpotplReport
+ */
+export function qryAreaSpotplReport(req: AreaSpotplReportReq): Promise<Ermcp3AreaSpotPLRsp>{
+    req.userid = getUserId()
+    return commonSearch_go('/Ermcp3/QryAreaSpotplReport', req).catch((err) => {
+        throw new Error(`查询现货报表: ${err.message}`);
+    });
+}
+
+/**
+ * 查询库存报表 /Ermcp3/QryAreaStockReport
+ * @param req
+ */
+export function qryAreaStockReport(req: AreaStockReportReq): Promise<Ermcp3AreaStockReport>{
+    req.userid = getUserId()
+    return commonSearch_go('/Ermcp3/QryAreaStockReport', req).catch((err) => {
+        throw new Error(`查询库存报表: ${err.message}`);
+    });
+}
+
+/**
+ * 查询财务报表 /Ermcp3/QryFinanceReport
+ * @param req
+ */
+export function qryFinanceReport(req: FinanceReportReq): Promise<Ermcp3FinanceReport>{
+    req.userid = getUserId()
+    return commonSearch_go('/Ermcp3/QryFinanceReport', req).catch((err) => {
+        throw new Error(`查询财务报表: ${err.message}`);
+    });
+}

+ 258 - 0
src/services/go/ermcp/report/interface.ts

@@ -0,0 +1,258 @@
+/**
+ * 敞口报表请求
+ */
+export interface AreaExpourseReportReq {
+    userid?: number,    // 用户ID
+    querytype: number,  // 查询类型 1-日报表 2-周期报表 3-日报表(指定时间段[开始交易日,结束交易日]) 4-日报表明细
+
+    tradedate?: string, // 交易日(格式yyyymmdd)
+    cycletype?: number, // 周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    cycletime?: string, // 周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(0)【原值】
+    begindate?: string, // 开始交易日(格式yyyymmdd)
+    enddate?: string,   // 结束交易日(格式yyyymmdd)
+}
+
+/**
+ *  敞口报表 信息返回
+ */
+export interface Ermcp3ExpourseReportRsp{
+    accountid       :number;//期货账户ID (作废, 默认为number;
+//)
+    accountname     :string;//机构名称
+    arbitrageqty    :number;//套利量
+    areauserid      :number;//所属机构\交易用户ID
+    buyfutureqty    :number;//买入期货数量
+    buyplanqty      :number;//采购计划数量
+    buypricedqty    :number;//采购合同已定价数量
+    cycletime       :string;//周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(number;
+//)【原值】
+    cycletype       :number;//周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    diffexposure    :number;//变动量(套保敞口)
+    difffutuqty     :number;//变动量(期货)
+    diffhedgeqty    :number;//变动量(现货应套保总量)
+    diffmgqtya      :number;//套保变动量
+    diffmgqtyb      :number;//套利变动量
+    diffqty :number;//变动量(总敞口)
+    diffspotqty     :number;//变动量(现货)
+    enumdicname     :string;//单位名称
+    hedgeqty        :number;//套保量
+    mgneedhedgeratio        :number;//套保比例(套保品的)
+    middlegoodsid   :number;//套保品种ID
+    middlegoodsname :string;//套保商品名称
+    middlgoodscode  :string;//套保商品代码
+    needarbitrageqty        :number;//应套利量
+    needarbitrageratio      :number;//套利比例(套保品的)
+    needhedgeexposoure      :number;//应套保敞口(套保敞口)
+    needhedgeqty    :number;//应套保量
+    needhedgeratio  :number;//应套保敞口比例
+    oriarbitrageqty :number;//期初套利量
+    oribuyfutureqty :number;//期初买入期货数量
+    oribuyplanqty   :number;//期初采购计划数量
+    oribuypricedqty :number;//期初采购合同已定价数量
+    orihedgeqty     :number;//期初套保量
+    orineedarbitrageqty     :number;//期初应套利量
+    orineedhedgeexposoure   :number;//期初应套保敞口
+    orineedhedgeqty :number;//期初应套保量
+    orisellfutureqty        :number;//期初卖出期货数量
+    orisellplanqty  :number;//期初销售计划数量
+    orisellpricedqty        :number;//期初销售合同已定价数量
+    oritotalexposure        :number;//期初实时总敞口
+    oritotalfutureqty       :number;//期初期货头寸总量
+    oritotalneedhedgeqty    :number;//期初应套保总量
+    oritotalspotqty :number;//期初现货头寸总量
+    reckondate      :string;//日照时期(yyyyMMdd)
+    sellfutureqty   :number;//卖出期货数量
+    sellplanqty     :number;//销售计划数量
+    sellpricedqty   :number;//销售合同已定价数量
+    totalexposure   :number;//实时总敞口(总敞口)
+    totalfutureqty  :number;//期货头寸总量(期货总量)
+    totalhedgeratio :number;//敞口比例
+    totalneedhedgeqty       :number;//应套保总量(现货应套保总量)
+    totalspotqty    :number;//现货头寸总量
+    unitid  :number;//单位id
+    updatetime      :string;//更新时间
+}
+
+/**
+ * 查询现货报表
+ */
+export interface AreaSpotplReportReq{
+    userid?: number,  //       用户ID
+    querytype: number, //      查询类型 1-日报表 2-周期报表 3-日报表(指定时间段[开始交易日,结束交易日]) 4-日报表明细 5-周期报表明细
+    tradedate?: string,//      交易日(格式yyyymmdd)
+    cycletype?: number,//      周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    cycletime?: string,//      周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】
+    begindate?: string,//      开始交易日(格式yyyymmdd)
+    enddate?: string,//        结束交易日(格式yyyymmdd)
+    deliverygoodsid?: number,//现货品种id
+    wrstandardid?: number,//   品类id
+    currencyid?: number,//     币种id
+}
+
+/**
+ * 查询现货报表返回
+ */
+export interface Ermcp3AreaSpotPLRsp{
+    accountid       :number;//期货账户ID (作废, 默认为number;
+//)
+    accountname     :string;//机构名称
+    actualpl        :number;//现货损益
+    areauserid      :number;//所属机构\交易用户ID
+    biztype :number;//业务类型 - 1:套保 2:套利
+    brandname       :string;//品牌名称
+    curamount       :number;//期末额
+    curaverageprice :number;//期末均价
+    curbuyamount    :number;//期末采购总额
+    curbuyqty       :number;//期末采购总量
+    curmarketvalue  :number;//参考市值(期末市值)
+    curqty  :number;//期末量
+    currencyid      :number;//结算币种ID【原值】
+    currencyname    :string;//币种名称
+    cursellamount   :number;//期末销售总额
+    cursellqty      :number;//期末销售总量
+    curspotprice    :number;//参考市价(最新价)
+    cycletime       :string;//周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(number;
+//)【原值】
+    cycletype       :number;//周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    deliverygoodscode       :string;//现货商品代码
+    deliverygoodsid :number;//现货品种ID
+    deliverygoodsname       :string;//现货商品名称
+    enumdicname     :string;//现货商品单位名称
+    floatpl :number;//浮动损益
+    goodsunitid     :number;//现货商品单位id
+    oriamount       :number;//期初额
+    oriaverageprice :number;//期初均价
+    oribuyamount    :number;//期初采购总额
+    oribuyqty       :number;//期初采购总量
+    oriqty  :number;//期初量
+    orisellamount   :number;//期初销售总额
+    orisellqty      :number;//期初销售总量
+    reckondate      :string;//日照时期(yyyyMMdd)
+    spotgoodsbrandid        :number;//现货品牌ID
+    todaybuyamount  :number;//今日采购额(今采购额)
+    todaybuyaverageprice    :number;//今日采购均价
+    todaybuyqty     :number;//今日采购量(今采购量)
+    todayinqty      :number;//今日入库量(今入库量)
+    todayoutqty     :number;//今日出库量(今出库量)
+    todaysellamount :number;//今日销售额(今销售额)
+    todaysellaverageprice   :number;//今日销售均价
+    todaysellqty    :number;//今日销售量(今销售量)
+    unitid  :number;//品类单位id
+    unitidname      :string;//品类单位名称
+    updatetime      :string;//更新时间
+    wrfactortypeid  :number;//仓单要素类型ID(212+Unix秒时间戳(1number;
+//位)+xxxxxx)
+    wrstandardcode  :string;//品类代码
+    wrstandardid    :number;//现货品类ID
+    wrstandardname  :string;//品类名称
+}
+
+/**
+ * 查询库存报表请求
+ */
+export interface AreaStockReportReq{
+    userid?: number //               用户ID
+    querytype: number //             查询类型 1-日报表 2-周期报表 3-日报表(指定时间段[开始交易日,结束交易日]) 4-日报表明细 5-周期报表明细
+    tradedate?: string //            交易日(格式yyyymmdd)
+    cycletype?: number//             周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    begindate?: string//             开始交易日(格式yyyymmdd)
+    enddate?: string //              结束交易日(格式yyyymmdd)
+    deliverygoodsid?: number//       现货商品ID
+    wrstandardid?: number//          品类ID
+    spotgoodsbrandid?: number //     品牌ID
+}
+
+/**
+ * 查询库存报表返回
+ */
+export interface Ermcp3AreaStockReport{
+    brandname	:string;//品牌名称
+    curstock	:number;//期末库存量
+    cycletime	:string;//周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(number;
+//)【原值】
+    cycletype	:number;//周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    deliverygoodscode	:string;//现货品种代码
+    deliverygoodsid	:number;//现货品种id
+    deliverygoodsname	:string;//现货品种名称
+    diffqty	:number;//库存变化量 = 期末 - 期初
+    enumdicname	:string;//单位名称
+    goodsunitid	:number;//现货单位id
+    oristock	:number;//期初库存量
+    reckondate	:string;//日照时期(yyyyMMdd)
+    spotgoodsbrandid	:number;//现货品牌ID
+    todaybuyinqty	:number;//今采购入库量
+    todayproduceinqty	:number;//今内部入库量
+    todayproduceoutqty	:number;//今内部出库量
+    todayselloutqty	:number;//今销售出库量
+    unbuyinqty	:number;//采购未入库量(数据库未找到相关字段?)
+    unitid	:number;//品类单位id
+    unselloutqty	:number;//销售未出库量(数据库未找到相关字段?)
+    updatetime	:string;//更新时间
+    userid	:number;//机构ID
+    username	:string;//机构名称
+    warehousecode	:string;//仓库代码
+    warehouseinfoid	:string;//仓库ID
+    warehousename	:string;//仓库名称
+    warehousetype	:number;//仓库类型 - 1 厂库 2 自有库 3 合作库
+    wrstandardcode	:string;//品类代码
+    wrstandardid	:number;//品类ID
+    wrstandardname	:string;//品类名称
+}
+
+/**
+ * 查询财务报表请求
+ */
+export interface FinanceReportReq{
+    userid: number //       用户ID
+    querytype: number //    查询类型 1-日报表 2-周期报表 3-日报表(指定时间段[开始交易日,结束交易日]) 4-日报表明细 5-周期报表明细
+    tradedate?: string//    交易日(格式yyyymmdd)
+    cycletype?: string//    周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    cycletime?: string//    周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYMMDD周内任意一天) 全(0)【原值】
+    begindate?: string//    开始交易日(格式yyyymmdd)
+    enddate?: string//      结束交易日(格式yyyymmdd)
+    currencyid?: number//   币种id(日报表明细)
+}
+
+/**
+ * 财务报表回应
+ */
+export interface Ermcp3FinanceReport{
+    areauserid	:number;//所属机构\交易用户ID
+    biztype	:number;//业务类型 - 1:套保 2:套利
+    brandname	:string;//品牌名称
+    buypreinvoicedamount	:number;//采购预收票额(预收票额)
+    buyprepaidamount	:number;//采购预付款额(预付货款额)
+    buytodayinvoiceamount	:number;//采购今收票额(今收票额)
+    buytodayrefundamount	:number;//采购今收退款额(今收退款额)
+    buytodaysettleamount	:number;//采购今付款额(今付货款额)
+    buyuninvoicedamount	:number;//采购应收票额(应收票额)
+    buyunpaidamount	:number;//采购应付款额(应付货款额)
+    currencyid	:number;//结算币种ID
+    currencyname	:string;//币种名称
+    cycletime	:string;//周期时间 月(YYYYMM) 季(YYYYQ) 年(YYYY) 周(YYYYIW) 全(number;
+//)【原值】
+    cycletype	:number;//周期类型 - 1:月 2:季 3:年 4:周 5:全报表【原值】
+    deliverygoodscode	:string;//现货品种代码
+    deliverygoodsid	:number;//现货品种ID
+    deliverygoodsname	:string;//现货品种名称
+    reckondate	:string;//日照时期(yyyyMMdd)
+    sellpreinvoicedamount	:number;//销售预开票额(预开票额)
+    sellprepaidamount	:number;//销售预收款额(预收货款额)
+    selltodayinvoiceamount	:number;//销售今开票额(今开票额)
+    selltodayrefundamount	:number;//销售今付退款额(今付退款额)
+    selltodaysettleamount	:number;//销售今收款额(今收货款额)
+    selluninvoicedamount	:number;//销售应开票额(应开票额)
+    sellunpaidamount	:number;//销售应收款额(应收货款额)
+    spotgoodsbrandid	:number;//现货品牌ID
+    todaypaysum	:number;//今付款合计
+    todayreceivesum	:number;//今收款合计
+    updatetime	:string;//更新时间
+    wrfactortypeid	:number;//仓单要素类型ID(212+Unix秒时间戳(1number;
+//位)+xxxxxx)
+    wrstandardcode	:string;//品类代码
+    wrstandardid	:number;//现货商品ID
+    wrstandardname	:string;//品类名称
+}
+
+
+