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

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

上级 75d81470
......@@ -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){
......
......@@ -84,7 +84,9 @@
</span>
</template>
<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>
</el-table-column>
</template>
......@@ -664,7 +666,7 @@ export default class MainBase extends Vue implements ControlInterface {
*
* @memberof MainBase
*/
public defaultUpdateItems:Array<any> =[];
public defaultUpdateItems:Array<any> =[,];
/**
* 选中行数据
......@@ -891,6 +893,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public getGridRowModel(){
return {
ordertime: new FormItemModel(),
srfkey: new FormItemModel(),
}
}
......@@ -914,6 +917,10 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public rules(){
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: [
{ 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' },
......
......@@ -51,6 +51,7 @@ export default class MainModel {
name: 'ordertime',
prop: 'ordertime',
dataType: 'DATE',
isEditable:true
},
{
name: 'updatedate',
......
......@@ -1077,6 +1077,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -1255,6 +1256,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -176,6 +176,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -354,6 +355,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -1001,6 +1001,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -1179,6 +1180,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -1523,6 +1523,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -1701,6 +1702,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -730,6 +730,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -908,6 +909,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -535,6 +535,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -713,6 +714,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -300,6 +300,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -478,6 +479,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -336,6 +336,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -514,6 +515,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -696,6 +696,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -874,6 +875,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -732,6 +732,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -910,6 +911,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -616,6 +616,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -794,6 +795,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -593,6 +593,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -771,6 +772,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -1537,6 +1537,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -1715,6 +1716,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -633,6 +633,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -811,6 +812,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -272,6 +272,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -450,6 +451,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -667,6 +667,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -845,6 +846,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -1256,6 +1256,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -1434,6 +1435,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -566,6 +566,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -744,6 +745,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
......@@ -1124,6 +1124,7 @@
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableRowEdit" : true,
"enableSort" : true
}, {
"align" : "LEFT",
......@@ -1302,6 +1303,27 @@
"name" : "srfmstag"
} ],
"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" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册