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

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

上级 75d81470
...@@ -718,7 +718,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -718,7 +718,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/ */
public async load(opt: any = {}, isReset: boolean = false): Promise<any> { public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){ 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; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -812,7 +812,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -812,7 +812,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/ */
public async remove(datas: any[]): Promise<any> { public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){ 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; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -928,7 +928,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -928,7 +928,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try { try {
if(Object.is(item.rowDataState, 'create')){ if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){ 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{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); 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 { ...@@ -936,7 +936,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
} }
}else if(Object.is(item.rowDataState, 'update')){ }else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){ 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{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){ if(item.ibizbook){
......
...@@ -84,7 +84,9 @@ ...@@ -84,7 +84,9 @@
</span> </span>
</template> </template>
<template v-slot="{row,column,$index}"> <template v-slot="{row,column,$index}">
<app-format-data format="YYYY-MM-DD" :data="row.ordertime"></app-format-data> <template >
<app-span name='ordertime' editorType="DATEPICKER" :value="row.ordertime" dataType="DATE" precision="0" ></app-span>
</template>
</template> </template>
</el-table-column> </el-table-column>
</template> </template>
...@@ -664,7 +666,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -664,7 +666,7 @@ export default class MainBase extends Vue implements ControlInterface {
* *
* @memberof MainBase * @memberof MainBase
*/ */
public defaultUpdateItems:Array<any> =[]; public defaultUpdateItems:Array<any> =[,];
/** /**
* 选中行数据 * 选中行数据
...@@ -891,6 +893,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -891,6 +893,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public getGridRowModel(){ public getGridRowModel(){
return { return {
ordertime: new FormItemModel(),
srfkey: new FormItemModel(), srfkey: new FormItemModel(),
} }
} }
...@@ -914,6 +917,10 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -914,6 +917,10 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public rules(){ public rules(){
return { return {
ordertime: [
{ required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: `${this.$t('DEF.LNAME.ORDERTIME', '订单时间')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: `${this.$t('DEF.LNAME.ORDERTIME', '订单时间')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
srfkey: [ srfkey: [
{ required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: `${this.$t('DEF.LNAME.IBIZORDERID', '订单标识')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' }, { required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: `${this.$t('DEF.LNAME.IBIZORDERID', '订单标识')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: `${this.$t('DEF.LNAME.IBIZORDERID', '订单标识')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' }, { required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: `${this.$t('DEF.LNAME.IBIZORDERID', '订单标识')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
......
...@@ -51,6 +51,7 @@ export default class MainModel { ...@@ -51,6 +51,7 @@ export default class MainModel {
name: 'ordertime', name: 'ordertime',
prop: 'ordertime', prop: 'ordertime',
dataType: 'DATE', dataType: 'DATE',
isEditable:true
}, },
{ {
name: 'updatedate', name: 'updatedate',
......
...@@ -1077,6 +1077,7 @@ ...@@ -1077,6 +1077,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -1255,6 +1256,27 @@ ...@@ -1255,6 +1256,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -176,6 +176,7 @@ ...@@ -176,6 +176,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -354,6 +355,27 @@ ...@@ -354,6 +355,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -1001,6 +1001,7 @@ ...@@ -1001,6 +1001,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -1179,6 +1180,27 @@ ...@@ -1179,6 +1180,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -1523,6 +1523,7 @@ ...@@ -1523,6 +1523,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -1701,6 +1702,27 @@ ...@@ -1701,6 +1702,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -730,6 +730,7 @@ ...@@ -730,6 +730,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -908,6 +909,27 @@ ...@@ -908,6 +909,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -535,6 +535,7 @@ ...@@ -535,6 +535,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -713,6 +714,27 @@ ...@@ -713,6 +714,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -300,6 +300,7 @@ ...@@ -300,6 +300,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -478,6 +479,27 @@ ...@@ -478,6 +479,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -336,6 +336,7 @@ ...@@ -336,6 +336,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -514,6 +515,27 @@ ...@@ -514,6 +515,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -696,6 +696,7 @@ ...@@ -696,6 +696,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -874,6 +875,27 @@ ...@@ -874,6 +875,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -732,6 +732,7 @@ ...@@ -732,6 +732,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -910,6 +911,27 @@ ...@@ -910,6 +911,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -616,6 +616,7 @@ ...@@ -616,6 +616,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -794,6 +795,27 @@ ...@@ -794,6 +795,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -593,6 +593,7 @@ ...@@ -593,6 +593,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -771,6 +772,27 @@ ...@@ -771,6 +772,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -1537,6 +1537,7 @@ ...@@ -1537,6 +1537,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -1715,6 +1716,27 @@ ...@@ -1715,6 +1716,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -633,6 +633,7 @@ ...@@ -633,6 +633,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -811,6 +812,27 @@ ...@@ -811,6 +812,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -272,6 +272,7 @@ ...@@ -272,6 +272,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -450,6 +451,27 @@ ...@@ -450,6 +451,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -667,6 +667,7 @@ ...@@ -667,6 +667,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -845,6 +846,27 @@ ...@@ -845,6 +846,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -1256,6 +1256,7 @@ ...@@ -1256,6 +1256,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -1434,6 +1435,27 @@ ...@@ -1434,6 +1435,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -566,6 +566,7 @@ ...@@ -566,6 +566,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -744,6 +745,27 @@ ...@@ -744,6 +745,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
...@@ -1124,6 +1124,7 @@ ...@@ -1124,6 +1124,7 @@
"valueFormat" : "YYYY-MM-DD", "valueFormat" : "YYYY-MM-DD",
"width" : 150, "width" : 150,
"widthUnit" : "PX", "widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true "enableSort" : true
}, { }, {
"align" : "LEFT", "align" : "LEFT",
...@@ -1302,6 +1303,27 @@ ...@@ -1302,6 +1303,27 @@
"name" : "srfmstag" "name" : "srfmstag"
} ], } ],
"getPSDEGridEditItems" : [ { "getPSDEGridEditItems" : [ {
"caption" : "订单时间",
"codeName" : "ordertime",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD HH:mm:ss",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD HH:mm:ss"
},
"editorType" : "DATEPICKER",
"name" : "ordertime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"allowEmpty" : true
}, {
"caption" : "订单标识", "caption" : "订单标识",
"codeName" : "srfkey", "codeName" : "srfkey",
"enableCond" : 3, "enableCond" : 3,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册