소스 검색

修改采购和销售

huangbin 4 년 전
부모
커밋
b8dcf43176

+ 27 - 3
src/common/methods/table/interface.ts

@@ -13,10 +13,34 @@ export interface ColumnType {
     sorter?: Function;
 }
 export interface TableKey {
+    table_pcweb_business_aduit_dj: string; // 业务审核-点价
+    table_pcweb_business_aduit_js: string; // 业务审核-交收
     table_pcweb_delivery: string; // 现货合同
+    table_pcweb_exposure: string; // 实时敞口
+    table_pcweb_exposure_detail: string; // 实时敞口--现货明细
+    table_pcweb_exposure_futures_detail: string; // 实时敞口--期货明细
+    table_pcweb_exposure_futuresposition: string; // 敞口--期货头寸
+    table_pcweb_exposure_futuresposition_detail: string; // 敞口--现货头寸--期货明细
+    table_pcweb_exposure_spotposition: string; // 敞口--现货头寸
+    table_pcweb_exposure_spotposition_detail: string; // 敞口--现货头寸--现货明细
+    table_pcweb_fincial_aduit_fp: string; // 业务审核-发票
+    table_pcweb_fincial_aduit_kx: string; // 财务审核-款项
+    table_pcweb_purchase_all: string; // 采购_全部
+    table_pcweb_purchase_pointprice: string; // 采购_待点价
+    table_pcweb_purchase_settle: string; // 采购_履约交收
+    table_pcweb_report_expose: string; // 报表-敞口报表
+    table_pcweb_report_fincial_invoice_day: string; // 报表-财务报表-发票-日报表
+    table_pcweb_report_fincial_month: string; // 报表-财务报表-月报表
+    table_pcweb_report_fincial_payment_day: string; // 报表-财务报表-款项-日报表
+    table_pcweb_report_spot: string; // 报表-现货报表
+    table_pcweb_report_spot_detail_day: string; // 现货日报表-详情
+    table_pcweb_report_spot_detail_month: string; // 现货月报表-详情
+    table_pcweb_sales_all: string; // 销售_全部
+    table_pcweb_sales_pointprice: string; // 销售_待点价
+    table_pcweb_sales_settle: string; // 销售_履约交收
+    table_pcweb_stock_aduit: string; // 库存审核
+    table_pcweb_stock_manage_applylog: string; // 库存管理-当前库存
+    table_pcweb_stock_manage_current: string; // 库存管理-当前库存
     table_pcweb_userinfo: string; // 客户资料
     table_pcweb_warehouse: string; // 仓库信息
-    table_pcweb_purchase: string; // 采购合同
-    table_pcweb_sell: string; // 销售合同
-    table_pcweb_exposure: string; // 实时敞口
 }

+ 5 - 0
src/common/setup/buttonPermission/interface.ts

