huangbin 4 lat temu
rodzic
commit
6eee4c80aa

+ 3 - 1
src/common/components/filter/index.vue

@@ -11,7 +11,9 @@
               @change="item.change">
       <a-select-option v-for="(option, j) in item.list"
                        :key="j + '22'"
-                       :value="option.value">{{option.lable}}</a-select-option>
+                       :value="option.value">
+        {{option.lable}}
+      </a-select-option>
     </a-select>
     <a-input v-model:value="item.value"
              v-for="(item,i) in inputList"

+ 2 - 2
src/common/methods/request/resultInfo.ts

@@ -80,10 +80,10 @@ export function controlResultInfo(fn: Promise<any>, msgInfo: [string, string] =
  */
 export function controlResultErrInfo(fn: Promise<any>) {
     return fn.then(res => {
-        console.log('查询数据', res)
+        console.log('查询数据成功:', res)
         return res
     }).catch(err => {
-        console.error(err)
+        console.error('查询数据失败:', err)
         message.error(err)
     })
 }

+ 4 - 0
src/common/methods/table/interface.ts

@@ -28,6 +28,7 @@ export interface TableKey {
     table_pcweb_exposure_report: "string; // 报表-敞口报表"
     table_pcweb_exposure_spotposition: "string; // 敞口--现货头寸"
     table_pcweb_exposure_spotposition_detail: "string; // 敞口--现货头寸--现货明细"
+    table_pcweb_finance_report: "string; // 报表-财务报表"
     table_pcweb_fincial_aduit_fp: "string; // 业务审核-发票"
     table_pcweb_fincial_aduit_kx: "string; // 财务审核-款项"
     table_pcweb_futures_report: "string; // 报表-期货报表"
@@ -52,10 +53,13 @@ export interface TableKey {
     table_pcweb_someprice_detail_kx: "string; // 现货合同详情-款项记录"
     table_pcweb_someprice_detail_stock: "string; // 现货合同详情-入库记录"
     table_pcweb_someprice_detail_stock_out: "string; // 现货合同详情-出库记录"
+    table_pcweb_spot_report: "string; // 报表-现货报表"
     table_pcweb_stock_aduit_in: "string; // 库存审核-入库"
     table_pcweb_stock_aduit_out: "string; // 库存审核-出库"
     table_pcweb_stock_manage_applylog: "string; // 库存管理-当前库存"
     table_pcweb_stock_manage_current: "string; // 库存管理-当前库存"
     table_pcweb_userinfo: "string; // 客户资料"
     table_pcweb_warehouse: "string; // 仓库信息"
+    table_pcweb_warehouse_category_report: "string; // 报表-库存报表"
+    table_pcweb_warehouse_report: "string; // 报表-库存报表"
 }

+ 21 - 17
src/common/setup/filter/index.ts

@@ -4,23 +4,25 @@ import { InputList, SelectList } from './interface';
 
 
 export function handleFilter(select: SelectList[] | Ref<SelectList[]>, input: InputList[], context: SetupContext) {
-    const selected = isRef(select) ? select.value.map(e => {
-        const fn = e.change;
-        if (fn) {
-            e.change = (value: any) => {
-                fn(value.key);
-                search()
+    function getSelectedData(select: SelectList[] | Ref<SelectList[]>) {
+        return isRef(select) ? select.value.map(e => {
+            const fn = e.change;
+            if (fn) {
+                e.change = (value: any) => {
+                    fn(value.key);
+                    search()
+                }
+            } else {
+                e.change = search
             }
-        } else {
-            e.change = search
-        }
 
-        return e
-    }) : select.map(e => {
-        e.change = search
-        return e
-    })
-    const selectList = ref<type.SelectList[]>(selected);
+            return e
+        }) : select.map(e => {
+            e.change = search
+            return e
+        })
+    }
+    const selectList = ref<type.SelectList[]>(getSelectedData(select));
     const inputList = ref<type.InputList[]>(input);
 
     const fixedBtnList = ref<type.FixedBtnList[]>([
@@ -46,8 +48,10 @@ export function handleFilter(select: SelectList[] | Ref<SelectList[]>, input: In
         inputList.value.forEach((e) => (e.value = ''));
         search();
     }
-
-    return { selectList, inputList, fixedBtnList };
+    function updateSelected(select: SelectList[] | Ref<SelectList[]>,) {
+        selectList.value = getSelectedData(select)
+    }
+    return { selectList, inputList, fixedBtnList, updateSelected };
 }
 
 export type { InputList, SelectList };

+ 25 - 28
src/services/go/ermcp/finance-report/index.ts

@@ -1,59 +1,56 @@
 /** ================================= 报表 - 财务报表 ================================**/
 
-import APP from '@/services';
-import * as type from './interface';
+import { getUsrId } from '@/services/bus/user';
 import { commonSearch_go } from '@/services/go/index';
-import { QueryFinanceDayReportReq } from './interface';
-import { QueryFinanceMonthReportReq } from './interface';
+import * as type from './interface';
 
 /**
  * 查询财务日报表(菜单:报表查询/财务报表/日报表)
- * @param queryInfo 查询信息
+ * @param tradedate 交易日(格式:yyyyMMdd)
  * @returns 财务日报表数据
  */
-export async function QueryFinanceDayReport(queryInfo: QueryFinanceDayReportReq): Promise<type.QueryFinanceDayReportRsp[]> {
-    try {
-        return commonSearch_go('/Ermcp/QryReportDayFinance', queryInfo);
-    } catch (err) {
+export async function QueryFinanceDayReport(tradedate: string): Promise<type.QueryFinanceDayReportRsp[]> {
+    const userid = getUsrId()
+    return commonSearch_go('/Ermcp/QryReportDayFinance', { tradedate, userid }).catch(err => {
         throw new Error(`查询财务日报表: ${err.message}`);
-    }
+    });
+
 }
 
 /**
  * 查询财务日报表发票(菜单:报表查询/财务报表/日报表/发票)
- * @param queryInfo 查询信息
+ * @param tradedate 交易日(格式:yyyyMMdd)
  * @returns 财务发票日报表
  */
-export async function QueryFinanceInvoiceDayReport(queryInfo: QueryFinanceDayReportReq): Promise<type.QueryFinanceInvoiceDayReportRsp[]> {
-    try {
-        return commonSearch_go('/Ermcp3/QryReportDayFinanceFp', queryInfo);
-    } catch (err) {
+export async function QueryFinanceInvoiceDayReport(tradedate: string): Promise<type.QueryFinanceInvoiceDayReportRsp[]> {
+    const userid = getUsrId()
+    return commonSearch_go('/Ermcp3/QryReportDayFinanceFp', { tradedate, userid }).catch(err => {
         throw new Error(`查询财务日报表发票: ${err.message}`);
-    }
+    });
+
 }
 
 /**
  * 查询财务日报表款项(菜单:报表查询/财务报表/日报表/款项)
- * @param queryInfo 查询信息
+ * @param tradedate 交易日(格式:yyyyMMdd)
  * @returns 财务付款日报表
  */
-export async function QueryFinancePayDayReport(queryInfo: QueryFinanceDayReportReq): Promise<type.QueryFinancePayDayReportRsp[]> {
-    try {
-        return commonSearch_go('/Ermcp3/QryReportDayFinanceKx', { queryInfo });
-    } catch (err) {
+export async function QueryFinancePayDayReport(tradedate: string): Promise<type.QueryFinancePayDayReportRsp[]> {
+    const userid = getUsrId()
+    return commonSearch_go('/Ermcp3/QryReportDayFinanceKx', { tradedate, userid }).catch(err => {
         throw new Error(`查询财务日报表款项: ${err.message}`);
-    }
+    });
+
 }
 
 /**
  * 查询财务月报表
- * @param queryInfo 查询信息
+ * @param tradedate 交易日(格式:yyyyMMdd)
  * @returns 财务月报表数据
  */
-export async function QueryFinanceMonthReport(queryInfo: QueryFinanceMonthReportReq): Promise<type.QueryFinanceMonthReportRsp[]> {
-    try {
-        return commonSearch_go('/Ermcp/QryReportMonthFinance', { queryInfo });
-    } catch (err) {
+export async function QueryFinanceMonthReport(tradedate: string): Promise<type.QueryFinanceMonthReportRsp[]> {
+    const userid = getUsrId()
+    return commonSearch_go('/Ermcp/QryReportMonthFinance', { tradedate, userid }).catch(err => {
         throw new Error(`查询财务月报表: ${err.message}`);
-    }
+    });
 }

+ 95 - 18
src/views/report/finance-report/components/filterTable/index.vue

@@ -1,39 +1,115 @@
 <template>
   <!-- 过滤客户资料表格 -->
   <div class="filterTable">
-    <FilterOption :selectList="selectList"
-                  :inputList="inputList"
-                  :fixedBtnList="fixedBtnList" />
-    <slot></slot>
+    <div class="filter-custom-table">
+      <a-select label-in-value
+                class="conditionSelect"
+                style="width: 120px"
+                v-model:value="selectedReportType"
+                @change="update"
+                placeholder="请选择报表类型">
+        <a-select-option v-for="item in reportType"
+                         :key="item.value">
+          {{item.lable}}
+        </a-select-option>
+      </a-select>
+      <a-space direction="vertical">
+        <a-date-picker v-model:value="date"
+                       @change="update"
+                       :format="dateFormat" />
+      </a-space>
+      <!-- <FilterOption :selectList="selectList"
+                    :inputList="[]"
+                    :fixedBtnList="fixedBtnList" /> -->
+    </div>
   </div>
 </template>
 
 <script lang="ts">
 import FilterOption from '@/common/components/filter/index.vue';
 import { defineComponent } from 'vue';
-import { handleFilter, InputList, SelectList } from '@/common/setup/filter';
+import { handleReprotType } from '../../../setup';
+import { ref } from 'vue';
+import { Moment } from 'moment';
+import moment from 'moment';
+import { handleFilter, SelectList } from '@/common/setup/filter';
+import { initData } from '@/common/methods';
+import { handlerManagerList } from '@/common/setup/user';
+import { QueryMiddleGoodsDetail } from '@/services/go/ermcp/goodsInfo';
+import { SelectOption } from '@/common/setup/filter/interface';
+
 export default defineComponent({
-    name: 'business-review-filter-table',
+    name: 'finance-filter-table',
     components: { FilterOption },
     setup(props, context) {
+        const { selectedReportType, reportType } = handleReprotType();
+
+        const dateFormat = 'YYYYMMDD';
+        const date = ref<Moment>(moment(new Date(), 'YYYYMMDD'));
+
+        function update() {
+            const obj = { type: selectedReportType.value.key, date: moment(date.value).format(dateFormat) };
+            context.emit('update', obj);
+        }
         const select: SelectList[] = [
             {
                 value: undefined,
-                key: 'contracttype',
-                placeholder: '全部合同类型',
-                list: [
-                    { value: 1, lable: '采购' },
-                    { value: -1, lable: '销售' },
-                ],
+                key: 'userId',
+                placeholder: '全部交易用户',
+                list: [],
+            },
+            {
+                value: undefined,
+                key: 'warehousetype',
+                placeholder: '全部套保品种',
+                list: [],
             },
         ];
-        const input: InputList[] = [
-            { value: '', placeholder: '模糊搜索对手方', key: 'buyusernameOrsellusername' },
-            { value: '', placeholder: '模糊搜索合同编号', key: 'contractno' },
-            { value: '', placeholder: '模糊搜索现货品种', key: 'deliverygoodsname' },
-        ];
+        const loading = ref<boolean>(false);
+        // 交易用户
+        const { tableList: userList, queryTable } = handlerManagerList(loading, 2);
+        const { selectList, inputList, fixedBtnList, updateSelected } = handleFilter(select, [], context);
+        // 获取交易用户
+        function getUserList() {
+            return queryTable().then(() => {
+                const result: SelectOption[] = [];
+                userList.value.forEach((e) => {
+                    e.userlist.forEach((el) => {
+                        result.push({ value: el.loginid, lable: `${el.loginname}-${el.logincode}` });
+                    });
+                });
+                return result;
+            });
+        }
+        // 获取套保品种
+        function getTBList() {
+            return QueryMiddleGoodsDetail().then((res) => {
+                const result: SelectOption[] = [];
+                res.forEach((e) => {
+                    const { isvalid, middlegoodsname, middlegoodsid } = e.mg;
+                    if (isvalid) {
+                        result.push({ value: middlegoodsid, lable: middlegoodsname });
+                    }
+                });
+                return result;
+            });
+        }
+        // initData(() => {
+        //     Promise.all([getUserList(), getTBList()]).then((res) => {
+        //         select[0].list = res[0]; // 交易用户
+        //         select[1].list = res[1]; // 套保品种
+        //         updateSelected(select);
+        //     });
+        // });
         return {
-            ...handleFilter(select, input, context),
+            reportType,
+            selectedReportType,
+            selectList,
+            inputList,
+            fixedBtnList,
+            date,
+            dateFormat,
+            update,
         };
     },
 });
@@ -41,3 +117,4 @@ export default defineComponent({
 
 <style lang="less">
 </style>;
+

+ 43 - 9
src/views/report/finance-report/list/finance_report_finance/index.vue

@@ -2,20 +2,16 @@
   <!-- 财务报表 -->
   <div class="finance-report"
        :loading="loading">
-    <Filter @search="search"></Filter>
+    <Filter @update="update"></Filter>
     <contextMenu :contextMenuList="forDataBtn">
-      <!-- <a-table :columns="columns"
+      <a-table :columns="columns"
                class="topTable hiddenFirstCol"
                :pagination="false"
                :expandedRowKeys="expandedRowKeys"
                :customRow="Rowclick"
                rowKey="key"
-               :data-source="tableList"> -->
-      <!-- 额外的展开行 -->
-      <!-- <template #expandedRowRender="{ record }">
-                    <BtnList :btnList="record.btnList"/>
-                </template> -->
-      <!-- </a-table> -->
+               :data-source="tableList">
+      </a-table>
     </contextMenu>
   </div>
 </template>
@@ -23,6 +19,8 @@
 <script lang="ts">
 import Filter from '../../components/filterTable/index.vue';
 import { defineComponent, initData, getTableColumns, getTableEvent, getBtnList, contextMenu, BtnList } from '@/common/export/table';
+import { queryTableList } from './setup';
+import moment from 'moment';
 
 export default defineComponent({
     name: 'finance-report',
@@ -32,7 +30,43 @@ export default defineComponent({
         BtnList,
     },
     setup() {
-        return {};
+        // 表头数据
+        const { columns, registerColumn, updateColumn, filteredInfo } = getTableColumns();
+        // 表格事件
+        const { expandedRowKeys, selectedRow, Rowclick, btnClick } = getTableEvent<any>({});
+        // // 表格操作按钮列表
+        // const { commonBtn, forDataBtn } = getBtnList('warehouse_info_normal', true);
+        // 表格列表数据
+        const { loading, tableList, queryTable } = queryTableList();
+        initData(() => {
+            // 获取列表数据
+            queryTable(moment().format('YYYYMMDD'), '1');
+            // 注册表头信息 过滤
+            registerColumn('table_pcweb_finance_report', []);
+        });
+        function update(value: { type: '1' | '2' | '3'; date: string }) {
+            queryTable(value.date, value.type);
+        }
+        // 查询
+        function search(value: any) {
+            filteredInfo.value = value;
+            // 更新表信息
+            updateColumn();
+        }
+
+        return {
+            columns,
+            filteredInfo,
+            expandedRowKeys,
+            selectedRow,
+            Rowclick,
+            loading,
+            tableList,
+            search,
+            queryTable,
+            btnClick,
+            update,
+        };
     },
 });
 </script>

+ 40 - 0
src/views/report/finance-report/list/finance_report_finance/setup.ts

@@ -0,0 +1,40 @@
+import { queryResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
+import { QueryFinanceDayReport, QueryFinanceMonthReport } from '@/services/go/ermcp/finance-report';
+import { QueryFinanceDayReportRsp } from '@/services/go/ermcp/finance-report/interface';
+import { ref } from 'vue';
+
+
+/**
+ * 获取表格列表数据
+ * @param type 
+ * @returns 
+ */
+export function queryTableList() {
+    // 加载状态
+    const loading = ref<boolean>(false);
+    // 表格数据
+    const tableList = ref<QueryFinanceDayReportRsp[]>([]);
+
+    function queryTable(tradedate: string, type: '1' | '2' | '3') {
+        let fn: any = QueryFinanceDayReport
+        switch (type) {
+            case '1':
+                fn = QueryFinanceDayReport
+                break;
+            case '2':
+                fn = QueryFinanceDayReport
+                break;
+            case '3':
+                fn = QueryFinanceMonthReport
+                break;
+        }
+        queryResultLoadingAndInfo(fn, loading, tradedate).then(res => {
+            tableList.value = res.map((e: QueryFinanceDayReportRsp, i: number) => {
+                return { ...e, key: String(i) };
+            });
+        })
+    }
+    return { loading, tableList, queryTable }
+}
+
+

+ 17 - 0
src/views/report/setup.ts

@@ -0,0 +1,17 @@
+import { ref } from "vue"
+
+interface Value {
+    key?: string;
+    label?: string;
+}
+
+export function handleReprotType() {
+    const selectedReportType = ref<Value>({ key: '1' })
+    // 报表类型
+    const reportType = ref<{ value: string, lable: string }[]>([
+        { value: '1', lable: '日报表' },
+        { value: '2', lable: '周报表' },
+        { value: '3', lable: '月报表' },
+    ])
+    return { selectedReportType, reportType }
+}

+ 8 - 7561
swagger-to-ts/index.html

@@ -7,7568 +7,15 @@
     <title>Document</title>
 </head>
 <body>
+	<script src="./index.js"></script>
     <script>
-const table = [
-	{
-		tablekey: 'table_pcweb_warehouse',
-		tabletype: 2,
-		tablename: '仓库信息',
-		tabelmenu: '',
-		remark: 'web端-仓库信息',
-		columns: [
-			{
-				autoid: 19352,
-				tablekey: 'table_pcweb_warehouse',
-				columnfield: 'warehousestatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousestatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19353,
-				tablekey: 'table_pcweb_warehouse',
-				columnfield: 'warehousecode',
-				columntitle: '仓库简称',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousecode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19354,
-				tablekey: 'table_pcweb_warehouse',
-				columnfield: 'warehousetype',
-				columntitle: '仓库类型',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19355,
-				tablekey: 'table_pcweb_warehouse',
-				columnfield: 'warehousename',
-				columntitle: '仓库名称',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19356,
-				tablekey: 'table_pcweb_warehouse',
-				columnfield: 'contactname',
-				columntitle: '联系人',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contactname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19357,
-				tablekey: 'table_pcweb_warehouse',
-				columnfield: 'contactnum',
-				columntitle: '联系电话',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contactnum',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19358,
-				tablekey: 'table_pcweb_warehouse',
-				columnfield: 'address',
-				columntitle: '详细地址',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'address',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_purchase_pointprice',
-		tabletype: 2,
-		tablename: '采购_待点价',
-		tabelmenu: '',
-		remark: 'web端-采购-待点价',
-		columns: [
-			{
-				autoid: 19359,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'accountname',
-				columntitle: '销售方',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'accountname,',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19360,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'contractno',
-				columntitle: '合同编号 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19361,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19362,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'spotgoodsdesc',
-				columntitle: '商品规格 ',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'spotgoodsdesc',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19363,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'goodscode',
-				columntitle: '点价合约',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19364,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'pricemove',
-				columntitle: '升贴水',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19365,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'qty',
-				columntitle: '合同量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19366,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'unpricedqty',
-				columntitle: '未定价量',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19367,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'pricedqty',
-				columntitle: '已定价量',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19368,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'unsureqty',
-				columntitle: '未交收量 ',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unsureqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19369,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'payamount',
-				columntitle: '已支付额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19370,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'unpayAmount',
-				columntitle: '待支付额 ',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpayAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19371,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'invoiceamount',
-				columntitle: '已开票额',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'invoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19372,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'daikaiAmount',
-				columntitle: '待开票额',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'daikaiAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19373,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'eliverystartdate,deliveryenddate',
-				columntitle: '点价期',
-				columnwidth: '0',
-				orderindex: 150,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'eliverystartdate,deliveryenddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19374,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'startdate,enddate',
-				columntitle: '交收期',
-				columnwidth: '0',
-				orderindex: 160,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'startdate,enddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19375,
-				tablekey: 'table_pcweb_purchase_pointprice',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数',
-				columnwidth: '0',
-				orderindex: 170,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_purchase_settle',
-		tabletype: 2,
-		tablename: '采购_履约交收',
-		tabelmenu: '',
-		remark: 'web端-采购-履约交收',
-		columns: [
-			{
-				autoid: 19376,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'accountname',
-				columntitle: '销售方',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'accountname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19377,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'contractno',
-				columntitle: '合同编号 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19378,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19379,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'spotgoodsdesc',
-				columntitle: '商品规格',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'spotgoodsdesc',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19380,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'goodscode',
-				columntitle: '点价合约',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19381,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'pricemove',
-				columntitle: '升贴水',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19382,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'pricedqty',
-				columntitle: '已定价量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19383,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'unsureqty',
-				columntitle: '未交收量',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unsureqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19384,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'payamount',
-				columntitle: '已支付额',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19385,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'unpayAmount',
-				columntitle: '待支付额 ',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpayAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19386,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'invoiceamount',
-				columntitle: '已开票额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'invoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19387,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'daikaiAmount',
-				columntitle: '待开票额 ',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'daikaiAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19388,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'deliverystartdate,deliveryenddate',
-				columntitle: '点价期',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverystartdate,deliveryenddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19389,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'startdate,enddate',
-				columntitle: '交收期 ',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'tartdate,enddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19390,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数',
-				columnwidth: '0',
-				orderindex: 150,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19391,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'qty',
-				columntitle: '合同量',
-				columnwidth: '0',
-				orderindex: 160,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19392,
-				tablekey: 'table_pcweb_purchase_settle',
-				columnfield: 'unpricedqty',
-				columntitle: '未定价量',
-				columnwidth: '0',
-				orderindex: 170,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_purchase_all',
-		tabletype: 2,
-		tablename: '采购_全部',
-		tabelmenu: '',
-		remark: 'web端-采购-全部',
-		columns: [
-			{
-				autoid: 19393,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'accountname',
-				columntitle: '销售方 ',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'accountname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19394,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'contractno',
-				columntitle: '合同编号 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19395,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'contracctstatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracctstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19396,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19397,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'spotgoodsdesc',
-				columntitle: '商品规格',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'spotgoodsdesc',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19398,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'goodscode',
-				columntitle: '点价合约 ',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19399,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'pricemove',
-				columntitle: '升贴水 ',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19400,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数 ',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19401,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'contracctstatus',
-				columntitle: '状态 ',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracctstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19402,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'qty',
-				columntitle: '合同量',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19403,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'unpricedqty',
-				columntitle: '未定价量 ',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19404,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'pricedqty',
-				columntitle: '已定价量 ',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19405,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'unsureqty',
-				columntitle: '未交收量 ',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unsureqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19406,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'payamount',
-				columntitle: '已支付额',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19407,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'unpayAmount',
-				columntitle: '待支付额 ',
-				columnwidth: '0',
-				orderindex: 150,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpayAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19408,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'invoiceamount',
-				columntitle: '已开票额',
-				columnwidth: '0',
-				orderindex: 160,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'invoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19409,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'daikaiAmount',
-				columntitle: '待开票额 ',
-				columnwidth: '0',
-				orderindex: 170,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'daikaiAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19410,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'deliverystartdate,deliveryenddate',
-				columntitle: '点价期 ',
-				columnwidth: '0',
-				orderindex: 180,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverystartdate,deliveryenddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19411,
-				tablekey: 'table_pcweb_purchase_all',
-				columnfield: 'startdate,enddate',
-				columntitle: '交收期 ',
-				columnwidth: '0',
-				orderindex: 190,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'startdate,enddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_sales_pointprice',
-		tabletype: 2,
-		tablename: '销售_待点价',
-		tabelmenu: '',
-		remark: 'web端-销售-待点价',
-		columns: [
-			{
-				autoid: 19412,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'accountname',
-				columntitle: '采购方 ',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'accountname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19413,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19414,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种 ',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19415,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'spotgoodsdesc',
-				columntitle: '商品规格 ',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'spotgoodsdesc',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19416,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'goodscode',
-				columntitle: '点价合约',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19417,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'pricemove',
-				columntitle: '升贴水 ',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19418,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'qty',
-				columntitle: '合同量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19419,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'unpricedqty',
-				columntitle: '未定价量 ',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19420,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'pricedqty',
-				columntitle: '已定价量 ',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19421,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'unsureqty',
-				columntitle: '未交收量 ',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unsureqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19422,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'payamount',
-				columntitle: '已收款额 ',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19423,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'unpayAmount',
-				columntitle: '待收款额 ',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpayAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19424,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'invoiceamount',
-				columntitle: '已开票额 ',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'invoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19425,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'deliverystartdate,deliveryenddate',
-				columntitle: '点价期',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverystartdate,deliveryenddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19426,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'startdate,enddate',
-				columntitle: '交收期 ',
-				columnwidth: '0',
-				orderindex: 150,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'startdate,enddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19427,
-				tablekey: 'table_pcweb_sales_pointprice',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数',
-				columnwidth: '0',
-				orderindex: 160,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_sales_settle',
-		tabletype: 2,
-		tablename: '销售_履约交收',
-		tabelmenu: '',
-		remark: 'web端-销售-履约交收',
-		columns: [
-			{
-				autoid: 19428,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'accountname',
-				columntitle: '采购方',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'accountname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19429,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'contractno',
-				columntitle: '合同编号 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19430,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种 ',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19431,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'spotgoodsdesc',
-				columntitle: '商品规格 ',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'spotgoodsdesc',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19432,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'goodscode',
-				columntitle: '点价合约',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19433,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'pricemove',
-				columntitle: '升贴水 ',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19434,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'pricedqty',
-				columntitle: '已定价量 ',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19435,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'unsureqty',
-				columntitle: '未交收量 ',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unsureqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19436,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'payamount',
-				columntitle: '已收款额 ',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19437,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'unpayAmount',
-				columntitle: '待收款额 ',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpayAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19438,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'invoiceamount',
-				columntitle: '已开票额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'invoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19439,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'daikaiAmount',
-				columntitle: '待开票额 ',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'daikaiAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19440,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'deliverystartdate,deliveryenddate',
-				columntitle: '点价期 ',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverystartdate,deliveryenddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19441,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'startdate,enddate',
-				columntitle: '交收期 ',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'startdate,enddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19442,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数',
-				columnwidth: '0',
-				orderindex: 150,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19443,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'qty',
-				columntitle: '合同量',
-				columnwidth: '0',
-				orderindex: 160,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19444,
-				tablekey: 'table_pcweb_sales_settle',
-				columnfield: 'unpricedqty',
-				columntitle: '未定价量 ',
-				columnwidth: '0',
-				orderindex: 170,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_sales_all',
-		tabletype: 2,
-		tablename: '销售_全部',
-		tabelmenu: '',
-		remark: 'web端-销售-全部',
-		columns: [
-			{
-				autoid: 19445,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'accountname',
-				columntitle: '采购方',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'accountname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19446,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'contractno',
-				columntitle: '合同编号 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19447,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'contracctstatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracctstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19448,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种 ',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19449,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'spotgoodsdesc',
-				columntitle: '商品规格 ',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'spotgoodsdesc',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19450,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'goodscode',
-				columntitle: '点价合约 ',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19451,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'pricemove',
-				columntitle: '升贴水 ',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19452,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数 ',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19453,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'contracctstatus',
-				columntitle: '状态 ',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracctstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19454,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'qty',
-				columntitle: '合同量',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19455,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'unpricedqty',
-				columntitle: '未定价量 ',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19456,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'pricedqty',
-				columntitle: '已定价量 ',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19457,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'unsureqty',
-				columntitle: '未交收量 ',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unsureqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19458,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'payamount',
-				columntitle: '已收款额 ',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19459,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'unpayAmount',
-				columntitle: '待收款额 ',
-				columnwidth: '0',
-				orderindex: 150,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'unpayAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19460,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'invoiceamount',
-				columntitle: '已开票额 ',
-				columnwidth: '0',
-				orderindex: 160,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'invoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19461,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'daikaiAmount',
-				columntitle: '待开票额 ',
-				columnwidth: '0',
-				orderindex: 170,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'daikaiAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19462,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'deliverystartdate,deliveryenddate',
-				columntitle: '点价期 ',
-				columnwidth: '0',
-				orderindex: 180,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverystartdate,deliveryenddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19463,
-				tablekey: 'table_pcweb_sales_all',
-				columnfield: 'startdate,enddate',
-				columntitle: '交收期 ',
-				columnwidth: '0',
-				orderindex: 190,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'startdate,enddate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_exposure',
-		tabletype: 2,
-		tablename: '实时敞口',
-		tabelmenu: '',
-		remark: 'web端-实时敞口',
-		columns: [
-			{
-				autoid: 19464,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'MiddleGoodsName',
-				columntitle: '套保品种',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'MiddleGoodsName',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19465,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'MiddleGoodsCode',
-				columntitle: '代码',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'MiddleGoodsCode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19466,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'TotalSpotQty',
-				columntitle: '现货数量',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'TotalSpotQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19467,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'MiddleGoodsHedgeRatio',
-				columntitle: '应套保比例',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'MiddleGoodsHedgeRatio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19468,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'TotalNeedHedgeQty',
-				columntitle: '期货应套保量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'TotalNeedHedgeQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19469,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'TotalFutureQty',
-				columntitle: '期货数量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'TotalFutureQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19470,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'NeedHedgeExposoure',
-				columntitle: '应套保敞口',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'NeedHedgeExposoure',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19471,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'NeedHedgeRatio',
-				columntitle: '应套保比例',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'NeedHedgeRatio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19472,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'TotalExposure',
-				columntitle: '总敞口',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'TotalExposure',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19475,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'DiffSpotQty',
-				columntitle: '现货今日变动量',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'DiffSpotQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19476,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'OriTotalFutuQty',
-				columntitle: '期货期初量',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'OriTotalFutuQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19477,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'DiffFutuQty',
-				columntitle: '今日变动量',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'DiffFutuQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19473,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'TotalHedgeRatio',
-				columntitle: '敞口比例',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'TotalHedgeRatio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19474,
-				tablekey: 'table_pcweb_exposure',
-				columnfield: 'OriTotalSpotQty',
-				columntitle: '现货期初量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'OriTotalSpotQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_exposure_detail',
-		tabletype: 2,
-		tablename: '实时敞口--现货明细',
-		tabelmenu: '',
-		remark: 'web端--实时敞口--现货明细',
-		columns: [
-			{
-				autoid: 19478,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'createtime',
-				columntitle: '时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'createtime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19479,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'logtype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logtype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19480,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19481,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'qty',
-				columntitle: '数量',
-				columnwidth: '0',
-				orderindex: 4,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19482,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'middlegoodscode',
-				columntitle: '套保品种',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'middlegoodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19483,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'changeQty',
-				columntitle: '变动量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'changeQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19484,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'relateNo',
-				columntitle: '合同(计划)编号 ',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'relateNo',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19485,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19486,
-				tablekey: 'table_pcweb_exposure_detail',
-				columnfield: 'convertratio',
-				columntitle: '套保系数 ',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertratio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_exposure_futures_detail',
-		tabletype: 2,
-		tablename: '实时敞口--期货明细',
-		tabelmenu: '',
-		remark: 'web端--实时敞口--期货明细',
-		columns: [
-			{
-				autoid: 19487,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'goodsname',
-				columntitle: '期货合约 ',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19488,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'goodscode',
-				columntitle: '代码 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19489,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'ydqty',
-				columntitle: '昨日持仓',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'ydqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19490,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'curqty',
-				columntitle: '当前持仓',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'curqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19491,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'diffqty',
-				columntitle: '持仓变动量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'diffqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19492,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'diffhedgeqty',
-				columntitle: '套保品种',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'diffhedgeqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19493,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'diffhedgeqty',
-				columntitle: '变动量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'diffhedgeqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19494,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'agreeunit',
-				columntitle: '合约单位',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'agreeunit',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19495,
-				tablekey: 'table_pcweb_exposure_futures_detail',
-				columnfield: 'convertratio',
-				columntitle: '期货品种系数 ',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertratio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_exposure_spotposition',
-		tabletype: 2,
-		tablename: '敞口--现货头寸',
-		tabelmenu: '',
-		remark: 'web端--敞口--现货头寸',
-		columns: [
-			{
-				autoid: 19496,
-				tablekey: 'table_pcweb_exposure_spotposition',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19497,
-				tablekey: 'table_pcweb_exposure_spotposition',
-				columnfield: 'deliverygoodscode',
-				columntitle: '代码',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardcode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19498,
-				tablekey: 'table_pcweb_exposure_spotposition',
-				columnfield: 'oritoalspotqty',
-				columntitle: '昨日数量',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'oritoalspotqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19499,
-				tablekey: 'table_pcweb_exposure_spotposition',
-				columnfield: 'increaseqty',
-				columntitle: '增加数量',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'increaseqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19500,
-				tablekey: 'table_pcweb_exposure_spotposition',
-				columnfield: 'decreaseqty',
-				columntitle: '减少数量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'decreaseqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19501,
-				tablekey: 'table_pcweb_exposure_spotposition',
-				columnfield: 'totalspotqty',
-				columntitle: '当前数量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalspotqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_exposure_spotposition_detail',
-		tabletype: 2,
-		tablename: '敞口--现货头寸--现货明细',
-		tabelmenu: '',
-		remark: 'web端-敞口--现货头寸--现货明细',
-		columns: []
-	},
-	{
-		tablekey: 'table_pcweb_exposure_futuresposition',
-		tabletype: 2,
-		tablename: '敞口--期货头寸',
-		tabelmenu: '',
-		remark: 'web端-敞口--期货头寸',
-		columns: [
-			{
-				autoid: 19507,
-				tablekey: 'table_pcweb_exposure_futuresposition',
-				columnfield: 'goodsname',
-				columntitle: '期货合约',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19508,
-				tablekey: 'table_pcweb_exposure_futuresposition',
-				columnfield: 'goodscode',
-				columntitle: '代码 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19509,
-				tablekey: 'table_pcweb_exposure_futuresposition',
-				columnfield: 'totalydqty',
-				columntitle: '昨日数量',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalydqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19510,
-				tablekey: 'table_pcweb_exposure_futuresposition',
-				columnfield: 'increaseqty',
-				columntitle: '增加数量',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'increaseqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19511,
-				tablekey: 'table_pcweb_exposure_futuresposition',
-				columnfield: 'decreaseqty',
-				columntitle: '减少数量 ',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'decreaseqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19512,
-				tablekey: 'table_pcweb_exposure_futuresposition',
-				columnfield: 'totalcurqty',
-				columntitle: '当前数量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalcurqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_exposure_futuresposition_detail',
-		tabletype: 2,
-		tablename: '敞口--现货头寸--期货明细',
-		tabelmenu: '',
-		remark: 'web端-敞口--现货头寸--期货明细',
-		columns: []
-	},
-	{
-		tablekey: 'table_pcweb_report_expose',
-		tabletype: 2,
-		tablename: '报表-敞口报表',
-		tabelmenu: '',
-		remark: 'web端-报表-敞口报表',
-		columns: [
-			{
-				autoid: 19518,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'middlegoodsname',
-				columntitle: '套保品种 ',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'middlegoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19519,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'middlegoodscode',
-				columntitle: '代码 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'middlegoodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19520,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'totalspotqty',
-				columntitle: '现货数量',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalspotqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19521,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'middlegoodshedgeratio',
-				columntitle: '应套保比例 ',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'middlegoodshedgeratio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19522,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'totalneedhedgeqty',
-				columntitle: '期货应套保量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalneedhedgeqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19523,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'totalfutureqty',
-				columntitle: '期货数量 ',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalfutureqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19524,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'needhedgeexposoure',
-				columntitle: '应套保敞口',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'needhedgeexposoure',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19525,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'middlegoodshedgeratio',
-				columntitle: '比例 ',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'middlegoodshedgeratio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19526,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'totalexposure',
-				columntitle: '总敞口',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalexposure',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19527,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'totalhedgeratio',
-				columntitle: '敞口比例 ',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalhedgeratio',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19528,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'oriTotalSpotQty',
-				columntitle: '现货期初量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'oriTotalSpotQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19529,
-				tablekey: 'table_pcweb_report_expose',
-				columnfield: 'diffSpotQty',
-				columntitle: '今日变动量 ',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'diffSpotQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_report_spot',
-		tabletype: 2,
-		tablename: '报表-现货报表',
-		tabelmenu: '',
-		remark: 'web端-报表-现货报表',
-		columns: [
-			{
-				autoid: 19530,
-				tablekey: 'table_pcweb_report_spot',
-				columnfield: 'wrstandardname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19531,
-				tablekey: 'table_pcweb_report_spot',
-				columnfield: 'totalbuypricedqty',
-				columntitle: '采购定价量',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalbuypricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19532,
-				tablekey: 'table_pcweb_report_spot',
-				columnfield: 'totalsellpricedqty',
-				columntitle: '销售定价量 ',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalsellpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19533,
-				tablekey: 'table_pcweb_report_spot',
-				columnfield: 'todaybuyreckonqty',
-				columntitle: '采购确定量',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'todaybuyreckonqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19534,
-				tablekey: 'table_pcweb_report_spot',
-				columnfield: 'todaysellreckonqty',
-				columntitle: '销售确定量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'todaysellreckonqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19535,
-				tablekey: 'table_pcweb_report_spot',
-				columnfield: 'buyinqty',
-				columntitle: '采购入库量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'buyinqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19536,
-				tablekey: 'table_pcweb_report_spot',
-				columnfield: 'selloutqty',
-				columntitle: '销售出库量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'selloutqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_report_spot_detail_day',
-		tabletype: 2,
-		tablename: '现货日报表-详情',
-		tabelmenu: '',
-		remark: 'web端-现货日报表-详情',
-		columns: [
-			{
-				autoid: 19537,
-				tablekey: 'table_pcweb_report_spot_detail_day',
-				columnfield: 'logdatetime',
-				columntitle: '发生时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logdatetime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19538,
-				tablekey: 'table_pcweb_report_spot_detail_day',
-				columnfield: 'brandname',
-				columntitle: '商品品类 ',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19539,
-				tablekey: 'table_pcweb_report_spot_detail_day',
-				columnfield: 'logtypename',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logtypename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19540,
-				tablekey: 'table_pcweb_report_spot_detail_day',
-				columnfield: 'relatedno',
-				columntitle: '合同编号 ',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'relatedno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19541,
-				tablekey: 'table_pcweb_report_spot_detail_day',
-				columnfield: 'biztype',
-				columntitle: '操作类型',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'biztype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19542,
-				tablekey: 'table_pcweb_report_spot_detail_day',
-				columnfield: 'logvalue',
-				columntitle: '值 ',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logvalue',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19543,
-				tablekey: 'table_pcweb_report_spot_detail_day',
-				columnfield: 'applyname',
-				columntitle: '操作人',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_report_spot_detail_month',
-		tabletype: 2,
-		tablename: '现货月报表-详情',
-		tabelmenu: '',
-		remark: 'web端-现货月报表-详情',
-		columns: [
-			{
-				autoid: 19544,
-				tablekey: 'table_pcweb_report_spot_detail_month',
-				columnfield: 'reckondate',
-				columntitle: '日期',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckondate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19545,
-				tablekey: 'table_pcweb_report_spot_detail_month',
-				columnfield: 'totalbuypricedqty',
-				columntitle: '采购定价量',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalbuypricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19546,
-				tablekey: 'table_pcweb_report_spot_detail_month',
-				columnfield: 'totalsellpricedqty',
-				columntitle: '销售定价量 ',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'totalsellpricedqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19547,
-				tablekey: 'table_pcweb_report_spot_detail_month',
-				columnfield: 'todaysellreckonqty',
-				columntitle: '采购确定量',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'todaysellreckonqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19548,
-				tablekey: 'table_pcweb_report_spot_detail_month',
-				columnfield: 'todaysellreckonqty',
-				columntitle: '销售确定量 ',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'todaysellreckonqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_report_fincial_payment_day',
-		tabletype: 2,
-		tablename: '报表-财务报表-款项-日报表',
-		tabelmenu: '',
-		remark: 'web端-报表-财务报表-款项-日报表',
-		columns: [
-			{
-				autoid: 19549,
-				tablekey: 'table_pcweb_report_fincial_payment_day',
-				columnfield: 'logdatetime',
-				columntitle: '款项发生时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logdatetime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19550,
-				tablekey: 'table_pcweb_report_fincial_payment_day',
-				columnfield: 'logtypename',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logtypename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19551,
-				tablekey: 'table_pcweb_report_fincial_payment_day',
-				columnfield: 'relatedno',
-				columntitle: '合同编号 ',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'relatedno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19552,
-				tablekey: 'table_pcweb_report_fincial_payment_day',
-				columnfield: 'biztype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'biztype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19553,
-				tablekey: 'table_pcweb_report_fincial_payment_day',
-				columnfield: 'logvalue',
-				columntitle: '金额 ',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logvalue',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19554,
-				tablekey: 'table_pcweb_report_fincial_payment_day',
-				columnfield: 'applyname',
-				columntitle: '操作人',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_report_fincial_invoice_day',
-		tabletype: 2,
-		tablename: '报表-财务报表-发票-日报表',
-		tabelmenu: '',
-		remark: 'web端-报表-财务报表-发票-日报表',
-		columns: [
-			{
-				autoid: 19555,
-				tablekey: 'table_pcweb_report_fincial_invoice_day',
-				columnfield: 'logdatetime',
-				columntitle: '发票发生时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logdatetime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19556,
-				tablekey: 'table_pcweb_report_fincial_invoice_day',
-				columnfield: 'optypename',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'optypename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19557,
-				tablekey: 'table_pcweb_report_fincial_invoice_day',
-				columnfield: 'relatedno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'relatedno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19558,
-				tablekey: 'table_pcweb_report_fincial_invoice_day',
-				columnfield: 'contracttype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19559,
-				tablekey: 'table_pcweb_report_fincial_invoice_day',
-				columnfield: 'logvalue',
-				columntitle: '金额 ',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'logvalue',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19560,
-				tablekey: 'table_pcweb_report_fincial_invoice_day',
-				columnfield: 'applyname',
-				columntitle: '操作人',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_report_fincial_month',
-		tabletype: 2,
-		tablename: '报表-财务报表-月报表',
-		tabelmenu: '',
-		remark: 'web端-报表-财务报表-月报表',
-		columns: [
-			{
-				autoid: 19561,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'updatetime',
-				columntitle: '日期',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'updatetime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19562,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'collectmoneycount',
-				columntitle: '收笔款数',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'collectmoneycount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19563,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'collectmoneyamount',
-				columntitle: '收款金额 ',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'collectmoneyamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19564,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'paymoneycount',
-				columntitle: '付款笔数',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'paymoneycount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19565,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'paymoneyamount',
-				columntitle: '付款金额 ',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'paymoneyamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19566,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'payinvoicecount',
-				columntitle: '收票笔数',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payinvoicecount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19567,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'payinvoiceamount',
-				columntitle: '收票金额 ',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payinvoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19568,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'collectinvoicecount',
-				columntitle: '开票笔数',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'collectinvoicecount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19569,
-				tablekey: 'table_pcweb_report_fincial_month',
-				columnfield: 'collectinvoiceamount',
-				columntitle: '开票金额 ',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'collectinvoiceamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_business_aduit_dj',
-		tabletype: 2,
-		tablename: '业务审核-点价',
-		tabelmenu: '',
-		remark: 'web端-业务审核-点价',
-		columns: [
-			{
-				autoid: 19576,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'goodscode',
-				columntitle: '点价合约',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19577,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'pricedPrice',
-				columntitle: '点价价格',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedPrice',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19578,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'pricemove',
-				columntitle: '升贴水',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19579,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'pricedQty',
-				columntitle: '点价数量',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19580,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'amount',
-				columntitle: '点价金额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'amount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19581,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'applytime',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19582,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'applyname',
-				columntitle: '登记人',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19570,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19571,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'contracttype',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19572,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'buyusernameOrsellusername',
-				columntitle: '对手方',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'buyusernameOrsellusername',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19573,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19574,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19575,
-				tablekey: 'table_pcweb_business_aduit_dj',
-				columnfield: 'pricetype',
-				columntitle: '点价类型',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_business_aduit_js',
-		tabletype: 2,
-		tablename: '业务审核-交收',
-		tabelmenu: '',
-		remark: 'web端-业务审核-交收',
-		columns: [
-			{
-				autoid: 19583,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19584,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'contracttype',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19585,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'buyusernameOrsellusername',
-				columntitle: '对手方',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'buyusernameOrsellusername',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19586,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19587,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19588,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'operateapplytype',
-				columntitle: '点价类型',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'operateapplytype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19589,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'reckonrealqty',
-				columntitle: '交收量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckonrealqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19590,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'reckonotheramount',
-				columntitle: '其它费用',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckonotheramount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19591,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'addmargin||decmargin',
-				columntitle: '调整保证金',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'addmargin||decmargin',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19592,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'reckonadjustamount',
-				columntitle: '调整金额',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckonadjustamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19593,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'applytime',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19594,
-				tablekey: 'table_pcweb_business_aduit_js',
-				columnfield: 'applyname',
-				columntitle: '登记人',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'auditname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_fincial_aduit_fp',
-		tabletype: 2,
-		tablename: '业务审核-发票',
-		tabelmenu: '',
-		remark: 'web端-业务审核-发票',
-		columns: [
-			{
-				autoid: 19595,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19596,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'contracttype',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19597,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'buyusernameOrsellusername',
-				columntitle: '对手方',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19598,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19599,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19600,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'operateapplytype',
-				columntitle: '点价类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19601,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'contracttype',
-				columntitle: '发票类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19602,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'InvoiceAmount',
-				columntitle: '金额',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'InvoiceAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19603,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'attachurl',
-				columntitle: '发票附件',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'attachurl',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19604,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'applytime',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19605,
-				tablekey: 'table_pcweb_fincial_aduit_fp',
-				columnfield: 'applyname',
-				columntitle: '登记人',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_fincial_aduit_kx',
-		tabletype: 2,
-		tablename: '财务审核-款项',
-		tabelmenu: '',
-		remark: 'web端-财务审核-款项',
-		columns: [
-			{
-				autoid: 19606,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'contractstatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19607,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'contracttype',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19608,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'buyusernameOrsellusername',
-				columntitle: '对手方',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19609,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19610,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19611,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'operateapplytype',
-				columntitle: '点价类型',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'operateapplytype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19612,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'kxtype',
-				columntitle: '款项类型',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'kxtype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19613,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'payamount',
-				columntitle: '金额',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19614,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'applytime',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19615,
-				tablekey: 'table_pcweb_fincial_aduit_kx',
-				columnfield: 'applyname',
-				columntitle: '登记人',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_stock_aduit_in',
-		tabletype: 2,
-		tablename: '库存审核-入库',
-		tabelmenu: '',
-		remark: 'web端-库存审核-入库',
-		columns: [
-			{
-				autoid: 19616,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19617,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'inouttype',
-				columntitle: '入库类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'inouttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19618,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19619,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'wrstandardname',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19620,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'brandname',
-				columntitle: '品牌',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19621,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'warehousename',
-				columntitle: '仓库',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19622,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'contracttype',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19623,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'buynicknameOrsellusername',
-				columntitle: '对手方',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'buynicknameOrsellusername',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19624,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19625,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'pricetype',
-				columntitle: '点价类型',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19626,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'applytime',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19627,
-				tablekey: 'table_pcweb_stock_aduit_in',
-				columnfield: 'applyname',
-				columntitle: '登记人',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_stock_aduit_out',
-		tabletype: 2,
-		tablename: '库存审核-出库',
-		tabelmenu: '',
-		remark: 'web端-库存审核-出库',
-		columns: [
-			{
-				autoid: 19628,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19629,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'inouttype',
-				columntitle: '出库类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'inouttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19630,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19631,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'wrstandardname',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19632,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'brandname',
-				columntitle: '品牌',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19633,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'warehousename',
-				columntitle: '仓库',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19634,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'contracttype',
-				columntitle: '合同类型',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19635,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'buynicknameOrsellusername',
-				columntitle: '对手方',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'buynicknameOrsellusername',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19636,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19637,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'pricetype',
-				columntitle: '点价类型',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19638,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'applytime',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19639,
-				tablekey: 'table_pcweb_stock_aduit_out',
-				columnfield: 'applyname',
-				columntitle: '登记人',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_stock_manage_current',
-		tabletype: 2,
-		tablename: '库存管理-当前库存',
-		tabelmenu: '',
-		remark: '手机端-库存管理-当前库存',
-		columns: [
-			{
-				autoid: 19640,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19641,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19642,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '品牌',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19643,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '仓库',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19644,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '昨日量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19645,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '今日量 ',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19646,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '今日入库量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19647,
-				tablekey: 'table_pcweb_stock_manage_current',
-				columnfield: 'userinfotype',
-				columntitle: '今日出库量',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_stock_manage_applylog',
-		tabletype: 2,
-		tablename: '库存管理-当前库存',
-		tabelmenu: '',
-		remark: 'web端-库存管理-当前库存',
-		columns: [
-			{
-				autoid: 19648,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19649,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '审核时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19652,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '数量',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19650,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19651,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19653,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19654,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19655,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19656,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '品牌',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19657,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '仓库',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19658,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '申请人',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19659,
-				tablekey: 'table_pcweb_stock_manage_applylog',
-				columnfield: 'userinfotype',
-				columntitle: '审核人',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_hedging_plan',
-		tabletype: 2,
-		tablename: '业务-套保计划',
-		tabelmenu: '',
-		remark: 'web端-业务-套保计划',
-		columns: [
-			{
-				autoid: 19660,
-				tablekey: 'table_pcweb_hedging_plan',
-				columnfield: 'contracttype',
-				columntitle: '计划类型',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19661,
-				tablekey: 'table_pcweb_hedging_plan',
-				columnfield: 'hedgeplanno',
-				columntitle: '计划名称',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19662,
-				tablekey: 'table_pcweb_hedging_plan',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19663,
-				tablekey: 'table_pcweb_hedging_plan',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19664,
-				tablekey: 'table_pcweb_hedging_plan',
-				columnfield: 'planqty',
-				columntitle: '计划量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'planqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19665,
-				tablekey: 'table_pcweb_hedging_plan',
-				columnfield: 'hedgeplanstatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_current_inventory',
-		tabletype: 2,
-		tablename: '库存查询-当前库存',
-		tabelmenu: '',
-		remark: 'web端-库存查询-当前库存',
-		columns: [
-			{
-				autoid: 19666,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19667,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'wrstandardname',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19668,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'brandname',
-				columntitle: '品牌',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19669,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'warehousename',
-				columntitle: '仓库',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19670,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'oristock',
-				columntitle: '昨日量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'oristock',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19671,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'todayproduceinqty',
-				columntitle: '今日入库量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'todayproduceinqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19672,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'todayproduceoutqty',
-				columntitle: '今日出库量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'todayproduceoutqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19673,
-				tablekey: 'table_pcweb_current_inventory',
-				columnfield: 'curstock',
-				columntitle: '今日量',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'curstock',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_application_record',
-		tabletype: 2,
-		tablename: '库存查询-申请记录',
-		tabelmenu: '',
-		remark: 'web端-库存查询-申请记录',
-		columns: [
-			{
-				autoid: 19674,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19675,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'wrstandardname',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19676,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'brandname',
-				columntitle: '品牌',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19677,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'warehousename',
-				columntitle: '仓库',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19678,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'pricetype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19679,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'qty',
-				columntitle: '数量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19680,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19681,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'applytime',
-				columntitle: '登记时间',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19682,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'applyname',
-				columntitle: '登记人',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19683,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'audittime',
-				columntitle: '审核时间',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19684,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '审核人',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19728,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'deliverygoodsname',
-				columntitle: '交易用户',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19729,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'wrstandardname',
-				columntitle: '套保品种',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19730,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'brandname',
-				columntitle: '现货总量',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19731,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'warehousename',
-				columntitle: '现货总量变动量',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19732,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'pricetype',
-				columntitle: '套保量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19733,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'qty',
-				columntitle: '套利量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19734,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'contractno',
-				columntitle: '套保变动量',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19735,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'applytime',
-				columntitle: '套利变动量',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19736,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'applyname',
-				columntitle: '套保比例',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19737,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'audittime',
-				columntitle: '套利比例',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19738,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '应套保量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19739,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '应套利量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19740,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '现货应套保量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19741,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '现货应套保变动量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19742,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '期货总量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19743,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '套保敞口',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19744,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '套保敞口变动',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19745,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '总敞口',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19746,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '总敞口变动量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19747,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '参数调整变动量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19748,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '应套保总量变动量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19749,
-				tablekey: 'table_pcweb_application_record',
-				columnfield: 'auditname',
-				columntitle: '套保品种期货变动量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_delivery',
-		tabletype: 2,
-		tablename: '现货合同',
-		tabelmenu: '',
-		remark: 'web端-现货合同',
-		columns: [
-			{
-				autoid: 19318,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'contracctstatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracctstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19319,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'contractno',
-				columntitle: '合同编号',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19320,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'contracttype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19321,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'negative',
-				columntitle: '对手方',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'negative',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19322,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'qty',
-				columntitle: '合同量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19323,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19324,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'wrstandardname',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19325,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'biztype',
-				columntitle: '业务类型',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'biztype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19326,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'convertfactor',
-				columntitle: '标仓系数',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'convertfactor',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19327,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'pricetype',
-				columntitle: '定价类型',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19328,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'goodscode',
-				columntitle: '点价合约',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'goodscode',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19329,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'price',
-				columntitle: '价格',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'price',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19330,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'pricemove',
-				columntitle: '升贴水',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19331,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'amount',
-				columntitle: '金额',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'amount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19332,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'margin',
-				columntitle: '保证金',
-				columnwidth: '0',
-				orderindex: 150,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'margin',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19333,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'startdate',
-				columntitle: '点价期',
-				columnwidth: '0',
-				orderindex: 160,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'startdate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19334,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'deliverystartdate',
-				columntitle: '交收期',
-				columnwidth: '0',
-				orderindex: 170,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverystartdate',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19335,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'saleuserid',
-				columntitle: '业务员',
-				columnwidth: '0',
-				orderindex: 180,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'saleuserid',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19336,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'meruserid',
-				columntitle: '跟单员',
-				columnwidth: '0',
-				orderindex: 190,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'meruserid',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19337,
-				tablekey: 'table_pcweb_delivery',
-				columnfield: 'tradeusername',
-				columntitle: '交易员',
-				columnwidth: '0',
-				orderindex: 190,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'tradeusername',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_someprice_detail_dj',
-		tabletype: 2,
-		tablename: '现货合同详情-点价记录',
-		tabelmenu: '',
-		remark: 'web端-现货合同详情-点价记录',
-		columns: [
-			{
-				autoid: 19685,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'applytime',
-				columntitle: '点价登记时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19686,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'audittime',
-				columntitle: '点价审核时间',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19687,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'pricedPrice',
-				columntitle: '点价价格',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedPrice',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19688,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'pricemove',
-				columntitle: '升贴水',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricemove',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19689,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'pricedQty',
-				columntitle: '点价数量',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricedQty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19690,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'amount',
-				columntitle: '点价金额',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'amount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19691,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'applyname',
-				columntitle: '申请人',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19692,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'auditname',
-				columntitle: '审核人',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'auditname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19693,
-				tablekey: 'table_pcweb_someprice_detail_dj',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_someprice_detail_js',
-		tabletype: 2,
-		tablename: '现货合同详情-交收记录',
-		tabelmenu: '',
-		remark: 'web端-现货合同详情-交收记录',
-		columns: [
-			{
-				autoid: 19694,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'applytime',
-				columntitle: '交收登记时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19695,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'audittime',
-				columntitle: '交收审核时间',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19696,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'reckonrealqty',
-				columntitle: '交收量',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckonrealqty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19697,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'reckonotheramount',
-				columntitle: '其他费用',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckonotheramount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19698,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'reckonadjustamount',
-				columntitle: '调整保证金',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckonadjustamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19699,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'reckonadjustamount',
-				columntitle: '调整金额',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'reckonadjustamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19700,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'applyname',
-				columntitle: '申请人',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19701,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'auditname',
-				columntitle: '审核人',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'auditname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19702,
-				tablekey: 'table_pcweb_someprice_detail_js',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_userinfo',
-		tabletype: 2,
-		tablename: '客户资料',
-		tabelmenu: '',
-		remark: 'web端-客户资料',
-		columns: [
-			{
-				autoid: 19338,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'status',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'status',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19339,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'userinfotype',
-				columntitle: '客户类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'userinfotype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19340,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'nickname',
-				columntitle: '客户简称',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'nickname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19341,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'customername',
-				columntitle: '客户名称',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'customername',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19342,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'cardtype',
-				columntitle: '证件类型',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'cardtype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19343,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'cardnum',
-				columntitle: '证件号码',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'cardnum',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19344,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'contactname',
-				columntitle: '联系人',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contactname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19345,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'mobile',
-				columntitle: '手机号码',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'mobile',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19346,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'email',
-				columntitle: '邮箱',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'email',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19347,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'legalpersonname',
-				columntitle: '法定代表人',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'legalpersonname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19348,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'taxpayernum',
-				columntitle: '纳税人识别号',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'taxpayernum',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19349,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'cardphotourl',
-				columntitle: '证件照',
-				columnwidth: '0',
-				orderindex: 120,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'cardphotourl',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19350,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'address',
-				columntitle: '地址',
-				columnwidth: '0',
-				orderindex: 130,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'address',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19351,
-				tablekey: 'table_pcweb_userinfo',
-				columnfield: 'remark',
-				columntitle: '备注',
-				columnwidth: '0',
-				orderindex: 140,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'remark',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_someprice_detail_kx',
-		tabletype: 2,
-		tablename: '现货合同详情-款项记录',
-		tabelmenu: '',
-		remark: 'web端-现货合同详情-款项记录',
-		columns: [
-			{
-				autoid: 19703,
-				tablekey: 'table_pcweb_someprice_detail_kx',
-				columnfield: 'applytime',
-				columntitle: '款项登记时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19704,
-				tablekey: 'table_pcweb_someprice_detail_kx',
-				columnfield: 'audittime',
-				columntitle: '款项审核时间',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19705,
-				tablekey: 'table_pcweb_someprice_detail_kx',
-				columnfield: 'kxtype',
-				columntitle: '款项类型',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'kxtype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19706,
-				tablekey: 'table_pcweb_someprice_detail_kx',
-				columnfield: 'payamount',
-				columntitle: '金额',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'payamount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19707,
-				tablekey: 'table_pcweb_someprice_detail_kx',
-				columnfield: 'applyname',
-				columntitle: '申请人',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19708,
-				tablekey: 'table_pcweb_someprice_detail_kx',
-				columnfield: 'auditname',
-				columntitle: '审核人',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'auditname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19709,
-				tablekey: 'table_pcweb_someprice_detail_kx',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_someprice_detail_fp',
-		tabletype: 2,
-		tablename: '现货合同详情-发票记录',
-		tabelmenu: '',
-		remark: 'web端-现货合同详情-发票记录',
-		columns: [
-			{
-				autoid: 19710,
-				tablekey: 'table_pcweb_someprice_detail_fp',
-				columnfield: 'applytime',
-				columntitle: '发票登记时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19711,
-				tablekey: 'table_pcweb_someprice_detail_fp',
-				columnfield: 'audittime',
-				columntitle: '发票审核时间',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19712,
-				tablekey: 'table_pcweb_someprice_detail_fp',
-				columnfield: 'contracttype',
-				columntitle: '发票类型',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contracttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19713,
-				tablekey: 'table_pcweb_someprice_detail_fp',
-				columnfield: 'warehousename',
-				columntitle: '金额',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19714,
-				tablekey: 'table_pcweb_someprice_detail_fp',
-				columnfield: 'InvoiceAmount',
-				columntitle: '申请人',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'InvoiceAmount',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19715,
-				tablekey: 'table_pcweb_someprice_detail_fp',
-				columnfield: 'auditname',
-				columntitle: '审核人',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'auditname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19716,
-				tablekey: 'table_pcweb_someprice_detail_fp',
-				columnfield: 'applystatus',
-				columntitle: '状态',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applystatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_someprice_detail_stock',
-		tabletype: 2,
-		tablename: '现货合同详情-入库记录',
-		tabelmenu: '',
-		remark: 'web端-现货合同详情-入库记录',
-		columns: [
-			{
-				autoid: 19717,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'applytime',
-				columntitle: '入库登记时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applytime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19718,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'audittime',
-				columntitle: '入库审核时间',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'audittime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19719,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'deliverygoodsname',
-				columntitle: '现货品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19720,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'wrstandardname',
-				columntitle: '品类',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19721,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'brandname',
-				columntitle: '品牌',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19722,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'warehousename',
-				columntitle: '仓库',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19723,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'inouttype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'inouttype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19724,
-				tablekey: 'table_pcweb_someprice_detail_stock',
-				columnfield: 'qty',
-				columntitle: '数量',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_someprice_detail_change',
-		tabletype: 2,
-		tablename: '现货合同详情-变更记录',
-		tabelmenu: '',
-		remark: 'web端-现货合同详情-变更记录',
-		columns: [
-			{
-				autoid: 19726,
-				tablekey: 'table_pcweb_someprice_detail_change',
-				columnfield: 'biztype',
-				columntitle: '类型',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'biztype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19727,
-				tablekey: 'table_pcweb_someprice_detail_change',
-				columnfield: 'applyname',
-				columntitle: '操作人',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'applyname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19725,
-				tablekey: 'table_pcweb_someprice_detail_change',
-				columnfield: 'updatetime',
-				columntitle: '变更时间',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'updatetime',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	},
-	{
-		tablekey: 'table_pcweb_exposure_report',
-		tabletype: 2,
-		tablename: '报表-敞口报表',
-		tabelmenu: '',
-		remark: 'web端-报表-敞口报表',
-		columns: []
-	},
-	{
-		tablekey: 'table_pcweb_futures_report',
-		tabletype: 2,
-		tablename: '报表-期货报表',
-		tabelmenu: '',
-		remark: 'web端-报表-期货报表',
-		columns: [
-			{
-				autoid: 19750,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'deliverygoodsname',
-				columntitle: '结算币种',
-				columnwidth: '0',
-				orderindex: 10,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'deliverygoodsname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19751,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'wrstandardname',
-				columntitle: '交易用户',
-				columnwidth: '0',
-				orderindex: 20,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'wrstandardname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19752,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'brandname',
-				columntitle: '交易品种',
-				columnwidth: '0',
-				orderindex: 30,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'brandname',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19753,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'warehousename',
-				columntitle: '交易合约',
-				columnwidth: '0',
-				orderindex: 40,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'warehousename',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19754,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'pricetype',
-				columntitle: '持仓方向',
-				columnwidth: '0',
-				orderindex: 50,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'pricetype',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19755,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'qty',
-				columntitle: '期初持仓量',
-				columnwidth: '0',
-				orderindex: 60,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'qty',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19756,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'contractno',
-				columntitle: '期初开仓额',
-				columnwidth: '0',
-				orderindex: 70,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'contractno',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19757,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'applytime',
-				columntitle: '期初持仓额',
-				columnwidth: '0',
-				orderindex: 80,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19758,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'applyname',
-				columntitle: '今开仓量',
-				columnwidth: '0',
-				orderindex: 90,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19759,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'audittime',
-				columntitle: '今开仓额',
-				columnwidth: '0',
-				orderindex: 100,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19760,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '开仓均价',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19761,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '今平仓量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19762,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '今平仓额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19763,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '今平仓额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19764,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '平仓均价',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19765,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '期末持仓量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19766,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '期末开仓额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19767,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '期末持仓额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19768,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '结算价',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19769,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '结算持仓额',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19770,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '手续费',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19771,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '平仓损益',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19772,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '结算损益',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19773,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '交易品种期末量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19774,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '套保品种',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			},
-			{
-				autoid: 19775,
-				tablekey: 'table_pcweb_futures_report',
-				columnfield: 'auditname',
-				columntitle: '套保品种变动量',
-				columnwidth: '0',
-				orderindex: 110,
-				isshow: 1,
-				aligntype: 1,
-				formattertype: '',
-				formatterstring: '',
-				remark: 'hedgeplanstatus',
-				needsummary: 0,
-				summarytype: 0,
-				groupname: ''
-			}
-		]
-	}
-];
-
- 	const result = {};
-table.forEach((el) => {
-	const { tablekey, tablename } = el;
-	result[tablekey] = `string; // ${tablename}`;
-});
-
-console.log(result);
+		const result = {};
+		table.forEach((el) => {
+			const { tablekey, tablename } = el;
+			result[tablekey] = `string; // ${tablename}`;
+		});
+		console.log(result);
     </script>
-    <!-- <script>
-        const result = {};
-        table.forEach((el) => {
-            const { tablekey, tablename } = el;
-            result[tablekey] = `'string'// ${tablename}`;
-        });
-        console.log(result);
-    </script> -->
+
 </body>
 </html>

Plik diff jest za duży
+ 318 - 366
swagger-to-ts/index.js


Niektóre pliki nie zostały wyświetlone z powodu dużej ilości zmienionych plików