提交 cff1781a 编写于 作者: ibizdev's avatar ibizdev

tony001 发布系统代码 [后台服务,演示应用]

上级 1acfac21
......@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr5DataView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr5DataView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -11,7 +11,7 @@ export default class Usr2Model {
* 获取数据项集合
*
* @returns {any[]}
* @memberof Usr2DataViewMode
* @memberof Usr2Dataviewexpbar_dataviewMode
*/
public getDataItems(): any[] {
return [
......@@ -40,17 +40,6 @@ export default class Usr2Model {
dataType: 'FONTKEY',
},
{
name: 'n_ibizbookname_like',
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{
name:'size',
......
......@@ -718,7 +718,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -812,7 +812,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return;
}
let _datas:any[] = [];
......@@ -928,7 +928,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -936,7 +936,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){
......
......@@ -70,6 +70,11 @@ export default class Usr4Model {
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{
......
......@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderDetailSGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public addBatch(arg: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface {
try {
if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2091,7 +2091,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -3,8 +3,6 @@
<i-form style="height:100%;display:flex;flex-direction: column;justify-content: space-between">
<input style="display:none;" />
<el-table v-if="isDisplay === true"
:default-sort="{ prop: minorSortPSDEF, order: Object.is(minorSortDir, 'ASC') ? 'ascending' : Object.is(minorSortDir, 'DESC') ? 'descending' : '' }"
@sort-change="onSortChange($event)"
:border="isDragendCol"
:highlight-current-row ="isSingleSelect"
:row-class-name="getRowClassName"
......@@ -25,7 +23,7 @@
<el-table-column align="center" type='selection' :width="checkboxColWidth"></el-table-column>
</template>
<template v-if="getColumnState('orderuid')">
<el-table-column show-overflow-tooltip :prop="'orderuid'" :label="$t('DEF.LNAME.ORDERUID', '订单编号')" :width="150" :align="'left'" :sortable="'custom'">
<el-table-column show-overflow-tooltip :prop="'orderuid'" :label="$t('DEF.LNAME.ORDERUID', '订单编号')" :width="150" :align="'left'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('DEF.LNAME.ORDERUID', '订单编号')}}
......@@ -37,7 +35,7 @@
</el-table-column>
</template>
<template v-if="getColumnState('ibizordername')">
<el-table-column show-overflow-tooltip :prop="'ibizordername'" :label="$t('DEF.LNAME.IBIZORDERNAME', '订单名称')" :width="150" :align="'left'" :sortable="'custom'">
<el-table-column show-overflow-tooltip :prop="'ibizordername'" :label="$t('DEF.LNAME.IBIZORDERNAME', '订单名称')" :width="150" :align="'left'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('DEF.LNAME.IBIZORDERNAME', '订单名称')}}
......@@ -49,7 +47,7 @@
</el-table-column>
</template>
<template v-if="getColumnState('orderstate')">
<el-table-column show-overflow-tooltip :prop="'orderstate'" :label="$t('DEF.LNAME.ORDERSTATE', '订单状态')" :width="150" :align="'left'" :sortable="'custom'">
<el-table-column show-overflow-tooltip :prop="'orderstate'" :label="$t('DEF.LNAME.ORDERSTATE', '订单状态')" :width="150" :align="'left'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('DEF.LNAME.ORDERSTATE', '订单状态')}}
......@@ -63,7 +61,7 @@
</el-table-column>
</template>
<template v-if="getColumnState('ordertype')">
<el-table-column show-overflow-tooltip :prop="'ordertype'" :label="$t('DEF.LNAME.ORDERTYPE', '订单类型')" :width="150" :align="'left'" :sortable="'custom'">
<el-table-column show-overflow-tooltip :prop="'ordertype'" :label="$t('DEF.LNAME.ORDERTYPE', '订单类型')" :width="150" :align="'left'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('DEF.LNAME.ORDERTYPE', '订单类型')}}
......@@ -77,7 +75,7 @@
</el-table-column>
</template>
<template v-if="getColumnState('ordertime')">
<el-table-column show-overflow-tooltip :prop="'ordertime'" :label="$t('DEF.LNAME.ORDERTIME', '订单时间')" :width="150" :align="'left'" :sortable="'custom'">
<el-table-column show-overflow-tooltip :prop="'ordertime'" :label="$t('DEF.LNAME.ORDERTIME', '订单时间')" :width="150" :align="'left'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('DEF.LNAME.ORDERTIME', '订单时间')}}
......@@ -91,7 +89,7 @@
</el-table-column>
</template>
<template v-if="getColumnState('updatedate')">
<el-table-column show-overflow-tooltip :prop="'updatedate'" :label="$t('DEF.LNAME.UPDATEDATE', '更新时间')" :width="150" :align="'left'" :sortable="'custom'">
<el-table-column show-overflow-tooltip :prop="'updatedate'" :label="$t('DEF.LNAME.UPDATEDATE', '更新时间')" :width="150" :align="'left'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('DEF.LNAME.UPDATEDATE', '更新时间')}}
......@@ -105,7 +103,7 @@
</el-table-column>
</template>
<template v-if="getColumnState('memo')">
<el-table-column show-overflow-tooltip :prop="'memo'" :label="$t('DEF.LNAME.MEMO', '备注')" :min-width="1" :align="'left'" :sortable="'custom'">
<el-table-column show-overflow-tooltip :prop="'memo'" :label="$t('DEF.LNAME.MEMO', '备注')" :min-width="1" :align="'left'">
<template v-slot:header="{column}">
<span class="column-header ">
{{$t('DEF.LNAME.MEMO', '备注')}}
......@@ -121,7 +119,6 @@
</template>
</el-table>
<app-grid-pagination :totalRow="totalrow" :curPage="curPage" :limit="limit" @page-change="handlePageChange" @page-size-change="handlePageSizeChange" />
</i-form>
</div>
</template>
......@@ -534,7 +531,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {boolean}
* @memberof MainBase
*/
public isEnablePagingBar: boolean = true;
public isEnablePagingBar: boolean = false;
/**
* 是否禁用排序
......@@ -542,7 +539,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {boolean}
* @memberof MainBase
*/
public isNoSort: boolean = false;
public isNoSort: boolean = true;
/**
* 排序方向
......@@ -566,7 +563,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {number}
* @memberof MainBase
*/
public limit: number = 10;
public limit: number = 20;
/**
* 是否显示标题
......
......@@ -976,7 +976,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1000,7 +1000,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1028,7 +1028,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1056,7 +1056,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1082,7 +1082,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1135,7 +1135,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1159,7 +1159,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -1301,7 +1301,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -1317,18 +1317,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -75,7 +75,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -99,7 +99,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -127,7 +127,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -155,7 +155,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -181,7 +181,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -234,7 +234,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -258,7 +258,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -400,7 +400,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -416,18 +416,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
"modeltype" : "PSDEGRID"
......
......@@ -900,7 +900,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -924,7 +924,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -952,7 +952,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -980,7 +980,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1006,7 +1006,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1059,7 +1059,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1083,7 +1083,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -1225,7 +1225,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderGridView9/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -1241,18 +1241,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -1422,7 +1422,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1446,7 +1446,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1474,7 +1474,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1502,7 +1502,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1528,7 +1528,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1581,7 +1581,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1605,7 +1605,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -1747,7 +1747,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -1763,18 +1763,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -629,7 +629,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -653,7 +653,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -681,7 +681,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -709,7 +709,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -735,7 +735,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -788,7 +788,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -812,7 +812,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -954,7 +954,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -970,18 +970,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -434,7 +434,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -458,7 +458,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -486,7 +486,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -514,7 +514,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -540,7 +540,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -593,7 +593,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -617,7 +617,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -759,7 +759,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderGridView9/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -775,18 +775,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -199,7 +199,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -223,7 +223,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -251,7 +251,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -279,7 +279,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -305,7 +305,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -358,7 +358,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -382,7 +382,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -524,7 +524,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderPickupGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -540,18 +540,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -235,7 +235,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -259,7 +259,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -287,7 +287,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -315,7 +315,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -341,7 +341,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -394,7 +394,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -418,7 +418,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -560,7 +560,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderPickupGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -576,18 +576,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -595,7 +595,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -619,7 +619,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -647,7 +647,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -675,7 +675,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -701,7 +701,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -754,7 +754,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -778,7 +778,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -920,7 +920,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSF15GridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -936,18 +936,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -631,7 +631,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -655,7 +655,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -683,7 +683,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -711,7 +711,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -737,7 +737,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -790,7 +790,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -814,7 +814,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -956,7 +956,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSF1GridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -972,18 +972,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -515,7 +515,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -539,7 +539,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -567,7 +567,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -595,7 +595,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -621,7 +621,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -674,7 +674,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -698,7 +698,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -840,7 +840,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSF5GridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -856,18 +856,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -492,7 +492,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -516,7 +516,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -544,7 +544,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -572,7 +572,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -598,7 +598,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -651,7 +651,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -675,7 +675,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -817,7 +817,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSF6GridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -833,18 +833,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -1706,7 +1706,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1730,7 +1730,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1758,7 +1758,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1786,7 +1786,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1812,7 +1812,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1865,7 +1865,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1889,7 +1889,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -2035,7 +2035,7 @@
"pluginType" : "GRID_RENDER",
"pluginCode" : "redGridHeader"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -2051,7 +2051,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"getUpdatePSControlAction" : {
"actionName" : "Update",
"actionType" : "DEACTION",
......@@ -2070,13 +2070,13 @@
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : true,
"enableRowEditOrder" : false,
"enableRowNew" : true,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : true,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -532,7 +532,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -556,7 +556,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -584,7 +584,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -612,7 +612,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -638,7 +638,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -691,7 +691,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -715,7 +715,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -857,7 +857,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView2/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -873,18 +873,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -171,7 +171,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -195,7 +195,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -223,7 +223,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -251,7 +251,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -277,7 +277,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -330,7 +330,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -354,7 +354,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -496,7 +496,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderTestLogicCustomView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -512,18 +512,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -566,7 +566,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -590,7 +590,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -618,7 +618,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -646,7 +646,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -672,7 +672,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -725,7 +725,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -749,7 +749,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -891,7 +891,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderUsr2GridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -907,18 +907,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -1155,7 +1155,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1179,7 +1179,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1207,7 +1207,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1235,7 +1235,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1261,7 +1261,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1314,7 +1314,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1338,7 +1338,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -1480,7 +1480,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderViewPluginExGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -1496,18 +1496,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -465,7 +465,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -489,7 +489,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -517,7 +517,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -545,7 +545,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -571,7 +571,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -624,7 +624,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -648,7 +648,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -790,7 +790,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderZDYTPGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -806,18 +806,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
......@@ -1023,7 +1023,7 @@
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1047,7 +1047,7 @@
"rTMOSFilePath" : "psdegridcols/IBIZordername",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1075,7 +1075,7 @@
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
......@@ -1103,7 +1103,7 @@
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1129,7 +1129,7 @@
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1182,7 +1182,7 @@
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
"enableSort" : false
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
......@@ -1206,7 +1206,7 @@
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
"enableSort" : false
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
......@@ -1348,7 +1348,7 @@
"getPSSysCss" : {
"cssName" : "redToolBar"
},
"pagingSize" : 10,
"pagingSize" : 20,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderGridView9/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
......@@ -1364,18 +1364,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"sortMode" : "LOCAL",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enablePagingBar" : false,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : false,
"hideHeader" : true,
"noSort" : false,
"noSort" : true,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册