@@ -18,6 +18,11 @@ export interface MenuType {
     sell_performance: string;   // 销售 履约交收
     sell_all: string;   // 销售 全部
 
+    exposure_realtime: string;   //实时敞口
+    exposure_spot: string;   //现货头寸
+    exposure_futures: string;   //期货头寸
+    exposure_history: string;   //历史敞口
+
 }
 
 export interface BtnType {

+ 107 - 0
src/views/business/exposure/components/filterTable/index.vue

@@ -0,0 +1,107 @@
+<template>
+  <!-- 过滤客户资料表格 -->
+  <div class="filter-custom-table">
+    <a-input v-model:value="MiddleGoodsName"
+             class="tableConditionInput"
+             placeholder="模糊搜索套保品种" />
+    <a-button class="selectBtn"
+              @click="search">查询</a-button>
+    <a-button class="selectBtn"
+              @click="reset">重置</a-button>
+    <slot></slot>
+  </div>
+</template>
+
+<script lang="ts">
+import { defineComponent, ref, SetupContext } from 'vue';
+
+// 搜索
+function handleSearch(context: SetupContext) {
+    const MiddleGoodsName = ref<string>('');
+
+    function search() {
+        const result = {
+            MiddleGoodsName: [MiddleGoodsName.value],
+        };
+        context.emit('search', result);
+    }
+    function reset() {
+        MiddleGoodsName.value = '';
+        search();
+    }
+
+    return { MiddleGoodsName, search, reset };
+}
+
+export default defineComponent({
+    name: 'sell-filter-table',
+    components: {},
+    setup(props, context) {
+        return {
+            ...handleSearch(context),
+        };
+    },
+});
+</script>
+
+<style lang="less">
+.filter-custom-table {
+    width: 100%;
+    display: inline-flex;
+    padding-top: 9px;
+    padding-bottom: 6px;
+    .ant-select-single:not(.ant-select-customize-input) {
+        margin-right: 10px;
+        // background: #252D34;
+        // .rounded-corners(3px);
+        .ant-select-selector {
+            height: 30px;
+            padding: 0 8px;
+            background: @m-grey9;
+            border: none;
+            .rounded-corners(3px);
+            color: @m-grey10;
+            .ant-select-arrow {
+                right: 8px;
+                color: @m-grey1;
+            }
+        }
+        .ant-select-arrow {
+            color: @m-grey1;
+        }
+        .ant-select-selection-item {
+            color: @m-white1;
+        }
+    }
+    .conditionSelect + .conditionSelect {
+        margin-left: 10px;
+    }
+}
+.selectBtn.ant-btn {
+    margin-left: 10px;
+    width: 80px;
+    height: 30px;
+    line-height: 31px;
+    text-align: center;
+    background: linear-gradient(0deg, @m-grey15 0%, @m-grey16 98%);
+    border: 0;
+    color: @m-white0;
+    font-size: 14px;
+    .rounded-corners(3px);
+    &:hover,
+    &:focus {
+        background: linear-gradient(0deg, @m-grey15-hover 0%, @m-grey16-hover 98%);
+        color: rgba(@m-white0, 0.8);
+        border: 0;
+    }
+}
+.operBtn.ant-btn:extend(.selectBtn.ant-btn) {
+    background: linear-gradient(0deg, @m-blue6 0%, @m-blue7 99%);
+    &:hover,
+    &:focus {
+        background: linear-gradient(0deg, @m-blue6-hover 0%, @m-blue7-hover 99%);
+        color: rgba(@m-white0, 0.8);
+        border: 0;
+    }
+}
+</style>;

+ 73 - 72
src/views/business/exposure/list/realTime/index.vue

@@ -1,83 +1,84 @@
 <template>
-    <!-- 采购: 实时敞口-->
-    <div class="purchase-real-time">
-        采购: 实时敞口
-    </div>
+  <!-- 实时敞口-->
+  <div class="purchase-real-time">
+    <filterCustomTable @search="search">
+      <a-button class="operBtn"
+                v-for="item in commonBtn"
+                :key="item.lable"
+                @click="item.callback">{{item.lable}}</a-button>
+    </filterCustomTable>
+    <contextMenu :contextMenuList="forDataBtn"
+                 :tableList="tableList">
+      <a-table :columns="columns"
+               class="topTable"
+               :pagination="false"
+               rowKey="key"
+               :data-source="tableList">
+        <!-- <template #warehousetype="{ text }">
+          <span>{{ getWareHouseType(text) }}</span>
+        </template>
+        <template #warehousestatus="{ text }">
+          <span>{{ getWareHouseStatus(text) }}</span>
+        </template> -->
+      </a-table>
+    </contextMenu>
+  </div>
 </template>
 
 <script lang="ts">
-    import { defineComponent, ref } from 'vue';
-    import { QueryCustomInfo } from '@/services/go/ermcp/customInfo/index';
-    import { QueryCustomInfoType } from '@/services/go/ermcp/customInfo/interface';
-    import { message } from 'ant-design-vue';
-    import { initData } from '@/common/methods';
+import { defineComponent, ref } from 'vue';
+import { QueryCustomInfo } from '@/services/go/ermcp/customInfo/index';
+import { QueryCustomInfoType } from '@/services/go/ermcp/customInfo/interface';
+import { initData } from '@/common/methods';
+import filterCustomTable from '../../components/filterTable/index.vue';
+import { getBtnList } from '@/common/setup/contextMenu/index';
+import contextMenu from '@/common/components/contextMenu/index.vue';
+import { getColumsAndSearch } from '../setup';
+import { QueryActualExposure } from '@/services/go/ermcp/exposure/index';
+import { ErmcpRealExposureModel } from '@/services/go/ermcp/exposure/interface';
+import { message } from 'ant-design-vue';
 
-    // 查询客户资料列表
-    function getCustomList() {
-        // const filteredInfo = ref();
-        // const sortedInfo = ref();
-        // const columns = computed(() => {
-        //     const filtered = filteredInfo.value || {};
-        //     const sorted = sortedInfo.value || {};
-        //     return [
-        //         {
-        //             title: '序号',
-        //             dataIndex: 'index',
-        //             key: 'index',
-        //             align: 'center',
-        //             width: 50,
-        //             customRender: (param: any) => `${param.index + 1}`,
-        //         },
-        //         {
-        //             title: 'Age',
-        //             dataIndex: 'age',
-        //             key: 'age',
-        //             sorter: (a: DataItem, b: DataItem) => a.age - b.age,
-        //             sortOrder: sorted.columnKey === 'age' && sorted.order,
-        //         },
-        //         {
-        //             title: 'Address',
-        //             dataIndex: 'address',
-        //             key: 'address',
-        //             filters: [
-        //                 { text: 'London', value: 'London' },
-        //                 { text: 'New York', value: 'New York' },
-        //             ],
-        //             filteredValue: filtered.address || null,
-        //             onFilter: (value: string, record: DataItem) => record.address.includes(value),
-        //             sorter: (a: DataItem, b: DataItem) => a.address.length - b.address.length,
-        //             sortOrder: sorted.columnKey === 'address' && sorted.order,
-        //             ellipsis: true,
-        //         },
-        //     ];
-        // });
-        const customList = ref<QueryCustomInfoType[]>([]);
-        function actionQuery() {
-            QueryCustomInfo(4)
-                .then((res) => {
-                    console.log('L', res);
-                })
-                .catch((err) => message.error(err));
-        }
-
-        return { customList, actionQuery };
+// 获取表格数据
+function getExposure() {
+    const loading = ref<boolean>(false);
+    const tableList = ref<ErmcpRealExposureModel[]>([]);
+    function queryList() {
+        QueryActualExposure()
+            .then((res) => {
+                tableList.value = res.map((e, i) => {
+                    return { ...e, key: String(i) };
+                });
+                loading.value = false;
+                console.log('查询列表', tableList);
+            })
+            .catch((err) => {
+                message.error(err);
+                loading.value = false;
+            });
     }
 
-    export default defineComponent({
-        name: 'purchase-real-time',
-        components: {},
-        setup() {
-            const { customList, actionQuery } = getCustomList();
-            initData(() => {
-                actionQuery();
-                // 加载数据在这里
-            });
-            return { customList };
-        },
-    });
+    return { loading, tableList, queryList };
+}
+
+export default defineComponent({
+    name: 'purchase-real-time',
+    components: {
+        contextMenu,
+        filterCustomTable,
+    },
+    setup() {
+        const { loading, tableList, queryList } = getExposure();
+        const { commonBtn, forDataBtn } = getBtnList('exposure_realtime');
+        initData(() => {
+            queryList();
+        });
+        return { commonBtn, forDataBtn, loading, tableList };
+    },
+});
 </script>
 
 <style lang="less">
-    .purchase-real-time {
-    }</style
+.purchase-real-time {
+}
+</style
 >;

+ 49 - 0
src/views/business/exposure/list/setup.ts

@@ -0,0 +1,49 @@
+
+import { ColumnType, getTableHead } from '@/common/methods/table';
+import { TableKey } from '@/common/methods/table/interface';
+import { ref } from 'vue';
+
+/**
+ * 
+ * 获取表头和查询
+ * @param tableKey 动态表头名
+ * @param hasFilter 是否有过滤功能
+ * @returns 表头:columns;search 搜索方法
+ */
+export function getColumsAndSearch(tableKey: keyof TableKey, hasFilter: boolean) {
+    const columns = ref<ColumnType[]>([]);
+    const filteredInfo = ref();
+    function getColumns(tableKey: keyof TableKey, hasFilter: boolean) {
+        const list = getTableHead(tableKey);
+        // 过滤项
+        const filtered = filteredInfo.value || {};
+        list.forEach((e, i) => {
+            const { columnfield, columntitle, aligntype } = e;
+            const item: ColumnType = {
+                key: String(i),
+                dataIndex: columnfield, // 表格数据对应的key
+                title: columntitle,
+                align: aligntype === 1 ? 'center' : aligntype === 2 ? 'left' : 'right',
+                slots: { customRender: columnfield },
+            };
+            // // 以下添加过滤数据对应的方法
+            if (hasFilter) {
+                if (e.columnfield === 'MiddleGoodsName') {
+                    item.onFilter = (value: string, record: any) => record.MiddleGoodsName.includes(value);
+                    item.filteredValue = filtered.MiddleGoodsName || null;
+                }
+            }
+            columns.value.push(item);
+        });
+
+        return { columns }
+    }
+    // 查询
+    function search(value: any) {
+        filteredInfo.value = value;
+        getColumns(tableKey, hasFilter);
+    }
+    return { columns, search }
+}
+
+

+ 1 - 1
src/views/business/purchase/list/all/index.vue

@@ -65,7 +65,7 @@ export default defineComponent({
         SomePrice,
     },
     setup() {
-        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList();
+        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_purchase_all');
         const { commonBtn, forDataBtn } = getBtnList('purchase_all');
 
         initData(() => {

+ 1 - 1
src/views/business/purchase/list/pending/index.vue

@@ -49,7 +49,7 @@ export default defineComponent({
         SomePrice,
     },
     setup() {
-        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList();
+        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_purchase_pointprice');
         const { commonBtn, forDataBtn } = getBtnList('purchase_pending');
 
         initData(() => {

+ 1 - 1
src/views/business/purchase/list/performance/index.vue

@@ -61,7 +61,7 @@ export default defineComponent({
         Storage,
     },
     setup() {
-        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList();
+        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_purchase_settle');
         const { commonBtn, forDataBtn } = getBtnList('purchase_performance');
 
         initData(() => {

+ 3 - 2
src/views/business/purchase/list/setup.ts

@@ -1,11 +1,12 @@
 import { ColumnType, getTableHead } from '@/common/methods/table';
+import { TableKey } from '@/common/methods/table/interface';
 import { QueryPurchase } from '@/services/go/ermcp/purchase/index';
 import { Ermcp3SellBuyContract, Querytype } from '@/services/go/ermcp/purchase/interface';
 import { message } from 'ant-design-vue';
 import { ref } from 'vue';
 
 // 列表
-export function getTableList() {
+export function getTableList(tableKey: keyof TableKey) {
     // 表格数据
     const tableList = ref<Ermcp3SellBuyContract[]>([]);
     // 表头数据
@@ -15,7 +16,7 @@ export function getTableList() {
     const loading = ref<boolean>(false);
     // 获取表头
     function getColumns() {
-        const list = getTableHead('table_pcweb_purchase');
+        const list = getTableHead(tableKey);
         const filtered = filteredInfo.value || {};
         columns.value.length = 0;
         list.forEach((e, i) => {

+ 1 - 1
src/views/business/sell/list/all/index.vue

@@ -65,7 +65,7 @@ export default defineComponent({
         SomePrice,
     },
     setup() {
-        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_sell');
+        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_sales_all');
         const { commonBtn, forDataBtn } = getBtnList('sell_all');
 
         initData(() => {

+ 1 - 1
src/views/business/sell/list/pending/index.vue

@@ -49,7 +49,7 @@ export default defineComponent({
         SomePrice,
     },
     setup() {
-        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_sell');
+        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_sales_pointprice');
         const { commonBtn, forDataBtn } = getBtnList('sell_pending');
 
         initData(() => {

+ 1 - 1
src/views/business/sell/list/performance/index.vue

@@ -61,7 +61,7 @@ export default defineComponent({
         Storage,
     },
     setup() {
-        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_sell');
+        const { tableList, actionQuery, columns, filteredInfo, getColumns, search, loading } = getTableList('table_pcweb_sales_settle');
         const { commonBtn, forDataBtn } = getBtnList('sell_performance');
 
         initData(() => {

+ 5131 - 0
swagger-to-ts/index.html

@@ -0,0 +1,5131 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Document</title>
+</head>
+<body>
+    <script>
+        const table = [
+	{
+		tablekey: 'table_pcweb_userinfo',
+		tabletype: 2,
+		tablename: '客户资料',
+		tabelmenu: '',
+		remark: 'web端-客户资料',
+		columns: [
+			{
+				autoid: 5179,
+				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: 5180,
+				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: 5181,
+				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: 5182,
+				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: 5183,
+				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: 5184,
+				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: 5185,
+				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: 5186,
+				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: 5187,
+				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: 5188,
+				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: 5189,
+				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: 5190,
+				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: 5191,
+				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: 5192,
+				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_warehouse',
+		tabletype: 2,
+		tablename: '仓库信息',
+		tabelmenu: '',
+		remark: 'web端-仓库信息',
+		columns: [
+			{
+				autoid: 5193,
+				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: 5194,
+				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: 5195,
+				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: 5196,
+				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: 5197,
+				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: 5198,
+				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: 5199,
+				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: 5200,
+				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: 5201,
+				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: 5202,
+				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: 5203,
+				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: 5204,
+				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: 5205,
+				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: 5206,
+				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: 5207,
+				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: 5208,
+				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: 5209,
+				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: 5210,
+				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: 5211,
+				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: 5212,
+				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: 5213,
+				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: 5214,
+				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: 5215,
+				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: 5216,
+				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_delivery',
+		tabletype: 2,
+		tablename: '现货合同',
+		tabelmenu: '',
+		remark: 'web端-现货合同',
+		columns: [
+			{
+				autoid: 5160,
+				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: 5161,
+				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: 5162,
+				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: 5163,
+				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: 5164,
+				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: 5165,
+				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: 5166,
+				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: 5167,
+				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: 5168,
+				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: 5169,
+				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: 5170,
+				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: 5171,
+				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: 5172,
+				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: 5173,
+				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: 5174,
+				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: 5175,
+				tablekey: 'table_pcweb_delivery',
+				columnfield: 'date',
+				columntitle: '点价期',
+				columnwidth: '0',
+				orderindex: 160,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'date',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5176,
+				tablekey: 'table_pcweb_delivery',
+				columnfield: 'deliverydate',
+				columntitle: '交收期',
+				columnwidth: '0',
+				orderindex: 170,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'deliverydate',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5177,
+				tablekey: 'table_pcweb_delivery',
+				columnfield: 'saleuserlogincode',
+				columntitle: '业务员',
+				columnwidth: '0',
+				orderindex: 180,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'saleuserlogincode',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5178,
+				tablekey: 'table_pcweb_delivery',
+				columnfield: 'meruserlogincode',
+				columntitle: '跟单员',
+				columnwidth: '0',
+				orderindex: 190,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'meruserlogincode',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_purchase_settle',
+		tabletype: 2,
+		tablename: '采购_履约交收',
+		tabelmenu: '',
+		remark: 'web端-采购-履约交收',
+		columns: [
+			{
+				autoid: 5217,
+				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: 5218,
+				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: 5219,
+				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: 5220,
+				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: 5221,
+				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: 5222,
+				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: 5223,
+				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: 5224,
+				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: 5225,
+				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: 5226,
+				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: 5227,
+				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: 5228,
+				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: 5229,
+				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: 5230,
+				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: 5232,
+				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: 5233,
+				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: ''
+			},
+			{
+				autoid: 5231,
+				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: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_purchase_all',
+		tabletype: 2,
+		tablename: '采购_全部',
+		tabelmenu: '',
+		remark: 'web端-采购-全部',
+		columns: [
+			{
+				autoid: 5234,
+				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: 5235,
+				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: 5236,
+				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: 5237,
+				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: 5238,
+				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: 5239,
+				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: 5240,
+				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: 5241,
+				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: 5242,
+				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: 5243,
+				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: 5244,
+				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: 5245,
+				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: 5246,
+				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: 5247,
+				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: 5248,
+				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: 5249,
+				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: 5250,
+				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: 5251,
+				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: 5252,
+				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: 5253,
+				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: 5254,
+				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: 5255,
+				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: 5256,
+				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: 5257,
+				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: 5258,
+				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: 5259,
+				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: 5260,
+				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: 5261,
+				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: 5262,
+				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: 5263,
+				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: 5264,
+				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: 5265,
+				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: 5266,
+				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: 5267,
+				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: 5268,
+				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: 5269,
+				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: 5270,
+				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: 5271,
+				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: 5272,
+				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: 5273,
+				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: 5274,
+				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: 5275,
+				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: 5276,
+				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: 5277,
+				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: 5278,
+				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: 5279,
+				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: 5280,
+				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: 5281,
+				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: 5282,
+				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: 5283,
+				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: 5284,
+				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: 5285,
+				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: 5286,
+				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: 5287,
+				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: 5288,
+				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: 5289,
+				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: 5290,
+				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: 5291,
+				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: 5292,
+				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: 5293,
+				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: 5294,
+				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: 5295,
+				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: 5296,
+				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: 5297,
+				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: 5298,
+				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: 5299,
+				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: 5300,
+				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: 5301,
+				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: 5302,
+				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: 5303,
+				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: 5304,
+				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: 5305,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'middleGoodsName,middleGoodsCode',
+				columntitle: '套保品种/代码',
+				columnwidth: '0',
+				orderindex: 10,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'middleGoodsName,middleGoodsCode',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5306,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'totalSpotQty',
+				columntitle: '现货数量',
+				columnwidth: '0',
+				orderindex: 20,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'totalSpotQty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5307,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'middleGoodsHedgeRatio',
+				columntitle: '应套保比例',
+				columnwidth: '0',
+				orderindex: 30,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'middleGoodsHedgeRatio',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5308,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'totalNeedHedgeQty',
+				columntitle: '期货应套保量',
+				columnwidth: '0',
+				orderindex: 40,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'totalNeedHedgeQty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5309,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'totalFutureQty',
+				columntitle: '期货数量',
+				columnwidth: '0',
+				orderindex: 50,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'totalFutureQty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5310,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'needHedgeExposoure',
+				columntitle: '应套保敞口',
+				columnwidth: '0',
+				orderindex: 60,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'needHedgeExposoure',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5311,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'needHedgeRatio',
+				columntitle: '应套保比例',
+				columnwidth: '0',
+				orderindex: 70,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'needHedgeRatio',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5312,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'totalExposure',
+				columntitle: '总敞口',
+				columnwidth: '0',
+				orderindex: 80,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'totalExposure',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5313,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'totalHedgeRatio',
+				columntitle: '敞口比例',
+				columnwidth: '0',
+				orderindex: 90,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'totalHedgeRatio',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5314,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'oriTotalSpotQty',
+				columntitle: '现货期初量',
+				columnwidth: '0',
+				orderindex: 100,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'oriTotalSpotQty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5315,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'diffSpotQty',
+				columntitle: '现货今日变动量',
+				columnwidth: '0',
+				orderindex: 110,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'diffSpotQty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5316,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'oriTotalFutuQty',
+				columntitle: '期货期初量',
+				columnwidth: '0',
+				orderindex: 120,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'oriTotalFutuQty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5317,
+				tablekey: 'table_pcweb_exposure',
+				columnfield: 'diffFutuQty',
+				columntitle: '今日变动量',
+				columnwidth: '0',
+				orderindex: 130,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'diffFutuQty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_exposure_detail',
+		tabletype: 2,
+		tablename: '实时敞口--现货明细',
+		tabelmenu: '',
+		remark: 'web端--实时敞口--现货明细',
+		columns: [
+			{
+				autoid: 5318,
+				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: 5319,
+				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: 5320,
+				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: 5321,
+				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: 5322,
+				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: 5323,
+				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: 5324,
+				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: 5325,
+				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: 5326,
+				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: 5327,
+				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: 5328,
+				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: 5329,
+				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: 5330,
+				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: 5331,
+				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: 5332,
+				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: 5333,
+				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: 5334,
+				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: 5335,
+				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: 5336,
+				tablekey: 'table_pcweb_exposure_spotposition',
+				columnfield: 'wrstandardname',
+				columntitle: '现货品种',
+				columnwidth: '0',
+				orderindex: 10,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'wrstandardname',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5337,
+				tablekey: 'table_pcweb_exposure_spotposition',
+				columnfield: 'wrstandardcode',
+				columntitle: '代码',
+				columnwidth: '0',
+				orderindex: 20,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'wrstandardcode',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5338,
+				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: 5339,
+				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: 5340,
+				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: 5341,
+				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: 5347,
+				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: 5348,
+				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: 5349,
+				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: 5350,
+				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: 5351,
+				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: 5352,
+				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: 5358,
+				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: 5359,
+				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: 5360,
+				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: 5361,
+				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: 5362,
+				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: 5363,
+				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: 5364,
+				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: 5365,
+				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: 5366,
+				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: 5367,
+				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: 5368,
+				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: 5369,
+				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: 5370,
+				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: 5371,
+				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: 5372,
+				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: 5373,
+				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: 5374,
+				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: 5375,
+				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: 5376,
+				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: 5379,
+				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: 5380,
+				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: 5381,
+				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: 5382,
+				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: 5383,
+				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: ''
+			},
+			{
+				autoid: 5377,
+				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: 5378,
+				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: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_report_spot_detail_month',
+		tabletype: 2,
+		tablename: '现货月报表-详情',
+		tabelmenu: '',
+		remark: 'web端-现货月报表-详情',
+		columns: [
+			{
+				autoid: 5384,
+				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: 5385,
+				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: 5386,
+				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: 5387,
+				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: 5388,
+				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: 5389,
+				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: 5390,
+				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: 5391,
+				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: 5392,
+				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: 5393,
+				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: 5394,
+				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: 5395,
+				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: 5396,
+				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: 5397,
+				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: 5398,
+				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: 5399,
+				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: 5400,
+				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: 5401,
+				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: 5402,
+				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: 5403,
+				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: 5404,
+				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: 5405,
+				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: 5406,
+				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: 5407,
+				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: 5408,
+				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: 5409,
+				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: 5410,
+				tablekey: 'table_pcweb_business_aduit_dj',
+				columnfield: 'applytime',
+				columntitle: '点价登记时间',
+				columnwidth: '0',
+				orderindex: 10,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'applytime',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5411,
+				tablekey: 'table_pcweb_business_aduit_dj',
+				columnfield: 'audittime',
+				columntitle: '点价审核时间',
+				columnwidth: '0',
+				orderindex: 20,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'audittime',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5412,
+				tablekey: 'table_pcweb_business_aduit_dj',
+				columnfield: 'contracttype',
+				columntitle: '合同类型',
+				columnwidth: '0',
+				orderindex: 30,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'contracttype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5413,
+				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: 5414,
+				tablekey: 'table_pcweb_business_aduit_dj',
+				columnfield: 'pricedPrice',
+				columntitle: '点价价格',
+				columnwidth: '0',
+				orderindex: 50,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'pricedPrice',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5415,
+				tablekey: 'table_pcweb_business_aduit_dj',
+				columnfield: 'amount',
+				columntitle: '点价金额',
+				columnwidth: '0',
+				orderindex: 60,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'amount',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5416,
+				tablekey: 'table_pcweb_business_aduit_dj',
+				columnfield: 'contractstatus',
+				columntitle: '状态',
+				columnwidth: '0',
+				orderindex: 70,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'contractstatus',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_business_aduit_js',
+		tabletype: 2,
+		tablename: '业务审核-交收',
+		tabelmenu: '',
+		remark: 'web端-业务审核-交收',
+		columns: [
+			{
+				autoid: 5417,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'applytime',
+				columntitle: '交收登记时间',
+				columnwidth: '0',
+				orderindex: 10,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'applytime',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5418,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'audittime',
+				columntitle: '交收审核时间',
+				columnwidth: '0',
+				orderindex: 20,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'audittime',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5419,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'contracttype',
+				columntitle: '合同类型',
+				columnwidth: '0',
+				orderindex: 30,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'contracttype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5420,
+				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: 5421,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'reckonrealqty',
+				columntitle: '交收量',
+				columnwidth: '0',
+				orderindex: 50,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'reckonrealqty',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5422,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'reckonotheramount',
+				columntitle: '其他费用',
+				columnwidth: '0',
+				orderindex: 60,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'reckonotheramount',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5423,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'addmargin||decmargin',
+				columntitle: '调整保证金',
+				columnwidth: '0',
+				orderindex: 70,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'addmargin||decmargin',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5424,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'reckonadjustamount',
+				columntitle: '调整金额',
+				columnwidth: '0',
+				orderindex: 80,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'reckonadjustamount',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5425,
+				tablekey: 'table_pcweb_business_aduit_js',
+				columnfield: 'contractstatus',
+				columntitle: '状态',
+				columnwidth: '0',
+				orderindex: 90,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'contractstatus',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_fincial_aduit_fp',
+		tabletype: 2,
+		tablename: '业务审核-发票',
+		tabelmenu: '',
+		remark: 'web端-业务审核-发票',
+		columns: [
+			{
+				autoid: 5426,
+				tablekey: 'table_pcweb_fincial_aduit_fp',
+				columnfield: 'applytime',
+				columntitle: '发票登记时间',
+				columnwidth: '0',
+				orderindex: 10,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'applytime',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5427,
+				tablekey: 'table_pcweb_fincial_aduit_fp',
+				columnfield: 'audittime',
+				columntitle: '发票审核时间',
+				columnwidth: '0',
+				orderindex: 20,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'audittime',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5428,
+				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: 5429,
+				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: 5430,
+				tablekey: 'table_pcweb_fincial_aduit_fp',
+				columnfield: 'contracttype',
+				columntitle: '类型',
+				columnwidth: '0',
+				orderindex: 50,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'contracttype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5431,
+				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: 5432,
+				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: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_fincial_aduit_kx',
+		tabletype: 2,
+		tablename: '财务审核-款项',
+		tabelmenu: '',
+		remark: 'web端-财务审核-款项',
+		columns: [
+			{
+				autoid: 5433,
+				tablekey: 'table_pcweb_fincial_aduit_kx',
+				columnfield: 'userinfotype',
+				columntitle: '款项登记时间',
+				columnwidth: '0',
+				orderindex: 10,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5434,
+				tablekey: 'table_pcweb_fincial_aduit_kx',
+				columnfield: 'userinfotype',
+				columntitle: '款项审核时间',
+				columnwidth: '0',
+				orderindex: 20,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5435,
+				tablekey: 'table_pcweb_fincial_aduit_kx',
+				columnfield: 'userinfotype',
+				columntitle: '合同类型',
+				columnwidth: '0',
+				orderindex: 30,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5436,
+				tablekey: 'table_pcweb_fincial_aduit_kx',
+				columnfield: 'userinfotype',
+				columntitle: '合同编号',
+				columnwidth: '0',
+				orderindex: 40,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5437,
+				tablekey: 'table_pcweb_fincial_aduit_kx',
+				columnfield: 'userinfotype',
+				columntitle: '类型',
+				columnwidth: '0',
+				orderindex: 50,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5438,
+				tablekey: 'table_pcweb_fincial_aduit_kx',
+				columnfield: 'userinfotype',
+				columntitle: '金额',
+				columnwidth: '0',
+				orderindex: 60,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5439,
+				tablekey: 'table_pcweb_fincial_aduit_kx',
+				columnfield: 'userinfotype',
+				columntitle: '状态',
+				columnwidth: '0',
+				orderindex: 70,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_stock_aduit',
+		tabletype: 2,
+		tablename: '库存审核',
+		tabelmenu: '',
+		remark: 'web端-库存审核',
+		columns: [
+			{
+				autoid: 5440,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '登记时间',
+				columnwidth: '0',
+				orderindex: 10,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5441,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '审核时间',
+				columnwidth: '0',
+				orderindex: 20,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5442,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '现货品种',
+				columnwidth: '0',
+				orderindex: 30,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5443,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '类型',
+				columnwidth: '0',
+				orderindex: 40,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5444,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '数量',
+				columnwidth: '0',
+				orderindex: 50,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5445,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '状态',
+				columnwidth: '0',
+				orderindex: 60,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5446,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '品类',
+				columnwidth: '0',
+				orderindex: 70,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5447,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '品牌',
+				columnwidth: '0',
+				orderindex: 80,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5448,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '仓库',
+				columnwidth: '0',
+				orderindex: 90,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5449,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '合同编号',
+				columnwidth: '0',
+				orderindex: 100,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5450,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '申请人',
+				columnwidth: '0',
+				orderindex: 110,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			},
+			{
+				autoid: 5451,
+				tablekey: 'table_pcweb_stock_aduit',
+				columnfield: 'userinfotype',
+				columntitle: '审核人',
+				columnwidth: '0',
+				orderindex: 120,
+				isshow: 1,
+				aligntype: 1,
+				formattertype: '',
+				formatterstring: '',
+				remark: 'userinfotype',
+				needsummary: 0,
+				summarytype: 0,
+				groupname: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_stock_manage_current',
+		tabletype: 2,
+		tablename: '库存管理-当前库存',
+		tabelmenu: '',
+		remark: '手机端-库存管理-当前库存',
+		columns: [
+			{
+				autoid: 5453,
+				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: 5454,
+				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: 5455,
+				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: 5456,
+				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: 5457,
+				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: 5458,
+				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: 5459,
+				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: ''
+			},
+			{
+				autoid: 5452,
+				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: ''
+			}
+		]
+	},
+	{
+		tablekey: 'table_pcweb_stock_manage_applylog',
+		tabletype: 2,
+		tablename: '库存管理-当前库存',
+		tabelmenu: '',
+		remark: 'web端-库存管理-当前库存',
+		columns: [
+			{
+				autoid: 5460,
+				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: 5461,
+				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: 5462,
+				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: 5463,
+				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: 5464,
+				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: 5465,
+				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: 5466,
+				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: 5467,
+				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: 5468,
+				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: 5469,
+				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: 5470,
+				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: 5471,
+				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: ''
+			}
+		]
+	}
+];
+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>