|
|
@@ -0,0 +1,2238 @@
|
|
|
+set feedback off
|
|
|
+
|
|
|
+-- 删除所有客户端字段记录
|
|
|
+delete from TableColumnConfig t where t.tablekey in (select d.tablekey from TableDefine d where d.tabletype = 3);
|
|
|
+-- 删除所有客户端表记录
|
|
|
+delete from TableDefine t where t.tabletype = 3;
|
|
|
+
|
|
|
+-- ColumnWidth 默认为0,WEB交易端自己设置宽度,如果表里赋了值则使用表的宽度
|
|
|
+-- AlignType 对齐方式 - 1:居中对齐 2:左对齐 3:右对齐
|
|
|
+
|
|
|
+-- 客户资料
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_userinfo', 3, '客户资料', '', '手机端-客户资料');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'userinfotype', '客户类型', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'customername', '客户名称', '0', 20, 1, 1, '', '', 'customername', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'mobile', '联系人手机', '0', 30, 1, 1, '', '', 'mobile', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_userinfo', 'statusdesc', '状态', '0', 40, 1, 3, '', '', 'statusdesc', 0, 0, '');
|
|
|
+
|
|
|
+-- 套保计划 --
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgeplan', 3, '套保计划', '', '手机端-套保计划');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'contracttype,hedgeplanno', '计划类型\n计划名称 ', '0', 10, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'deliverygoodsname,wrstandardname', '现货商品', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'convertfactor,planqty', '计划量 ', '0', 30, 1, 1, '', '', 'convertfactor,planqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgeplan', 'tradeusername,hedgeplanstatus', '\n状态', '0', 40, 1, 3, '', '', 'tradeusername,hedgeplanstatus', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货-采购合同--待点价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_purchase_pointprice', 3, '现货-采购合同--待点价', '', '手机端-现货-采购合同--待点价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'accountname,contractno', '销售方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 40, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 50, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'payamount,unpayAmount', '已付款额\n应付款额 ', '0', 60, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'invoiceamount,daikaiAmount', '已收票额\n应收票额 ', '0', 70, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_pointprice', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货-采购合同--待交收
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_purchase_settle', 3, '现货-采购合同--待交收', '', '手机端-现货-采购合同--待交收');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'accountname,contractno', '销售方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 40, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'payamount,unpayAmount', '已付款额\n应付款额 ', '0', 50, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'invoiceamount,daikaiAmount', '已收票额\n应收票额 ', '0', 60, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 70, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_purchase_settle', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 80, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货-采购\销售合同-新增合同
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotcontract_new', 3, '新增合同', '', '现货-采购合同-新增合同');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'contractno,contracttype,contracctstatus', '合同编号/\n状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'biztype,convertfactor', '业务类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '点价期/\n交收期 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'amount,margin', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_new', 'meruserlogincode,saleuserlogincode', '交易用户/\n结算币种 ', '0', 100, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货-采购\销售合同-已完成
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotcontract_complete', 3, '已完成', '', '手机端-现货-采购合同-已完成');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'contractno,contracttype,contracctstatus', '合同编号\n状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'nickname,qty', '对手方\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'biztype,convertfactor', '产品类型\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'pricetype,goodsname', '定价类型\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'price,pricemove', '价格\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '金额\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '业务类型\n交易用户 ', '0', 90, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotcontract_complete', 'amount,margin', '业务员\n跟单员 ', '0', 100, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货—期现关联-关联记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contract_linklog', 3, '现货—合同详情-关联记录', '', '手机端-现货—合同详情-关联记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '关联时间\n成交时间 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '业务类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '订单类型 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '套保品种\n现货关联数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '关联方式\n关联状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contract_linklog', 'userinfotype', '期货单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+-- 现货-销售合同--待点价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_sales_pointprice', 3, '销售_待点价', '', '手机端-销售-待点价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'accountname,contractno', '采购方\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'deliverygoodsname,wrstandardname', '现货品种\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'goodscode,pricemove', '点价合约\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'qty,unpricedqty', '合同量\n未定价量 ', '0', 40, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'pricedqty,unsureqty', '已定价量\n未交收量 ', '0', 50, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'payamount,unpayAmount', '已收款额\n应收款额 ', '0', 60, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'invoiceamount,daikaiAmount', '已开票额\n应开票额 ', '0', 70, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_pointprice', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期\n交收期 ', '0', 80, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货-销售合同--待交收
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_sales_settle', 3, '现货-销售合同--待交收', '', '手机端-现货-销售合同--待交收');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'accountname,contractno', '采购方/\n合同编号 ', '0', 10, 1, 1, '', '', 'accountname,contractno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'goodscode,pricemove', '点价合约/\n升贴水 ', '0', 30, 1, 1, '', '', 'goodscode,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'pricedqty,unsureqty', '已定价量/\n未交收量 ', '0', 40, 1, 1, '', '', 'pricedqty,unsureqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'payamount,unpayAmount', '已收款额/\n应收款额 ', '0', 50, 1, 1, '', '', 'payamount,unpayAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'invoiceamount,daikaiAmount', '已开票额/\n应开票额 ', '0', 60, 1, 1, '', '', 'invoiceamount,daikaiAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'deliverystartdate,deliveryenddate,startdate,enddate', '点价期/\n交收期 ', '0', 70, 1, 1, '', '', 'deliverystartdate,deliveryenddate,startdate,enddate', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_sales_settle', 'qty,unpricedqty', '合同量/\n未定价量 ', '0', 80, 1, 1, '', '', 'qty,unpricedqty', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货审核-合同审核-待审核
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotadiit_contract_unaduit', 3, '待审核', '', '手机端-现货审核-合同审核-待审核');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'contractno,contracttype,contracctstatus', '合同编号/\n类型/状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'deliverygoodsname,wrstandardname', '现货品种/\n商品 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'biztype,convertfactor', '业务类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'startdate,enddate,deliverystartdate,deliveryenddate', '点价期/\n交收期 ', '0', 80, 1, 1, '', '', 'startdate,enddate,deliverystartdate,deliveryenddate', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'meruserlogincode,saleuserlogincode', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_unaduit', 'tradeusername,currencyname', '交易用户/\n结算币种 ', '0', 100, 1, 1, '', '', 'tradeusername,currencyname', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货审核-合同审核-已审核
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotadiit_contract_aduited', 3, '待审核', '', '手机端-现货审核-合同审核-已审核');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'contractno,contracttype,contracctstatus', '合同编号/\n类型/状态 ', '0', 10, 1, 1, '', '', 'contractno,contracttype,contracctstatus', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'nickname,qty', '对手方/\n合同量 ', '0', 20, 1, 1, '', '', 'nickname,qty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'deliverygoodsname,wrstandardname', '现货品种/\n商品型号 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'biztype,convertfactor', '产品类型/\n增值税税率% ', '0', 40, 1, 1, '', '', 'biztype,convertfactor', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'pricetype,goodsname', '定价类型/\n点价合约 ', '0', 50, 1, 1, '', '', 'pricetype,goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'price,pricemove', '价格/\n升贴水 ', '0', 60, 1, 1, '', '', 'price,pricemove', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'amount,margin', '金额/\n保证金 ', '0', 70, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'amount,margin', '业务类型/\n交易用户 ', '0', 80, 1, 1, '', '', 'amount,margin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotadiit_contract_aduited', 'meruserlogincode,saleuserlogincode', '业务员/\n跟单员 ', '0', 90, 1, 1, '', '', 'meruserlogincode,saleuserlogincode', 0, 0, '');
|
|
|
+
|
|
|
+-- 库存管理-当前库存
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_manage_current', 3, '库存管理-当前库存', '', '手机端-库存管理-当前库存');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '现货品种', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '昨日量/\n今日量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_current', 'userinfotype', '今日入库量/\n今日出库量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 库存管理-当前库存-入库明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_indetail', 3, '库存管理-当前库存-入库明细', '', '手机端-库存管理-当前库存-入库明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库登记时间/\n入库审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库类型/\n入库数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '合同编号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_indetail', 'userinfotype', '入库登记人/\n入库审核人', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 库存管理-当前库存-出库明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_outdetail', 3, '库存管理-当前库存-出库明细', '', '手机端-库存管理-当前库存-出库明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库登记时间/\n出库审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '商品/\n品牌', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库类型/\n出库数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '合同编号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_outdetail', 'userinfotype', '出库登记人/\n出库审核人', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 库存管理-申请记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_manage_applylog', 3, '库存管理-当前库存', '', '手机端-库存管理-当前库存');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '登记时间/\n审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '类型/\n数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '合同编号', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '商品/\n品牌', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_manage_applylog', 'userinfotype', '申请人/\n审核人', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 库存审核
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_stock_aduit', 3, '库存审核', '', '手机端-库存审核');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '登记时间/\n审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '类型/\n数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '商品/\n品牌', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '合同编号', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_stock_aduit', 'userinfotype', '申请人/\n审核人', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 业务审核-点价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_business_aduit_dj', 3, '业务审核-点价', '', '手机端-业务审核-点价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'applytime,audittime', '点价登记时间/\n点价审核时间', '0', 10, 1, 1, '', '', 'applytime,audittime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'contracttype,contractno', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'contracttype,contractno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'pricedPrice,amount', '点价价格/\n点价金额', '0', 30, 1, 1, '', '', 'pricedPrice,amount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_dj', 'contractstatus', '状态', '0', 40, 1, 1, '', '', 'contractstatus', 0, 0, '');
|
|
|
+
|
|
|
+-- 业务审核-交收
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_business_aduit_js', 3, '业务审核-交收', '', '手机端-业务审核-交收');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'applytime,audittime', '结算登记时间/\n结算审核时间', '0', 10, 1, 1, '', '', 'applytime,audittime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'contracttype,contractno', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'contracttype,contractno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'reckonrealqty,reckonotheramount', '交收量/\n其他费用', '0', 30, 1, 1, '', '', 'reckonrealqty,reckonotheramount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'addmargin,reckonadjustamount', '调整保证金/\n调整金额', '0', 40, 1, 1, '', '', 'addmargin,reckonadjustamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_business_aduit_js', 'contractstatus', '状态', '0', 50, 1, 1, '', '', 'contractstatus', 0, 0, '');
|
|
|
+
|
|
|
+-- 财务审核-发票
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fincial_aduit_fp', 3, '业务审核-发票', '', '手机端-业务审核-发票');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '发票登记时间/\n发票审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '类型/\n金额', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_fp', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 财务审核-款项
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fincial_aduit_kx', 3, '财务审核-款项', '', '手机端-财务审核-款项');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '款项登记时间/\n款项审核时间', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '合同类型/\n合同编号', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '类型/\n金额', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fincial_aduit_kx', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+--********************************************************************报表查询***************************************************************--
|
|
|
+-- 报表-敞口报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose', 3, '报表-敞口报表', '', '手机端-报表-敞口报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'middlegoodsname', '套保品种 ', '0', 10, 1, 1, '', '', 'middlegoodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'hedgeqty,arbitrageqty', '套保量/\n 套利量 ', '0', 20, 1, 1, '', '', 'hedgeqty,arbitrageqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalspotqty,diffspotqty', '现货总量/\n 变动量 ', '0', 30, 1, 1, '', '', 'totalspotqty,diffspotqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'diffmgqtya,diffmgqtyb', '套保变动量/\n 套利变动量 ', '0', 40, 1, 1, '', '', 'diffmgqtya,diffmgqtyb', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'mgneedhedgeratio,needarbitrageratio', '套保比例/\n 套利比例 ', '0', 50, 1, 1, '', '', 'mgneedhedgeratio,needarbitrageratio', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'needhedgeqty,needarbitrageqty', '应套保量/\n 应套利量 ', '0', 60, 1, 1, '', '', 'needhedgeqty,needarbitrageqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalneedhedgeqty,diffhedgeqty', '现货应套保总量/\n 变动量 ', '0', 70, 1, 1, '', '', 'totalneedhedgeqty,diffhedgeqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalfutureqty,difffutuqty', '期货总量/\n 变动量 ', '0', 80, 1, 1, '', '', 'totalfutureqty,difffutuqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'needhedgeexposoure,diffexposure', '套保敞口/\n 变动量 ', '0', 90, 1, 1, '', '', 'needhedgeexposoure,diffexposure', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose', 'totalexposure,diffqty', '总敞口/\n 变动量 ', '0', 100, 1, 1, '', '', 'totalexposure,diffqty', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-现货合同变动量明细-日报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_spotcontract_day', 3, '报表-敞口报表-现货合同变动量明细-日报表', '', '手机端-报表-敞口报表-现货合同变动量明细-日报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '合同编号/\n 合同类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '采购方/\n 销售方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '现货品种/\n 现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '期现用途/\n 今定价量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '套保品种/\n 套保变动量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_day', 'userinfotype', '应套保变动量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-现货合同变动量明细-周月报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_spotcontract_weekmonth', 3, '报表-敞口报表-现货合同变动量明细-周月报表', '', '手机端-报表-敞口报表-现货合同变动量明细-周月报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '合同编号/\n 合同类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '采购方/\n 销售方 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '现货品种/\n 现货商品 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '期现用途/\n 今定价量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '套保品种/\n 套保变动量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_spotcontract_weekmonth', 'userinfotype', '应套保变动量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-套保计划变动量明细-日报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_hedgeplan_day', 3, '报表-敞口报表-套保计划变动量明细-日报表', '', '手机端-报表-敞口报表-套保计划变动量明细-日报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'contracttype,hedgeplanno', '计划类型/\n 计划名称 ', '0', 10, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'deliverygoodsname,middlegoodsname', '现货品种/\n 套保品种 ', '0', 20, 1, 1, '', '', 'deliverygoodsname,middlegoodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'wrstandardname,qty', '现货商品/\n 计划量 ', '0', 30, 1, 1, '', '', 'wrstandardname,qty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'diffqty,changqty', '套保品种今变动量/\n 应套保总量变动量 ', '0', 40, 1, 1, '', '', 'diffqty,changqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_day', 'biztype,tradedate', '期现用途/\n 登记日 ', '0', 50, 1, 1, '', '', 'biztype,tradedate', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-套保计划变动量明细-周月报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_hedgeplan_weekmonth', 3, '报表-敞口报表-套保计划变动量明细-周月报表', '', '手机端-报表-敞口报表-套保计划变动量明细-周月报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'tradedate', '日期', '0', 10, 1, 1, '', '', 'tradedate', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'contracttype,hedgeplanno', '计划类型/\n 计划名称 ', '0', 20, 1, 1, '', '', 'contracttype,hedgeplanno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'deliverygoodsname,middlegoodsname', '现货品种/\n 套保品种 ', '0', 30, 1, 1, '', '', 'deliverygoodsname,middlegoodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'wrstandardname,qty', '现货商品/\n 计划量 ', '0', 40, 1, 1, '', '', 'wrstandardname,qty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'diffqty,changqty', '套保品种今变动量/\n 应套保总量变动量 ', '0', 50, 1, 1, '', '', 'diffqty,changqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_hedgeplan_weekmonth', 'biztype,tradedate', '期现用途/\n 登记日 ', '0', 60, 1, 1, '', '', 'biztype,tradedate', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-期货变动量明细-日报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_futures_day', 3, '报表-敞口报表-期货变动量明细-日报表', '', '手机端-报表-敞口报表-期货变动量明细-日报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易账户/\n 交易品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易合约/\n 方向 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '交易品种今变化量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_day', 'userinfotype', '套保品种/\n套保品种今变化量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-期货变动量明细-周月报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_futures_weekmonth', 3, '报表-敞口报表-期货变动量明细-周月报表', '', '手机端-报表-敞口报表-期货变动量明细-周月报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易账户/\n 交易品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易合约/\n 方向 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '期初持仓量/\n 期末持仓量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '今开仓量/\n 今平仓量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '交易品种今变化量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_futures_weekmonth', 'userinfotype', '套保品种/\n套保品种今变化量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-参数调整变动量明细-日报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_adjust_day', 3, '报表-敞口报表-参数调整变动量明细-日报表', '', '手机端-报表-敞口报表-参数调整变动量明细-日报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '套保品种/\n 参数类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '调整前参数值/\n 调整后参数值 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '套保总量/\n 应套保总量变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_day', 'userinfotype', '调整前应套保总量/\n 调整后应套保总量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-敞口报表-参数调整变动量明细-周月报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_expose_adjust_weekmonth', 3, '报表-敞口报表-参数调整变动量明细-周月报表', '', '手机端-报表-敞口报表-参数调整变动量明细-周月报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '套保品种/\n 参数类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '调整前参数值/\n 调整后参数值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '套保总量/\n 应套保总量变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_expose_adjust_weekmonth', 'userinfotype', '调整前应套保总量/\n 调整后应套保总量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-现货报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot', 3, '报表-现货报表', '', '手机端-报表-现货报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'currencyname,deliverygoodsname', '结算币种/\n 现货品种', '0', 10, 1, 1, '', '', 'currencyname,deliverygoodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriqty,curqty', '期初量/\n 期末量 ', '0', 30, 1, 1, '', '', 'oriqty,curqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyqty,todaysellqty', '今采购量/\n 今销售量 ', '0', 40, 1, 1, '', '', 'todaybuyqty,todaysellqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriamount,curamount', '期初额/\n 期末额 ', '0', 50, 1, 1, '', '', 'oriamount,curamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'oriaverageprice,curaverageprice', '期初均价/\n 期末均价 ', '0', 60, 1, 1, '', '', 'oriaverageprice,curaverageprice', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyamount,todaysellamount', '今采购额/\n 今销售额 ', '0', 70, 1, 1, '', '', 'todaybuyamount,todaysellamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'todaybuyaverageprice,todaysellaverageprice', '采购均价/\n 销售均价 ', '0', 80, 1, 1, '', '', 'todaybuyaverageprice,todaysellaverageprice', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'actualpl,floatpl', '现货损益/\n 浮动损益 ', '0', 90, 1, 1, '', '', 'actualpl,floatpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot', 'curspotprice,curmarketvalue', '期末市值 ', '0', 100, 1, 1, '', '', 'curspotprice,curmarketvalue', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-现货报表-日报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot_daydetail', 3, '报表-现货报表-日报表明细', '', '手机端-报表-现货报表-日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '结算币种/\n 现货品种', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初量/\n 期末量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '今采购量/\n 今销售量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初额/\n 期末额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '期初均价/\n 期末均价 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '今采购额/\n 今销售额 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '采购均价/\n 销售均价 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '现货损益/\n 浮动损益 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_daydetail', 'userinfotype', '最新价/\n 期末市值 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-现货报表-周月报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_spot_weekmonthdetail', 3, '报表-现货报表-周月报表明细', '', '手机端-报表-现货报表-周月报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '日期', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '结算币种/\n 现货品种', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初量/\n 期末量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '今采购量/\n 今销售量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初额/\n 期末额 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '期初均价/\n 期末均价 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '今采购额/\n 今销售额 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '采购均价/\n 销售均价 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '现货损益/\n 浮动损益 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_spot_weekmonthdetail', 'userinfotype', '最新价/\n 期末市值 ', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-财务报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial', 3, '报表-财务报表', '', '手机端-报表-财务报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buytodaysettleamount,buytodayrefundamount', '今付货款额/\n 今收退款额 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'selltodaysettleamount,buyunpaidamount', '今收货款额/\n 今付退款额 ', '0', 30, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buytodayinvoiceamount,selltodayinvoiceamount', '今收票额/\n 今开票额', '0', 40, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buyprepaidamount,buyunpaidamount', '预付货款额/\n 应付货款额', '0', 50, 1, 1, '', '', 'buyprepaidamount,buyunpaidamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'buypreinvoicedamount,buyuninvoicedamount', '预收票额/\n 应收票额', '0', 60, 1, 1, '', '', 'buypreinvoicedamount,buyuninvoicedamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'sellprepaidamount,sellunpaidamount', '预收货款额/\n 应收货款额', '0', 70, 1, 1, '', '', 'sellprepaidamount,sellunpaidamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'sellpreinvoicedamount,selluninvoicedamount', '预开票额/\n 应开票额', '0', 80, 1, 1, '', '', 'sellpreinvoicedamount,selluninvoicedamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial', 'todayreceivesum,todaypaysum', '今收款合计/\n 今付款合计', '0', 90, 1, 1, '', '', 'todayreceivesum,todaypaysum', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-财务报表-商品日报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_wrstandard_daydetail', 3, '报表-财务报表-商品日报表明细', '', '手机端-报表-财务报表-商品日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logdatetime', '结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_daydetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-财务报表-商品周月报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_wrstandard_weekmonthdetail', 3, '报表-财务报表-商品周月报表明细', '', '手机端-报表-财务报表-商品日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logdatetime', '日期/\n结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_wrstandard_weekmonthdetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-财务报表-品牌日报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_brand_daydetail', 3, '报表-财务报表-品牌日报表明细', '', '手机端-报表-财务报表-品牌日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logdatetime', '结算币种/\n现货品种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logtypename,relatedno', '现货商品/\n 现货品牌 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '今收票额/\n 今开票额', '0', 50, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预付货款额/\n 应付货款额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预收票额/\n 应收票额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预收货款额/\n 应收货款额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '预开票额/\n 应开票额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_daydetail', 'applyname', '今收款合计/\n 今付款合计', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-财务报表-品牌周月报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_fincial_brand_weekmonthdetail', 3, '报表-财务报表-商品周月报表明细', '', '手机端-报表-财务报表-商品日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logdatetime', '日期/\n结算币种', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '现货品牌', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'logtypename,relatedno', '今付货款额/\n 今收退款额 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'biztype,logvalue', '今收货款额/\n 今付退款额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '今收票额/\n 今开票额', '0', 60, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预付货款额/\n 应付货款额', '0', 70, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预收票额/\n 应收票额', '0', 80, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预收货款额/\n 应收贷货款额', '0', 90, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '预开票额/\n 应开票额', '0', 100, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_fincial_brand_weekmonthdetail', 'applyname', '今收款合计/\n 今付款合计', '0', 110, 1, 1, '', '', 'applyname', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-汇总损益报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_sumprofit', 3, '报表-汇总损益报表', '', '手机端-报表-汇总损益报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'currencyname', '结算币种', '0', 10, 1, 1, '', '', 'currencyname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'spotactualpl,spotfloatpl', '套保品种/\n 单位 ', '0', 20, 1, 1, '', '', 'spotactualpl,spotfloatpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'futureactualpl,futurefloatpl', '现货总量/\n 计划套保量 ', '0', 30, 1, 1, '', '', 'futureactualpl,futurefloatpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '期货持仓量/\n 期现比例', '0', 40, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '现货损益/\n 现货浮动损益', '0', 50, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '期货损益/\n 期货浮动损益', '0', 60, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit', 'sumactualpl,sumpl', '总敞口损益/\n 套保敞口损益', '0', 70, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-汇总损益报表-周月报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_sumprofit_weekmonthdetail', 3, '报表-汇总损益报表-周月报表明细', '', '手机端-报表-汇总损益报表-周月报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logdatetime', '日期 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logdatetime', '结算币种/\n 套保品种 ', '0', 20, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logtypename,relatedno', '现货总量/\n 计划套保量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logtypename,relatedno', '期货持仓量/\n 期现比例 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'logvalue', '现货损益/\n 现货浮动损益 ', '0', 50, 1, 1, '', '', 'logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '期货损益/\n 期货浮动损益', '0', 60, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '总敞口损益/\n 套保敞口损益', '0', 70, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_sumprofit_weekmonthdetail', 'sumactualpl,sumpl', '单位', '0', 80, 1, 1, '', '', 'sumactualpl,sumpl', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-期货报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures', 3, '报表-期货报表', '', '手机端-报表-期货报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logdatetime', '结算币种/\n 交易品种 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logtypename,relatedno', '交易合约/\n 方向 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-期货报表_账户明细-日报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures_daydetail', 3, '报表-期货报表_账户明细_日报表', '', '手机端-报表-期货报表_账户明细_日报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logdatetime', '交易账户/\n 结算币种 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logtypename,relatedno', '交易品种/\n 交易合约/方向 ', '0', 20, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 40, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_daydetail', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-期货报表_账户明细-周月报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_futures_weekmonthdetail', 3, '报表-期货报表_账户明细_周月报表', '', '手机端-报表-期货报表_账户明细_周月报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logdatetime', '日期 ', '0', 10, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logdatetime', '交易账户/\n 结算币种 ', '0', 20, 1, 1, '', '', 'logdatetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logtypename,relatedno', '交易品种/\n 交易合约/方向 ', '0', 30, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'logtypename,relatedno', '期初持仓量/\n 期末持仓量 ', '0', 40, 1, 1, '', '', 'ogtypename,relatedno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '今开仓量/\n 今平仓量 ', '0', 50, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '期初开仓额/\n 期末开仓额 ', '0', 60, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '期初持仓额/\n 期末持仓额 ', '0', 70, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '今开仓额/\n 今平仓额 ', '0', 80, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '开仓均价/\n 平仓均价 ', '0', 90, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '结算价/\n 结算持仓额 ', '0', 100, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '平仓损益/\n 结算损益 ', '0', 110, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '手续费/\n 交易品种期末量 ', '0', 120, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_futures_weekmonthdetail', 'biztype,logvalue', '套保品种/\n 套保品种变动量 ', '0', 130, 1, 1, '', '', 'biztype,logvalue', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表(商品维度)
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock', 3, '报表-库存报表(商品维度)', '', '手机端-报表-库存报表(商品维度)');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'deliverygoodsname,wrstandardname', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'deliverygoodsname,wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'diffqty', '库存变化量 ', '0', 20, 1, 1, '', '', 'diffqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'oristock,curstock', '期初库存量/\n 期末库存量 ', '0', 30, 1, 1, '', '', 'oristock,curstock', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'todaybuyinqty,todayselloutqty', '采购入库量/\n 销售出库量 ', '0', 40, 1, 1, '', '', 'todaybuyinqty,todayselloutqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'todayproduceinqty,todayproduceoutqty', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'todayproduceinqty,todayproduceoutqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock', 'unbuyinqty,unselloutqty', '采购未入库量/\n 销售未出库量 ', '0', 60, 1, 1, '', '', 'unbuyinqty,unselloutqty', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表(商品维度)_仓库日报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_warehouse_daydetail', 3, '报表-库存报表(商品维度)_仓库日报表明细', '', '手机端-报表-库存报表(商品维度)_仓库日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '现货品牌/\n仓库 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '库存变化量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '期初库存量/\n 期末库存量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '采购入库量/\n 销售出库量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表(商品维度)_仓库周月报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 3, '报表-库存报表(商品维度)_仓库周月报表明细', '', '手机端-报表-库存报表(商品维度)_仓库周月报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetable_mobile_report_wrstandstock_warehouse_weekmonthdetailtail', 'userinfotype', '现货品牌/\n仓库 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '库存变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_warehouse_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表-(商品维度)_品牌日报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_brand_daydetail', 3, '-报表-库存报表-品牌日报表明细', '', '手机端-报表-库存报表-品牌日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '现货品牌/\n 库存变化量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_daydetail', 'userinfotype', '采购未入库量/\n 销售未出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表-(商品维度)_品牌周月报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_wrstandstock_brand_weekmonthdetail', 3, '-报表-库存报表-品牌周月报表明细', '', '手机端-报表-库存报表-品牌周月报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '现货品种/\n 现货商品 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '现货品牌/\n 库存变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_wrstandstock_brand_weekmonthdetail', 'userinfotype', '采购未入库量/\n 销售未出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表-(仓库维度)
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock', 3, '-报表-库存报表-(仓库维度)', '', '手机端-报表-库存报表-(仓库维度)');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'warehousename,deliverygoodsname', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'warehousename,deliverygoodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'wrstandardname,diffqty', '现货商品/\n 库存变化量 ', '0', 30, 1, 1, '', '', 'wrstandardname,diffqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'oristock,curstock', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'oristock,curstock', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'todaybuyinqty,todayselloutqty', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'todaybuyinqty,todayselloutqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock', 'todayproduceinqty,todayproduceoutqty', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'todayproduceinqty,todayproduceoutqty', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表-(仓库维度)_日报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock_daydetail', 3, '-报表-库存报表-(仓库维度)_日报表明细', '', '手机端-报表-库存报表-(仓库维度)_日报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '库存变化量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_daydetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-库存报表-(仓库维度)_周月报表明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_warehousestock_weekmonthdetail', 3, '-报表-库存报表-(仓库维度)_周月报表明细', '', '手机端-报表-库存报表-(仓库维度)_周月报表明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '日期 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '仓库/\n 现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '现货商品/\n 现货品牌 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '库存变化量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '期初库存量/\n 期末库存量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '采购入库量/\n 销售出库量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_warehousestock_weekmonthdetail', 'userinfotype', '内部入库量/\n 内部出库量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 报表-定价报表
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_report_pricing', 3, '报表-定价报表', '', '手机端-报表-定价报表');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '交易对手方/\n现货类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '现货商品/\n 套保品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '期现价格差 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '期现数量差 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '今日定价均价/\n 今日定价量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '今日点价登记均价/\n 今日期货成交均价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '套保计划量/\n 今日期货关联成交量 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '现货品种 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_report_pricing', 'userinfotype', '合同编号/\n 日期 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************风管审核****************************************************************************** --
|
|
|
+-- 风管审核-增值税税率
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_taxrate', 3, '风管审核-增值税税率', '', '手机端-风管审核-增值税税率');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '原值%/\n新值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_taxrate', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 风管审核-折算系数
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_coefficient', 3, '风管审核-折算系数', '', '手机端-风管审核-折算系数');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '原值/\n新值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_coefficient', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 风管审核-成本权重
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_costweight', 3, '风管审核-成本权重', '', '手机端-风管审核-成本权重');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '现货品种 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '原值/\n新值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_costweight', 'userinfotype', '申请时间 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 风管审核-套保比例
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_riskaduit_hedgerate', 3, '风管审核-套保比例', '', '手机端-风管审核-套保比例');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '原值%/\n新值% ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_riskaduit_hedgerate', 'userinfotype', '申请时间 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货商品-修改流水-增值税税率
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_taxrate', 3, '现货商品-修改流水-增值税税率', '', '手机端-现货商品-修改流水-增值税税率');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '修改前值%/\n修改后值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_taxrate', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货商品-修改流水-折算系数
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_coefficient', 3, '现货商品-修改流水-折算系数', '', '手机端-现货商品-修改流水-折算系数');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '商品/\n套保品种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '修改前值/\n修改后值 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_coefficient', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货商品-修改流水-成本权重
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_delivery_log_costweight', 3, '现货商品-修改流水-成本权重', '', '手机端-现货商品-修改流水-成本权重');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '商品 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '申请时间/\n审核时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '修改前值%/\n修改后值% ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '申请人/\n审核人 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_delivery_log_costweight', 'userinfotype', '审核备注 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************期现关联****************************************************************************** --
|
|
|
+-- 现货——期现关联-外部成交单关联
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_outertradeorder', 3, '现货—期现关联-外部成交单关联', '', '手机端-现货—期现关联-外部成交单关联');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '合约名称/\n代码 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '成交时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '外部期货账号/\n方向 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '成交数量/\n成交价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '外部订单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '结算币种 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_outertradeorder', 'userinfotype', '交易所 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货—期现关联-期现单据关联
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_order', 3, '现货—期现关联-期现单据关联', '', '手机端-现货—期现关联-期现单据关联');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '合约名称\n代码 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '时间 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '订单类型\n成交价格 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '成交数量\n已关联数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '用户名称 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货账户名称 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_order', 'userinfotype', '期货账户代码 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 现货—期现关联-关联记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_spotfuturerelate_logs', 3, '现货—期现关联-关联记录', '', '手机端-现货—期现关联-关联记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '业务类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联数量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '现货编号 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货订单号 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货成交时间 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '用户名称 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '期货账户 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '合约名称\n代码 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '订单类型 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '成交数量 ', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '成交价格 ', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联时间 ', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_spotfuturerelate_logs', 'userinfotype', '关联方式\n关联状态 ', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************敞口****************************************************************************** --
|
|
|
+-- 敞口--实时敞口
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_realtime', 3, '敞口--实时敞口', '', '手机端-敞口--实时敞口');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'middleGoodsName,middleGoodsCode', '套保品种\n 代码 ', '0', 10, 1, 1, '', '', 'middleGoodsName,middleGoodsCode', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'middleGoodsName,middleGoodsCode', '套保量\n 套利量 ', '0', 20, 1, 1, '', '', 'middleGoodsName,middleGoodsCode', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'totalNeedHedgeQty,totalFutureQty', '现货总量\n 变动量 ', '0', 30, 1, 1, '', '', 'totalNeedHedgeQty,totalFutureQty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'needHedgeExposoure,needHedgeRatio', '套保变动量\n 套利变动量 ', '0', 40, 1, 1, '', '', 'needHedgeExposoure,needHedgeRatio', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'totalExposure,totalHedgeRatio', '套保比例\n 套利比例 ', '0', 50, 1, 1, '', '', 'totalExposure,totalHedgeRatio', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalSpotQty,diffSpotQty', '应套保量\n 应套利量 ', '0', 60, 1, 1, '', '', 'oriTotalSpotQty,diffSpotQty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '现货应套保总量\n 变动量 ', '0', 70, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '期货总量\n 变动量 ', '0', 80, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '套保敞口\n 变动量 ', '0', 90, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_realtime', 'oriTotalFutuQty,diffFutuQty', '总敞口\n 变动量 ', '0', 100, 1, 1, '', '', 'oriTotalFutuQty,diffFutuQty', 0, 0, '');
|
|
|
+
|
|
|
+-- 敞口--现货头寸
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spotposition', 3, '敞口--现货头寸', '', '手机端-敞口--现货头寸');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'wrstandardname,wrstandardcode', '现货商品 ', '0', 10, 1, 1, '', '', 'wrstandardname,wrstandardcode', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'oritoalspotqty', '昨日数量', '0', 20, 1, 1, '', '', 'oritoalspotqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'increaseqty,decreaseqty', '增加数量\n减少数量 ', '0', 30, 1, 1, '', '', 'increaseqty,decreaseqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition', 'totalspotqty', '当前数量', '0', 40, 1, 1, '', '', 'totalspotqty', 0, 0, '');
|
|
|
+
|
|
|
+-- 敞口--期货头寸
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futuresposition', 3, '敞口--期货头寸', '', '手机端-敞口--期货头寸');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'goodsname,goodscode', '期货合约\n代码 ', '0', 10, 1, 1, '', '', 'goodsname,goodscode', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'totalydqty', '昨日数量', '0', 20, 1, 1, '', '', 'totalydqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'increaseqty,decreaseqty', '增加数量\n减少数量 ', '0', 30, 1, 1, '', '', 'increaseqty,decreaseqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition', 'totalcurqty', '当前数量', '0', 40, 1, 1, '', '', 'totalcurqty', 0, 0, '');
|
|
|
+
|
|
|
+-- 敞口--实时敞口--期货明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futures_detail', 3, '敞口--实时敞口--期货明细', '', '手机端-敞口--实时敞口--期货明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'goodsname,goodscode', '期货合约\n代码 ', '0', 10, 1, 1, '', '', 'goodsname,goodscode', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'ydqty,curqty', '昨日持仓\n当前持仓 ', '0', 20, 1, 1, '', '', 'ydqty,curqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'diffqty', '持仓变动量', '0', 30, 1, 1, '', '', 'diffqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'diffhedgeqty', '(套保品种)\n变动量 ', '0', 40, 1, 1, '', '', 'diffhedgeqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futures_detail', 'agreeunit,convertratio', '合约单位\n期货品种系数 ', '0', 50, 1, 1, '', '', 'agreeunit,convertratio', 0, 0, '');
|
|
|
+
|
|
|
+-- 敞口--实时敞口--现货明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spot_detail', 3, '敞口--实时敞口--现货明细', '', '手机端-敞口--实时敞口--现货明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '时间\n类型 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '现货商品\n数量 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '(套保品种)\n变动量 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '合同(计划)编号 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spot_detail', 'userinfotype', '折算系数 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 敞口--现货头寸--现货明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_spotposition_detail', 3, '敞口--现货头寸--现货明细', '', '手机端-敞口--现货头寸--现货明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'strtime\nrelatedid', '时间\n编号 ', '0', 10, 1, 1, '', '', 'strtime\nrelatedid', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'contracttype', '类型', '0', 20, 1, 1, '', '', 'contracttype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'wrstandardname', '现货品种', '0', 30, 1, 1, '', '', 'wrstandardname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_spotposition_detail', 'qty', '数量', '0', 40, 1, 1, '', '', 'qty', 0, 0, '');
|
|
|
+
|
|
|
+-- 敞口--期货头寸--期货明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_exposure_futuresposition_detail', 3, '敞口--现货头寸--期货明细', '', '手机端-敞口--现货头寸--期货明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '时间\n期货合约 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '开平', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_exposure_futuresposition_detail', 'userinfotype', '数量(手)', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************资金查询****************************************************************************** --
|
|
|
+-- 资金查询--用户资金
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fundsearch_userinfo', 3, '资金查询--用户资金', '', '手机端-资金查询--用户资金');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '登录账号\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '客户类型\n名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '资金账号\n手机号码', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '期末余额\n期初余额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日充值入金\n今日支付入金 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日全额平仓金额\n今日全额建仓金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_userinfo', 'userinfotype', '今日出金', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 资金查询--资金流水
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_fundsearch_flow', 3, '资金查询--资金流水', '', '手机端-资金查询--资金流水');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '日期+时间\n结算币种 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '所属机构\n用户名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '期货账户\n商品/代码', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '操作类型\n变动金额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '变动前金额\n变动后金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_fundsearch_flow', 'userinfotype', '关联单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************套保查询****************************************************************************** --
|
|
|
+-- 套保查询--现货合同
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_spot', 3, '套保查询--现货合同', '', '手机端-套保查询--现货合同');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '日期+时间\n交易用户 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '合同编号\n合同类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '采购方\n销售方', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '现货品种\n现货商品', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '现货品牌\n期限用途 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '今定价量\n定价金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '均价\n套保品种 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_spot', 'userinfotype', '套保变动量\n应套保变动量 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 套保查询--套保计划
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_plan', 3, '套保查询--套保计划', '', '手机端-套保查询--套保计划');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '日期+时间\n交易用户 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '计划类型\n计划名称 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '现货品种\n套保品种', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '现货商品\n计划量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '套保品种变动量\n应套保总量变化量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_plan', 'userinfotype', '期限用途 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 套保查询--参数调整
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hedgesearch_adjust', 3, '套保查询--参数调整', '', '手机端-套保查询--参数调整');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '日期+时间 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '套保品种\n参数类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '调整前参数值\n调整后参数值', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '套保总量\n应套保总量变化量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hedgesearch_adjust', 'userinfotype', '调整前应套保总量\n调整后应套保总量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************合同查询****************************************************************************** --
|
|
|
+-- 合同查询--点价记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_point', 3, '合同查询--点价记录', '', '手机端-合同查询--点价记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '现货品牌\n点价价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '升贴水\n点价数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '点价金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '审核人\n登记人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_point', 'userinfotype', '登记时间 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 合同查询--交收记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_settle', 3, '合同查询--交收记录', '', '手机端-合同查询--交收记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '现货品牌\n交手量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '其他费用\n调整保证金 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '调整金额 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '审核人\n登记人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_settle', 'userinfotype', '登记时间 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 合同查询--款项记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_payment', 3, '合同查询--款项记录', '', '手机端-合同查询--款项记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '现货品牌\n款项类型 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_payment', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 合同查询-- 发票记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_invoice', 3, '合同查询--发票记录', '', '手机端-合同查询--发票记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '现货品牌\n发票类型 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '金额 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_invoice', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 合同查询-- 入库记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_in', 3, '合同查询--入库记录', '', '手机端-合同查询--入库记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '现货品牌\n仓库 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '入库类型\n入库数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_in', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 合同查询-- 出库记录
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_contractsearch_out', 3, '合同查询--出库记录', '', '手机端-合同查询--出库记录');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '审核时间\n合同编号 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '合同类型\n对手方 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '现货品种\n现货商品 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '现货品牌\n仓库 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '出库类型\n出库数量 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '审核人\n登记人 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_contractsearch_out', 'userinfotype', '登记时间 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************单据查询****************************************************************************** --
|
|
|
+-- 单据查询--持仓单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_position', 3, '单据查询--持仓单', '', '手机端-单据查询--持仓单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '所属机构\n用户名称 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '期货账户\n方向 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '今持仓\n总持仓 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '今仓可用\n总仓可用 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '开仓均价\n持仓均价 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '逐笔浮盈\n盯市浮盈 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '盈亏比例\n结算币种 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_position', 'userinfotype', '交易所 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 单据查询--委托单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_order', 3, '单据查询--委托单', '', '手机端-单据查询--委托单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '用户名称\n期货账户 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '订单类型\n委托数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '成交数量\n委托价 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '冻结保证金\n订单类型 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '订单号\n结算币种 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '委托人\n撤单人 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_order', 'userinfotype', '交易所 ', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 单据查询--成交单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_trade', 3, '单据查询--成交单', '', '手机端-单据查询--成交单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '用户名称\n期货账户 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '订单类型\n成交数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '成交价格\n手续费 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '平仓盈亏\n平仓盈亏(逐笔) ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '订单号\n委托人 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_trade', 'userinfotype', '结算币种\n交易所 ', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 单据查询--外部委托单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_outorder', 3, '单据查询--外部委托单', '', '手机端-单据查询--外部委托单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '日期+时间\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '外部期货账户\n订单类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '商品\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '委托数量\n成交数量 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '委托价\n订单状态 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '外部订单号\n内部订单号 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outorder', 'userinfotype', '结算币种\n交易所 ', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 单据查询--外部成交单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_ordersearch_outtrade', 3, '单据查询--外部成交单', '', '手机端-单据查询--外部成交单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '日期+时间/\n所属机构 ', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '外部期货账户/\n订单类型 ', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '商品/\n代码 ', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '成交数量/\n成交价格 ', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '外部订单号/\n内部订单号 ', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_ordersearch_outtrade', 'userinfotype', '结算币种/\n交易所 ', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- *******************************************************************************资金信息****************************************************************************** --
|
|
|
+--资金信息(个人)
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_account_person', 3, '资金信息-个人', '', '手机端-资金信息-个人');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'currency', '币种', '0', 10, 1, 1, '', '', 'currency', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'amountWorth', '当前权益', '0', 20, 1, 1, '', '', 'amountWorth', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'availMargin', '可用金额', '0', 30, 1, 1, '', '', 'availMargin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'usedmargin', '占用金额', '0', 40, 1, 1, '', '', 'usedmargin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'freezeAmount', '冻结金额', '0', 50, 1, 1, '', '', 'freezeAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'holderDynProfit', '持仓盈亏', '0', 60, 1, 1, '', '', 'holderDynProfit', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'closepl', '平仓盈亏', '0', 70, 1, 1, '', '', 'closepl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'totalAmount', '净资产', '0', 80, 1, 1, '', '', 'totalAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'totalMarketAmount', '总市值', '0', 90, 1, 1, '', '', 'totalMarketAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'currentbalance', '余额', '0', 100, 1, 1, '', '', 'currentbalance', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'inamount', '入金', '0', 110, 1, 1, '', '', 'inamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_person', 'outamount', '出金', '0', 120, 1, 1, '', '', 'outamount', 0, 0, '');
|
|
|
+
|
|
|
+--资金信息(企业)
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_account_company', 3, '资金信息-企业', '', '手机端-资金信息-企业');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'currency', '币种', '0', 10, 1, 1, '', '', 'currency', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'amountWorth', '当前权益', '0', 20, 1, 1, '', '', 'amountWorth', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'availMargin', '可用金额', '0', 30, 1, 1, '', '', 'availMargin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'usedmargin', '占用金额', '0', 40, 1, 1, '', '', 'usedmargin', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'freezeAmount', '冻结金额', '0', 50, 1, 1, '', '', 'freezeAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'holderDynProfit', '持仓盈亏', '0', 60, 1, 1, '', '', 'holderDynProfit', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'closepl', '平仓盈亏', '0', 70, 1, 1, '', '', 'closepl', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'totalAmount', '净资产', '0', 80, 1, 1, '', '', 'totalAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'totalMarketAmount', '总市值', '0', 90, 1, 1, '', '', 'totalMarketAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'financedAmount', '融资额', '0', 100, 1, 1, '', '', 'financedAmount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'currentbalance', '余额', '0', 110, 1, 1, '', '', 'currentbalance', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'inamount', '入金', '0', 120, 1, 1, '', '', 'inamount', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_account_company', 'outamount', '出金', '0', 130, 1, 1, '', '', 'outamount', 0, 0, '');
|
|
|
+
|
|
|
+--------------------------------------------------------------------------------------------------------千海金--------------------------------------------------------------------------------------
|
|
|
+-- 千海金-铂金宝
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_quote_bjb', 3, '千海金-铂金宝', '', '手机端-千海金-铂金宝');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'goodsname', '商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'bid', '回购', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'ask', '销售', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '涨幅', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '涨跌', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '今开', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '最高', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '最低', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '昨收', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_bjb', 'userinfotype', '时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 千海金-饰品回收
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_quote_sphs', 3, '千海金-饰品回收', '', '手机端-千海金-饰品回收');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'goodsname', '商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '回收', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '涨幅', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_quote_sphs', 'userinfotype', '涨跌', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+--------------------------------------------------------------------------------------------------------云融大宗--------------------------------------------------------------------------------------
|
|
|
+-- 云融大宗-仓单贸易_一口价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdmy_fixed', 3, '云融大宗-仓单贸易_一口价', '', '手机端-云融大宗-仓单贸易_一口价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_fixed', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-仓单贸易_浮动价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdmy_float', 3, '云融大宗-仓单贸易_浮动价', '', '手机端-云融大宗-仓单贸易_浮动价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '卖基差', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '买基差', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '期货合约', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdmy_float', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-仓单贸易-贸易圈
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_cdmy_myq', 3, '云融大宗-仓单贸易-贸易圈', '', '手机端-云融大宗-仓单贸易-贸易圈');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '履约方式', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '议价', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '整单', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '挂牌有效期', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '履约保证金', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '仓库', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdmy_myq', 'userinfotype', '挂牌方', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-仓单预售_一口价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdys_fixed', 3, '云融大宗-仓单预售_一口价', '', '手机端-云融大宗-仓单预售_一口价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_fixed', 'userinfotype', '仓库', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-仓单预售_浮动价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_cdys_float', 3, '云融大宗-仓单预售_浮动价', '', '手机端-云融大宗-仓单预售_浮动价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '卖基差', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '买基差', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '期货合约', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_cdys_float', 'userinfotype', '仓库', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-仓单预售-贸易圈
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_cdys_myq', 3, '云融大宗-仓单贸易-仓单预售-贸易圈', '', '手机端-云融大宗-仓单贸易-仓单预售-贸易圈');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '履约方式', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '议价', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '整单', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '交收月', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '挂牌有效期', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '履约保证金', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '仓库', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_cdys_myq', 'userinfotype', '挂牌方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-订单交易_挂牌转让
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_gpzr', 3, '云融大宗-订单交易_挂牌转让', '', '手机端-云融大宗-订单交易_挂牌转让');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_gpzr', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-订单交易_基差点价
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_jcdj', 3, '云融大宗-订单交易_基差点价', '', '手机端-云融大宗-订单交易_基差点价');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_jcdj', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-订单交易_商品掉期
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_ddjy_spdq', 3, '云融大宗-订单交易_商品掉期', '', '手机端-云融大宗-订单交易_商品掉期');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'goodsname', '商品/标的', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '当前价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '涨跌', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '涨幅', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '振幅', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '开盘', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '最高', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '最低', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '结算', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_ddjy_spdq', 'userinfotype', '昨结算', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+
|
|
|
+-- 云融大宗-现货仓单_明细
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_mx', 3, '云融大宗-现货仓单_明细', '', '手机端-云融大宗-现货仓单_明细');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'deliverygoodsname/\nwrtypename', '品种/商品', '0', 10, 1, 1, '', '', 'deliverygoodsname/\nwrtypename', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'warehousename', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'qty', '库存数量', '0', 30, 1, 1, '', '', 'qty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'freezerqty', '冻结数量', '0', 40, 1, 1, '', '', 'freezerqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'pledgeqty', '质押数量', '0', 50, 1, 1, '', '', 'pledgeqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'enableqty', '可用数量', '0', 60, 1, 1, '', '', 'enableqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'wrholdeno', '仓单编号', '0', 70, 1, 1, '', '', 'wrholdeno', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_mx', 'createtime', '过户时间', '0', 80, 1, 1, '', '', 'createtime', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-现货仓单_挂单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_gd', 3, '云融大宗-现货仓单_挂单', '', '手机端-云融大宗-现货仓单_挂单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '品种/商品', '0', 10, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'buyorsell', '挂牌类型', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'futushow', '挂牌方式', '0', 40, 1, 1, '', '', 'futushow', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'futushow', '期货合约/基差', '0', 50, 1, 1, '', '', 'futushow', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'fixedprice', '挂牌价格', '0', 60, 1, 1, '', '', 'fixedprice', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'orderqty', '挂牌数量', '0', 70, 1, 1, '', '', 'orderqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'tradeqty', '成交数量', '0', 80, 1, 1, '', '', 'tradeqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'ordertime', '挂牌时间', '0', 90, 1, 1, '', '', 'ordertime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'wrtradeorderid', '挂牌单号', '0', 100, 1, 1, '', '', 'wrtradeorderid', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_gd', 'wrtradeorderstatus', '状态', '0', 110, 1, 1, '', '', 'wrtradeorderstatus', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-现货仓单_议价单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_yjd', 3, '云融大宗-现货仓单_议价单', '', '手机端-云融大宗-现货仓单_议价单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '品种/商品', '0', 10, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌方', '0', 20, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '仓库', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌类型', '0', 40, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌价格', '0', 50, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌数量', '0', 60, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '挂牌有效期', '0', 70, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '履约保证金', '0', 80, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '履约方式', '0', 90, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价价格', '0', 100, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价数量', '0', 110, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价时间', '0', 120, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_yjd', 'buyorsell', '最新议价状态', '0', 130, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-现货仓单_成交
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_cj', 3, '云融大宗-现货仓单_成交', '', '手机端-云融大宗-现货仓单_成交');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'deliverygoodsname/\nwrtypename', '品种/商品', '0', 10, 1, 1, '', '', 'deliverygoodsname/\nwrtypename', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'warehousename', '仓库', '0', 20, 1, 1, '', '', 'warehousename', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'buyorsell', '挂牌类型', '0', 30, 1, 1, '', '', 'buyorsell', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeprice', '成交价格', '0', 40, 1, 1, '', '', 'tradeprice', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeqty', '成交数量', '0', 50, 1, 1, '', '', 'tradeqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradeprice*tradeqty', '成交金额', '0', 60, 1, 1, '', '', 'tradeprice*tradeqty', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'matchusername', '手续费', '0', 70, 1, 1, '', '', 'matchusername', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'matchusername', '对手方', '0', 80, 1, 1, '', '', 'matchusername', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'tradetime', '成交时间', '0', 90, 1, 1, '', '', 'tradetime', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_cj', 'wrtradedetailid', '成交单号', '0', 100, 1, 1, '', '', 'wrtradedetailid', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-现货仓单_提货
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_xhcd_crk', 3, '云融大宗-现货仓单_提货', '', '手机端-云融大宗-现货仓单_提货');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '时间', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '物流信息', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_xhcd_crk', 'userinfotype', '状态', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-预售仓单_订单汇总
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_ddhz', 3, '云融大宗-预售仓单_订单汇总', '', '手机端-云融大宗-预售仓单_订单汇总');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '预售数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '成交数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '冻结数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_ddhz', 'userinfotype', '可用数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-预售仓单_挂单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_gd', 3, '云融大宗-预售仓单_挂单', '', '手机端-云融大宗-预售仓单_挂单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '交收月', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '期货合约/基差', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌价格', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌数量', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '成交数量', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '挂牌单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_gd', 'userinfotype', '状态', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-预售仓单_议价单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd', 3, '云融大宗-预售仓单_议价单', '', '手机端-云融大宗-预售仓单_议价单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌方', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '仓库', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌价格', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '挂牌有效期', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '交收月', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '履约保证金', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '履约方式', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价价格', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价数量', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价时间', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd', 'userinfotype', '最新议价状态', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-预售仓单_议价单_别人对我
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd_me', 3, '云融大宗-预售仓单_议价单_别人对我', '', '手机端-云融大宗-预售仓单_议价单_别人对我');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'goodsname', '议价人', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '数量', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '价格', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '时间', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_me', 'userinfotype', '状态', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-预售仓单_议价单_我对别人
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_yjd_he', 3, '云融大宗-预售仓单_议价单_我对别人', '', '手机端-云融大宗-预售仓单_议价单_我对别人');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '数量', '0', 10, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '价格', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '时间', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_yjd_he', 'userinfotype', '状态', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-预售仓单_成交
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_yscd_cj', 3, '云融大宗-预售仓单_成交', '', '手机端-云融大宗-预售仓单_成交');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '交收月', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '挂牌类型', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交价格', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交金额', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'matchusername', '手续费', '0', 80, 1, 1, '', '', 'matchusername', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'matchusername', '对手方', '0', 90, 1, 1, '', '', 'matchusername', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交时间', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_yscd_cj', 'userinfotype', '成交单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-商品订单-订单汇总
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_hyhz', 3, '云融大宗-商品订单-订单汇总', '', '手机端-云融大宗-商品订单-订单汇总');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持有数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '可用数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '冻结数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持仓均价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '现价', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '持仓金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '市值', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_hyhz', 'userinfotype', '浮动盈亏', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-合约订单-委托
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_wt', 3, '云融大宗-合约订单-委托', '', '手机端-云融大宗-合约订单-委托');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '成交数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托单号', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '委托时间', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_wt', 'userinfotype', '状态', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-合约订单-协议单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_xyd', 3, '云融大宗-合约订单-协议单', '', '手机端-云融大宗-合约订单-协议单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '方向', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '协议价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '状态', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '关联持仓', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_xyd', 'userinfotype', '时间', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-合约订单-成交
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_cj', 3, '云融大宗-合约订单-成交', '', '手机端-云融大宗-合约订单-成交');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交价', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '手续费', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交单号', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_cj', 'userinfotype', '成交时间', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-合约订单-交收
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_hydd_js', 3, '云融大宗-合约订单-交收', '', '手机端-云融大宗-合约订单-交收');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'goodsname', '订单合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '类型', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '合约数量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '合约金额', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选数量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选价格', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '点选货款', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '升贴水', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收均价', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '交收申请时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_hydd_js', 'userinfotype', '状态', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-履约信息-买履约
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_lyxx_buy', 3, '云融大宗-履约信息-买履约', '', '手机端-云融大宗-履约信息-买履约');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '交收月', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '付款方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约前冻结', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约冻结剩余', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '总金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '已付金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '溢短金额', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '关联单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '卖方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '履约状态', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '当前步骤', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_buy', 'userinfotype', '开始时间', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-履约信息-卖履约
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_hnst_lyxx_sell', 3, '云融大宗-履约信息-卖履约', '', '手机端-云融大宗-履约信息-卖履约');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'goodsname', '品种/商品', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '仓库', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '类型', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '交收月', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '付款方式', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约前冻结', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约冻结剩余', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '总金额', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '已付金额', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '溢短金额', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '关联单号', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '买方', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '履约状态', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '当前步骤', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_hnst_lyxx_sell', 'userinfotype', '开始时间', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-融资管理-申请单
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_rzgl_sqd', 3, '云融大宗-融资管理-申请单', '', '手机端-云融大宗-融资管理-申请单');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'goodsname', '类型/状态', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '借款金额', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '购买商品', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '商品数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '借款天数', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '保证金', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '费用(日)', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '结息方式', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '最小计费天数', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '融出方', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_sqd', 'userinfotype', '申请时间', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-融资管理-合同
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_rzgl_ht', 3, '云融大宗-融资管理-合同', '', '手机端-云融大宗-融资管理-合同');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'goodsname', '类型/状态', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '借款金额', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '购买商品', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '商品数量', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '剩余金额', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '剩余数量', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '已回购数量', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '已结费用', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '未结费用', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '费用欠款', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '融出方', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_rzgl_ht', 'userinfotype', '截止日期', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+-- 云融大宗-参考行情
|
|
|
+insert into TableDefine (TableKey, TableType, TableName, TabelMenu, Remark) values ('table_mobile_yrdz_ckhq', 3, '云融大宗-参考行情', '', '手机端-云融大宗-参考行情');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'goodsname', '合约', '0', 10, 1, 1, '', '', 'goodsname', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '卖价', '0', 20, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '卖量', '0', 30, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '买价', '0', 40, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '买量', '0', 50, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最新价', '0', 60, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '涨跌', '0', 70, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '幅度', '0', 80, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '今开', '0', 90, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '昨收', '0', 100, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最低', '0', 110, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '最高', '0', 120, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '振幅', '0', 130, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '总量', '0', 140, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '现量', '0', 150, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '持仓量', '0', 160, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '日增', '0', 170, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+insert into TableColumnConfig (AutoID, TableKey, ColumnField, ColumnTitle, ColumnWidth, OrderIndex, IsShow, AlignType, FormatterType, FormatterString, Remark, NeedSummary, SummaryType, GroupName)
|
|
|
+values (seq_TableColumnConfig.Nextval, 'table_mobile_yrdz_ckhq', 'userinfotype', '金额', '0', 180, 1, 1, '', '', 'userinfotype', 0, 0, '');
|
|
|
+
|
|
|
+commit;
|