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

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

上级 40b43b77
...@@ -44,9 +44,6 @@ ...@@ -44,9 +44,6 @@
"VMGroup26":[ "VMGroup26":[
{"tag":"ViewMsg25","position":"TOP","type":"ERROR"} {"tag":"ViewMsg25","position":"TOP","type":"ERROR"}
], ],
"VMGroup89":[
{"tag":"ViewMsg88","position":"TOP","type":"ERROR"}
],
"VMGroup22":[ "VMGroup22":[
{"tag":"ViewMsg21","position":"TOP","type":"ERROR"} {"tag":"ViewMsg21","position":"TOP","type":"ERROR"}
], ],
......
...@@ -126,7 +126,6 @@ export class MessageServiceRegister { ...@@ -126,7 +126,6 @@ export class MessageServiceRegister {
this.allMessageService.set('ViewMsg85', () => import('@/message/view-msg85/view-msg85-message')); this.allMessageService.set('ViewMsg85', () => import('@/message/view-msg85/view-msg85-message'));
this.allMessageService.set('ViewMsg86', () => import('@/message/view-msg86/view-msg86-message')); this.allMessageService.set('ViewMsg86', () => import('@/message/view-msg86/view-msg86-message'));
this.allMessageService.set('ViewMsg87', () => import('@/message/view-msg87/view-msg87-message')); this.allMessageService.set('ViewMsg87', () => import('@/message/view-msg87/view-msg87-message'));
this.allMessageService.set('ViewMsg88', () => import('@/message/view-msg88/view-msg88-message'));
this.allMessageService.set('ViewMsg89', () => import('@/message/view-msg89/view-msg89-message')); this.allMessageService.set('ViewMsg89', () => import('@/message/view-msg89/view-msg89-message'));
this.allMessageService.set('ViewMsg9', () => import('@/message/view-msg9/view-msg9-message')); this.allMessageService.set('ViewMsg9', () => import('@/message/view-msg9/view-msg9-message'));
this.allMessageService.set('ViewMsg90', () => import('@/message/view-msg90/view-msg90-message')); this.allMessageService.set('ViewMsg90', () => import('@/message/view-msg90/view-msg90-message'));
......
...@@ -52,9 +52,6 @@ mock.onGet('./assets/json/view-message-group.json').reply((config: any) => { ...@@ -52,9 +52,6 @@ mock.onGet('./assets/json/view-message-group.json').reply((config: any) => {
"VMGroup26":[ "VMGroup26":[
{"tag":"ViewMsg25","position":"TOP","type":"ERROR"} {"tag":"ViewMsg25","position":"TOP","type":"ERROR"}
], ],
"VMGroup89":[
{"tag":"ViewMsg88","position":"TOP","type":"ERROR"}
],
"VMGroup22":[ "VMGroup22":[
{"tag":"ViewMsg21","position":"TOP","type":"ERROR"} {"tag":"ViewMsg21","position":"TOP","type":"ERROR"}
], ],
......
<template> <template>
<div class='view-container degridview ibizorder-sgrid-view'> <div class='view-container degridview ibizorder-sgrid-view'>
<card class='view-card view-no-caption' :dis-hover="true" :bordered="false"> <card class='view-card view-no-caption' :dis-hover="true" :bordered="false">
<div class='view-top-messages'>
<app-alert-group position='TOP' :context="context" :viewparam="viewparams" infoGroup='VMGroup89' viewname='ibizordersgridview'></app-alert-group> </div>
<div class='content-container'> <div class='content-container'>
<div style='margin-bottom: 6px;'> <div style='margin-bottom: 6px;'>
<div class="quick-group-container">
<app-quick-group :items="quickGroupModel" @valuechange="quickGroupValueChange"></app-quick-group>
</div>
<i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='quick-search-input' style='max-width: 400px;padding-left: 24px' placeholder="订单名称" /> <i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='quick-search-input' style='max-width: 400px;padding-left: 24px' placeholder="订单名称" />
<div class='pull-right'> <div class='pull-right'>
<div class='toolbar-container'> <div class='toolbar-container'>
...@@ -340,9 +341,9 @@ export default class IBIZOrderSGridViewBase extends Vue { ...@@ -340,9 +341,9 @@ export default class IBIZOrderSGridViewBase extends Vue {
* @memberof IBIZOrderSGridViewBase * @memberof IBIZOrderSGridViewBase
*/ */
public containerModel: any = { public containerModel: any = {
view_grid: { name: 'grid', type: 'GRID' },
view_searchform: { name: 'searchform', type: 'SEARCHFORM' }, view_searchform: { name: 'searchform', type: 'SEARCHFORM' },
view_toolbar: { name: 'toolbar', type: 'TOOLBAR' }, view_toolbar: { name: 'toolbar', type: 'TOOLBAR' },
view_grid: { name: 'grid', type: 'GRID' },
wflinks: [], wflinks: [],
}; };
...@@ -824,59 +825,9 @@ export default class IBIZOrderSGridViewBase extends Vue { ...@@ -824,59 +825,9 @@ export default class IBIZOrderSGridViewBase extends Vue {
if (_this.loadModel && _this.loadModel instanceof Function) { if (_this.loadModel && _this.loadModel instanceof Function) {
_this.loadModel(); _this.loadModel();
} }
_this.loadQuickGroupModel();
} }
/**
* grid 部件 rowdblclick 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_rowdblclick($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'rowdblclick', $event);
}
/**
* grid 部件 selectionchange 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_selectionchange($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'selectionchange', $event);
}
/**
* grid 部件 remove 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_remove($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'remove', $event);
}
/**
* grid 部件 load 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_load($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'load', $event);
}
/**
* grid 部件 beforeload 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_beforeload($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'beforeload', $event);
}
/** /**
* searchform 部件 search 事件 * searchform 部件 search 事件
* *
...@@ -955,6 +906,56 @@ export default class IBIZOrderSGridViewBase extends Vue { ...@@ -955,6 +906,56 @@ export default class IBIZOrderSGridViewBase extends Vue {
this.toolbar_tbitem23_click(null, '', $event2); this.toolbar_tbitem23_click(null, '', $event2);
} }
} }
/**
* grid 部件 rowdblclick 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_rowdblclick($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'rowdblclick', $event);
}
/**
* grid 部件 selectionchange 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_selectionchange($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'selectionchange', $event);
}
/**
* grid 部件 remove 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_remove($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'remove', $event);
}
/**
* grid 部件 load 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_load($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'load', $event);
}
/**
* grid 部件 beforeload 事件
*
* @param {*} [args={}]
* @param {*} $event
* @memberof IBIZOrderSGridViewBase
*/
public grid_beforeload($event: any, $event2?: any) {
this.engine.onCtrlEvent('grid', 'beforeload', $event);
}
/** /**
...@@ -1854,6 +1855,100 @@ export default class IBIZOrderSGridViewBase extends Vue { ...@@ -1854,6 +1855,100 @@ export default class IBIZOrderSGridViewBase extends Vue {
} }
} }
/**
* 代码表服务对象
*
* @type {CodeListService}
* @memberof IBIZOrderSGridViewBase
*/
public codeListService:CodeListService = new CodeListService();
/**
* 快速分组数据对象
*
* @memberof IBIZOrderSGridViewBase
*/
public quickGroupData:any;
/**
* 快速分组是否有抛值
*
* @memberof IBIZOrderSGridViewBase
*/
public isEmitQuickGroupValue:boolean = false;
/**
* 快速分组模型
*
* @memberof IBIZOrderSGridViewBase
*/
public quickGroupModel:Array<any> = [];
/**
* 加载快速分组模型
*
* @memberof IBIZOrderSGridViewBase
*/
public loadQuickGroupModel(){
let quickGroupCodeList:any = {tag:'OrderType',codelistType:'STATIC'};
if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"STATIC")){
const codelist = this.$store.getters.getCodeList(quickGroupCodeList.tag);
if (codelist) {
this.quickGroupModel = [...this.handleDynamicData(JSON.parse(JSON.stringify(codelist.items)))];
} else {
console.log(`----${quickGroupCodeList.tag}----代码表不存在`);
}
}else if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"DYNAMIC")){
this.codeListService.getItems(quickGroupCodeList.tag,{},{}).then((res:any) => {
this.quickGroupModel = res;
}).catch((error:any) => {
console.log(`----${quickGroupCodeList.tag}----代码表不存在`);
});
}
}
/**
* 处理快速分组模型动态数据部分(%xxx%)
*
* @memberof IBIZOrderSGridViewBase
*/
public handleDynamicData(inputArray:Array<any>){
if(inputArray.length >0){
inputArray.forEach((item:any) =>{
if(item.data && Object.keys(item.data).length >0){
Object.keys(item.data).forEach((name:any) =>{
let value: any = item.data[name];
if (value && typeof(value)=='string' && value.startsWith('%') && value.endsWith('%')) {
const key = (value.substring(1, value.length - 1)).toLowerCase();
if (this.context[key]) {
value = this.context[key];
} else if(this.viewparams[key]){
value = this.viewparams[key];
}
}
item.data[name] = value;
})
}
})
}
return inputArray;
}
/**
* 快速分组值变化
*
* @memberof IBIZOrderSGridViewBase
*/
public quickGroupValueChange($event:any){
if($event){
this.quickGroupData = $event.data;
if(this.isEmitQuickGroupValue){
this.onSearch($event);
}
}
this.isEmitQuickGroupValue = true;
}
} }
</script> </script>
......
...@@ -2,14 +2,14 @@ ...@@ -2,14 +2,14 @@
import { Component } from 'vue-property-decorator'; import { Component } from 'vue-property-decorator';
import IBIZOrderSGridViewBase from './ibizorder-sgrid-view-base.vue'; import IBIZOrderSGridViewBase from './ibizorder-sgrid-view-base.vue';
import view_grid from '@widgets/ibizorder/main-grid/main-grid.vue';
import view_searchform from '@widgets/ibizorder/default-searchform/default-searchform.vue'; import view_searchform from '@widgets/ibizorder/default-searchform/default-searchform.vue';
import view_grid from '@widgets/ibizorder/main-grid/main-grid.vue';
// 基于 @VIEW/实体表格视图/VIEW.vue.ftl 生成 // 基于 @VIEW/实体表格视图/VIEW.vue.ftl 生成
@Component({ @Component({
components: { components: {
view_grid,
view_searchform, view_searchform,
view_grid,
}, },
beforeRouteEnter: (to: any, from: any, next: any) => { beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => { next((vm: any) => {
......
...@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ 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; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {},mode?:string): Promise<any> { public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){ 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; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -698,7 +698,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};
...@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -792,7 +792,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[] = [];
...@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -908,7 +908,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);
...@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -916,7 +916,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){
......
...@@ -70,6 +70,11 @@ export default class Usr4Model { ...@@ -70,6 +70,11 @@ export default class Usr4Model {
prop: 'n_ibizbookname_like', prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM' dataType: 'QUERYPARAM'
}, },
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{ {
......
...@@ -300,12 +300,8 @@ ...@@ -300,12 +300,8 @@
"editMode" : true "editMode" : true
} }
} ], } ],
"getPSAppViewMsgGroup" : {
"modelref" : true,
"id" : "VMGroup89"
},
"getPSAppViewRefs" : [ { "getPSAppViewRefs" : [ {
"name" : "EDITDATA", "name" : "NEWDATA",
"realTitle" : "订单编辑视图", "realTitle" : "订单编辑视图",
"getRealTitlePSLanguageRes" : { "getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.EDITVIEW", "lanResTag" : "PAGE.TITLE.IBIZORDER.EDITVIEW",
...@@ -318,7 +314,7 @@ ...@@ -318,7 +314,7 @@
"viewType" : "DEEDITVIEW" "viewType" : "DEEDITVIEW"
} }
}, { }, {
"name" : "NEWDATA", "name" : "EDITDATA",
"realTitle" : "订单编辑视图", "realTitle" : "订单编辑视图",
"getRealTitlePSLanguageRes" : { "getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.EDITVIEW", "lanResTag" : "PAGE.TITLE.IBIZORDER.EDITVIEW",
...@@ -468,128 +464,60 @@ ...@@ -468,128 +464,60 @@
"xDataControlName" : "grid" "xDataControlName" : "grid"
} ], } ],
"getPSControls" : [ { "getPSControls" : [ {
"aggMode" : "NONE", "codeName" : "Default",
"codeName" : "Main", "controlType" : "SEARCHFORM",
"columnEnableLink" : 2, "defaultLabelWidth" : 130,
"controlType" : "GRID", "dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSSEARCHFORMS/Default.json",
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSGRIDS/Main.json", "hookEventNames" : [ "SEARCH", "LOAD", "SAVE" ],
"getFetchPSControlAction" : { "logicName" : "默认搜索表单",
"modelref" : true, "mOSFilePath" : "psmodules/Sample/psdataentities/IBIZORDER/psdeform_searchforms/Default",
"id" : "fetch"
},
"groupMode" : "NONE",
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"logicName" : "主表格",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZORDER/psdegrids/Main",
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}, },
"getPSAppViewLogics" : [ {
"logicTrigger" : "CUSTOM",
"logicType" : "APPVIEWUIACTION",
"name" : "grid_updatedate_click",
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "表格界面_编辑操作"
}
} ],
"getPSAppViewUIActions" : [ {
"name" : "表格界面_编辑操作",
"getPSUIAction" : {
"modelref" : true,
"id" : "Edit"
},
"uIActionTarget" : "SINGLEKEY",
"xDataControlName" : "grid"
} ],
"getPSControlHandler" : { "getPSControlHandler" : {
"getPSHandlerActions" : [ { "getPSHandlerActions" : [ {
"actionName" : "Get", "actionType" : "FILTERACTION",
"actionType" : "DEACTION",
"dataAccessAction" : "READ",
"name" : "load", "name" : "load",
"getPSAppDEMethod" : { "getPSAppDEMethod" : {
"modelref" : true, "modelref" : true,
"id" : "Get" "id" : "FilterGet"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionName" : "Create",
"actionType" : "DEACTION",
"dataAccessAction" : "CREATE",
"name" : "create",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Create"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionName" : "Update",
"actionType" : "DEACTION",
"dataAccessAction" : "UPDATE",
"name" : "update",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Update"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionName" : "Remove",
"actionType" : "DEACTION",
"dataAccessAction" : "DELETE",
"name" : "remove",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Remove"
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
} }
}, { }, {
"actionName" : "GetDraft", "actionType" : "FILTERACTION",
"actionType" : "DEACTION",
"dataAccessAction" : "CREATE",
"name" : "loaddraft", "name" : "loaddraft",
"getPSAppDEMethod" : { "getPSAppDEMethod" : {
"modelref" : true, "modelref" : true,
"id" : "GetDraft" "id" : "FilterGetDraft"
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
} }
}, { }, {
"actionType" : "DEDATASET", "actionType" : "FILTERACTION",
"name" : "fetch", "name" : "search",
"getPSAppDEMethod" : { "getPSAppDEMethod" : {
"modelref" : true, "modelref" : true,
"id" : "FetchDefault" "id" : "FilterSearch"
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
} }
} ], } ],
"userDRAction" : "READ",
"enableDEFieldPrivilege" : false, "enableDEFieldPrivilege" : false,
"id" : "数据表格处理器" "id" : "搜索表单处理器"
}, },
"getPSControlLogics" : [ { "getPSControlLogics" : [ {
"eventNames" : "ROWDBLCLICK;SELECTIONCHANGE;REMOVE;LOAD;BEFORELOAD", "eventNames" : "SEARCH;LOAD;SAVE",
"logicTag" : "grid", "logicTag" : "searchform",
"logicType" : "APPVIEWENGINE", "logicType" : "APPVIEWENGINE",
"name" : "engine_grid", "name" : "engine_searchform",
"getPSAppViewEngine" : { "getPSAppViewEngine" : {
"modelref" : true, "modelref" : true,
"id" : "engine" "id" : "engine"
...@@ -598,1239 +526,1307 @@ ...@@ -598,1239 +526,1307 @@
"getPSControlParam" : { "getPSControlParam" : {
"autoLoad" : true, "autoLoad" : true,
"showBusyIndicator" : true, "showBusyIndicator" : true,
"id" : "GRID" "id" : "SEARCHFORM"
},
"getPSDEDataImport" : {
"modelref" : true,
"id" : "Import"
}, },
"getPSDEGridColumns" : [ { "getPSDEFormItems" : [ {
"align" : "LEFT", "id" : "n_ibizordername_like",
"cLConvertMode" : "NONE", "dataType" : 25,
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.ORDERUID",
"mOSFilePath" : "pslanguageres/Auto526",
"rTMOSFilePath" : "pslanguageres/Auto526"
},
"caption" : "订单编号",
"codeName" : "orderuid",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "orderuid",
"excelCaption" : "订单编号",
"mOSFilePath" : "psdegridcols/orderuid",
"name" : "orderuid",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERUID",
"codeName" : "OrderUID"
},
"rTMOSFilePath" : "psdegridcols/orderuid",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.IBIZORDERNAME",
"mOSFilePath" : "pslanguageres/Auto751",
"rTMOSFilePath" : "pslanguageres/Auto751"
},
"caption" : "订单名称",
"codeName" : "IBIZordername",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizordername",
"excelCaption" : "订单名称",
"mOSFilePath" : "psdegridcols/IBIZordername",
"name" : "IBIZordername",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "IBIZORDERNAME", "name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName" "codeName" : "IBIZOrderName"
}
} ],
"getPSDEFormPages" : [ {
"caption" : "订单名称",
"codeName" : "formpage1",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"mOSFilePath" : "psdeformdetail_formpages/formpage1",
"name" : "formpage1",
"getPSDEFormDetails" : [ {
"getCapPSLanguageRes" : {
"lanResTag" : "CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE",
"mOSFilePath" : "pslanguageres/Auto338",
"rTMOSFilePath" : "pslanguageres/Auto338"
},
"caption" : "订单名称(%)",
"codeName" : "n_ibizordername_like",
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
"mOSFilePath" : "psdeformdetail_formitems/n_ibizordername_like",
"name" : "n_ibizordername_like",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"editorWidth" : 100.0,
"name" : "n_ibizordername_like"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/n_ibizordername_like",
"allowEmpty" : true,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdegridcols/IBIZordername", "rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 150, "infoGroupMode" : false
"widthUnit" : "PX", } ],
"enableSort" : true "getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView/psappviewctrls/searchform",
"searchButtonStyle" : "DEFAULT",
"tabHeaderPos" : "TOP",
"enableAdvanceSearch" : false,
"enableAutoSearch" : false,
"enableFilterSave" : false,
"noTabHeader" : true,
"name" : "searchform",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEFORM_SEARCHFORM"
}, {
"codeName" : "SGridViewtoolbar",
"controlType" : "TOOLBAR",
"hookEventNames" : [ "CLICK" ],
"logicName" : "工具栏模板(默认表格界面)",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZORDER/psdetoolbars/SGridViewtoolbar",
"name" : "toolbar",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSControlLogics" : [ {
"eventArg" : "tbitem3",
"eventNames" : "CLICK",
"logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem3_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem3_click"
}
}, { }, {
"align" : "LEFT", "eventArg" : "deuiaction2",
"cLConvertMode" : "FRONT", "eventNames" : "CLICK",
"getCapPSLanguageRes" : { "logicTag" : "toolbar",
"lanResTag" : "DEF.LNAME.ORDERSTATE", "logicType" : "APPVIEWLOGIC",
"mOSFilePath" : "pslanguageres/Auto1017", "name" : "toolbar_deuiaction2_click",
"rTMOSFilePath" : "pslanguageres/Auto1017" "getPSAppViewLogic" : {
},
"caption" : "订单状态",
"codeName" : "orderstate",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "orderstate",
"excelCaption" : "订单状态",
"mOSFilePath" : "psdegridcols/orderstate",
"name" : "orderstate",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/ORDERSTATE.json" "id" : "toolbar_deuiaction2_click"
}, }
"getPSAppDEField" : {
"name" : "ORDERSTATE",
"codeName" : "OrderState"
},
"rTMOSFilePath" : "psdegridcols/orderstate",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, { }, {
"align" : "LEFT", "eventArg" : "tbitem4",
"cLConvertMode" : "FRONT", "eventNames" : "CLICK",
"getCapPSLanguageRes" : { "logicTag" : "toolbar",
"lanResTag" : "DEF.LNAME.ORDERTYPE", "logicType" : "APPVIEWLOGIC",
"mOSFilePath" : "pslanguageres/Auto647", "name" : "toolbar_tbitem4_click",
"rTMOSFilePath" : "pslanguageres/Auto647" "getPSAppViewLogic" : {
},
"caption" : "订单类型",
"codeName" : "ordertype",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ordertype",
"excelCaption" : "订单类型",
"mOSFilePath" : "psdegridcols/ordertype",
"name" : "ordertype",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/DYNAORDERTYPE.json" "id" : "toolbar_tbitem4_click"
},
"getPSAppDEField" : {
"name" : "ORDERTYPE",
"codeName" : "OrderType"
},
"rTMOSFilePath" : "psdegridcols/ordertype",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.ORDERTIME",
"mOSFilePath" : "pslanguageres/Auto691",
"rTMOSFilePath" : "pslanguageres/Auto691"
},
"caption" : "订单时间",
"codeName" : "ordertime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ordertime",
"excelCaption" : "订单时间",
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"rTMOSFilePath" : "psdegridcols/ordertime",
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.UPDATEDATE",
"mOSFilePath" : "pslanguageres/Auto1074",
"rTMOSFilePath" : "pslanguageres/Auto1074"
},
"caption" : "更新时间",
"codeName" : "updatedate",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "updatedate",
"excelCaption" : "更新时间",
"mOSFilePath" : "psdegridcols/updatedate",
"name" : "updatedate",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
},
"getPSDEUIAction" : {
"actionTarget" : "SINGLEKEY",
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.EDIT",
"mOSFilePath" : "pslanguageres/Auto1585",
"rTMOSFilePath" : "pslanguageres/Auto1585"
},
"caption" : "编辑",
"codeName" : "Edit",
"fullCodeName" : "Edit",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit",
"name" : "表格界面_编辑操作",
"getPSSysImage" : {
"glyph" : "xf044@FontAwesome",
"cssClass" : "fa fa-edit"
},
"predefinedType" : "GRIDVIEW_EDITACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.EDIT",
"mOSFilePath" : "pslanguageres/Auto834",
"rTMOSFilePath" : "pslanguageres/Auto834"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Edit",
"uIActionType" : "DEUIACTION"
},
"rTMOSFilePath" : "psdegridcols/updatedate",
"valueFormat" : "YYYY-MM-DD HH:mm:ss",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.MEMO",
"mOSFilePath" : "pslanguageres/Auto269",
"rTMOSFilePath" : "pslanguageres/Auto269"
},
"caption" : "备注",
"codeName" : "memo",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "memo",
"excelCaption" : "备注",
"mOSFilePath" : "psdegridcols/memo",
"name" : "memo",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "MEMO",
"codeName" : "Memo"
},
"rTMOSFilePath" : "psdegridcols/memo",
"width" : 1,
"widthUnit" : "STAR",
"enableSort" : true
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
"name" : "orderuid",
"getPSAppDEField" : {
"name" : "ORDERUID",
"codeName" : "OrderUID"
} }
}, { }, {
"dataType" : 25, "eventArg" : "tbitem6",
"name" : "ibizordername", "eventNames" : "CLICK",
"getPSAppDEField" : { "logicTag" : "toolbar",
"name" : "IBIZORDERNAME", "logicType" : "APPVIEWLOGIC",
"codeName" : "IBIZOrderName" "name" : "toolbar_tbitem6_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem6_click"
} }
}, { }, {
"dataType" : 25, "eventArg" : "deuiaction3",
"name" : "orderstate", "eventNames" : "CLICK",
"getPSAppDEField" : { "logicTag" : "toolbar",
"name" : "ORDERSTATE", "logicType" : "APPVIEWLOGIC",
"codeName" : "OrderState" "name" : "toolbar_deuiaction3_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_deuiaction3_click"
} }
}, { }, {
"dataType" : 25, "eventArg" : "tbitem24",
"name" : "ordertype", "eventNames" : "CLICK",
"getPSAppDEField" : { "logicTag" : "toolbar",
"name" : "ORDERTYPE", "logicType" : "APPVIEWLOGIC",
"codeName" : "OrderType" "name" : "toolbar_tbitem24_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem24_click"
} }
}, { }, {
"format" : "YYYY-MM-DD", "eventArg" : "tbitem25",
"dataType" : 5, "eventNames" : "CLICK",
"name" : "ordertime", "logicTag" : "toolbar",
"getPSAppDEField" : { "logicType" : "APPVIEWLOGIC",
"name" : "ORDERTIME", "name" : "toolbar_tbitem25_click",
"codeName" : "OrderTime" "getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem25_click"
} }
}, { }, {
"format" : "YYYY-MM-DD HH:mm:ss", "eventArg" : "tbitem8",
"dataType" : 5, "eventNames" : "CLICK",
"name" : "updatedate", "logicTag" : "toolbar",
"getPSAppDEField" : { "logicType" : "APPVIEWLOGIC",
"name" : "UPDATEDATE", "name" : "toolbar_tbitem8_click",
"codeName" : "UpdateDate" "getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem8_click"
} }
}, { }, {
"dataType" : 25, "eventArg" : "tbitem13",
"name" : "memo", "eventNames" : "CLICK",
"getPSAppDEField" : { "logicTag" : "toolbar",
"name" : "MEMO", "logicType" : "APPVIEWLOGIC",
"codeName" : "Memo" "name" : "toolbar_tbitem13_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem13_click"
} }
}, { }, {
"dataType" : 25, "eventArg" : "deuiaction1",
"name" : "ibizorderid",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
}
}, {
"dataType" : 25,
"name" : "srfkey",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
}
}, {
"dataType" : 25,
"name" : "srfdataaccaction",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
},
"dataAccessAction" : true
}, {
"dataType" : 25,
"name" : "ibizcustomerid",
"getPSAppDEField" : {
"name" : "IBIZCUSTOMERID",
"codeName" : "IBIZCustomerId"
}
}, {
"dataType" : 25,
"name" : "srfmajortext",
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
}
}, {
"dataType" : 25,
"name" : "wfstep",
"getPSAppDEField" : {
"name" : "WFSTEP",
"codeName" : "WFStep"
}
}, {
"dataType" : 25,
"name" : "srfmstag"
} ],
"getPSDEGridEditItems" : [ {
"caption" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/srfkey",
"name" : "srfkey",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
},
"getPSEditor" : {
"editorType" : "HIDDEN",
"name" : "srfkey"
},
"rTMOSFilePath" : "psdegridcols/srfkey",
"allowEmpty" : true
} ],
"pagingSize" : 10,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
"actionType" : "DEACTION",
"dataAccessAction" : "DELETE",
"name" : "remove",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Remove"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : true,
"hideHeader" : false,
"noSort" : false,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
"modeltype" : "PSDEGRID"
}, {
"codeName" : "Default",
"controlType" : "SEARCHFORM",
"defaultLabelWidth" : 130,
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSSEARCHFORMS/Default.json",
"hookEventNames" : [ "SEARCH", "LOAD", "SAVE" ],
"logicName" : "默认搜索表单",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZORDER/psdeform_searchforms/Default",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSControlHandler" : {
"getPSHandlerActions" : [ {
"actionType" : "FILTERACTION",
"name" : "load",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "FilterGet"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionType" : "FILTERACTION",
"name" : "loaddraft",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "FilterGetDraft"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionType" : "FILTERACTION",
"name" : "search",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "FilterSearch"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
} ],
"enableDEFieldPrivilege" : false,
"id" : "搜索表单处理器"
},
"getPSControlLogics" : [ {
"eventNames" : "SEARCH;LOAD;SAVE",
"logicTag" : "searchform",
"logicType" : "APPVIEWENGINE",
"name" : "engine_searchform",
"getPSAppViewEngine" : {
"modelref" : true,
"id" : "engine"
}
} ],
"getPSControlParam" : {
"autoLoad" : true,
"showBusyIndicator" : true,
"id" : "SEARCHFORM"
},
"getPSDEFormItems" : [ {
"id" : "n_ibizordername_like",
"dataType" : 25,
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
}
} ],
"getPSDEFormPages" : [ {
"caption" : "订单名称",
"codeName" : "formpage1",
"detailStyle" : "DEFAULT",
"detailType" : "FORMPAGE",
"mOSFilePath" : "psdeformdetail_formpages/formpage1",
"name" : "formpage1",
"getPSDEFormDetails" : [ {
"getCapPSLanguageRes" : {
"lanResTag" : "CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE",
"mOSFilePath" : "pslanguageres/Auto338",
"rTMOSFilePath" : "pslanguageres/Auto338"
},
"caption" : "订单名称(%)",
"codeName" : "n_ibizordername_like",
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
"mOSFilePath" : "psdeformdetail_formitems/n_ibizordername_like",
"name" : "n_ibizordername_like",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"editorWidth" : 100.0,
"name" : "n_ibizordername_like"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/n_ibizordername_like",
"allowEmpty" : true,
"showCaption" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"infoGroupMode" : false
} ],
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView/psappviewctrls/searchform",
"searchButtonStyle" : "DEFAULT",
"tabHeaderPos" : "TOP",
"enableAdvanceSearch" : false,
"enableAutoSearch" : false,
"enableFilterSave" : false,
"noTabHeader" : true,
"name" : "searchform",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"modeltype" : "PSDEFORM_SEARCHFORM"
}, {
"codeName" : "SGridViewtoolbar",
"controlType" : "TOOLBAR",
"hookEventNames" : [ "CLICK" ],
"logicName" : "工具栏模板(默认表格界面)",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZORDER/psdetoolbars/SGridViewtoolbar",
"name" : "toolbar",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSControlLogics" : [ {
"eventArg" : "tbitem3",
"eventNames" : "CLICK",
"logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem3_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem3_click"
}
}, {
"eventArg" : "deuiaction2",
"eventNames" : "CLICK",
"logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC",
"name" : "toolbar_deuiaction2_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_deuiaction2_click"
}
}, {
"eventArg" : "tbitem4",
"eventNames" : "CLICK",
"logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem4_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem4_click"
}
}, {
"eventArg" : "tbitem6",
"eventNames" : "CLICK", "eventNames" : "CLICK",
"logicTag" : "toolbar", "logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC", "logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem6_click", "name" : "toolbar_deuiaction1_click",
"getPSAppViewLogic" : { "getPSAppViewLogic" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem6_click" "id" : "toolbar_deuiaction1_click"
} }
}, { }, {
"eventArg" : "deuiaction3", "eventArg" : "tbitem11",
"eventNames" : "CLICK", "eventNames" : "CLICK",
"logicTag" : "toolbar", "logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC", "logicType" : "APPVIEWLOGIC",
"name" : "toolbar_deuiaction3_click", "name" : "toolbar_tbitem11_click",
"getPSAppViewLogic" : { "getPSAppViewLogic" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_deuiaction3_click" "id" : "toolbar_tbitem11_click"
} }
}, { }, {
"eventArg" : "tbitem24", "eventArg" : "tbitem21",
"eventNames" : "CLICK", "eventNames" : "CLICK",
"logicTag" : "toolbar", "logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC", "logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem24_click", "name" : "toolbar_tbitem21_click",
"getPSAppViewLogic" : { "getPSAppViewLogic" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem24_click" "id" : "toolbar_tbitem21_click"
} }
}, { }, {
"eventArg" : "tbitem25", "eventArg" : "tbitem23",
"eventNames" : "CLICK", "eventNames" : "CLICK",
"logicTag" : "toolbar", "logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC", "logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem25_click", "name" : "toolbar_tbitem23_click",
"getPSAppViewLogic" : { "getPSAppViewLogic" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem25_click" "id" : "toolbar_tbitem23_click"
} }
} ],
"getPSControlParam" : {
"id" : "TOOLBAR"
},
"getPSDEToolbarItems" : [ {
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.NEW",
"mOSFilePath" : "pslanguageres/Auto1712",
"rTMOSFilePath" : "pslanguageres/Auto1712"
},
"caption" : "新建",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem3",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_tbitem3"
},
"getPSSysCss" : {
"cssName" : "deepskyblueToolBar"
},
"getPSSysImage" : {
"glyph" : "xf0f6@FontAwesome",
"cssClass" : "fa fa-file-text-o"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.NEW",
"mOSFilePath" : "pslanguageres/Auto1712",
"rTMOSFilePath" : "pslanguageres/Auto1712"
},
"caption" : "新建",
"codeName" : "New",
"fullCodeName" : "New",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/New",
"name" : "表格界面_新建操作",
"getPSSysImage" : {
"glyph" : "xf0f6@FontAwesome",
"cssClass" : "fa fa-file-text-o"
},
"predefinedType" : "GRIDVIEW_NEWACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/New",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.NEW",
"mOSFilePath" : "pslanguageres/Auto274",
"rTMOSFilePath" : "pslanguageres/Auto274"
},
"uIActionMode" : "SYS",
"uIActionTag" : "New",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "新建",
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.NEW",
"mOSFilePath" : "pslanguageres/Auto274",
"rTMOSFilePath" : "pslanguageres/Auto274"
},
"showCaption" : true,
"showIcon" : true
}, { }, {
"eventArg" : "tbitem8", "getCapPSLanguageRes" : {
"eventNames" : "CLICK", "lanResTag" : "TBB.TEXT.*.SAVE",
"logicTag" : "toolbar", "mOSFilePath" : "pslanguageres/Auto71",
"logicType" : "APPVIEWLOGIC", "rTMOSFilePath" : "pslanguageres/Auto71"
"name" : "toolbar_tbitem8_click", },
"getPSAppViewLogic" : { "caption" : "保存",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "deuiaction2",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem8_click" "id" : "toolbar_deuiaction2"
} },
"getPSSysImage" : {
"glyph" : "xf0c7@FontAwesome",
"cssClass" : "fa fa-save"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.SAVE",
"mOSFilePath" : "pslanguageres/Auto71",
"rTMOSFilePath" : "pslanguageres/Auto71"
},
"caption" : "保存",
"codeName" : "Save",
"fullCodeName" : "Save",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Save",
"name" : "编辑界面_保存操作",
"getPSSysImage" : {
"glyph" : "xf0c7@FontAwesome",
"cssClass" : "fa fa-save"
},
"predefinedType" : "EDITVIEW_SAVEACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Save",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.SAVE",
"mOSFilePath" : "pslanguageres/Auto1630",
"rTMOSFilePath" : "pslanguageres/Auto1630"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Save",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "保存",
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.SAVE",
"mOSFilePath" : "pslanguageres/Auto1630",
"rTMOSFilePath" : "pslanguageres/Auto1630"
},
"showCaption" : true,
"showIcon" : true
}, { }, {
"eventArg" : "tbitem13", "getCapPSLanguageRes" : {
"eventNames" : "CLICK", "lanResTag" : "TBB.TEXT.*.EDIT",
"logicTag" : "toolbar", "mOSFilePath" : "pslanguageres/Auto1585",
"logicType" : "APPVIEWLOGIC", "rTMOSFilePath" : "pslanguageres/Auto1585"
"name" : "toolbar_tbitem13_click", },
"getPSAppViewLogic" : { "caption" : "编辑",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem4",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem13_click" "id" : "toolbar_tbitem4"
} },
"getPSSysImage" : {
"glyph" : "xf044@FontAwesome",
"cssClass" : "fa fa-edit"
},
"getPSUIAction" : {
"actionTarget" : "SINGLEKEY",
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.EDIT",
"mOSFilePath" : "pslanguageres/Auto1585",
"rTMOSFilePath" : "pslanguageres/Auto1585"
},
"caption" : "编辑",
"codeName" : "Edit",
"fullCodeName" : "Edit",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit",
"name" : "表格界面_编辑操作",
"getPSSysImage" : {
"glyph" : "xf044@FontAwesome",
"cssClass" : "fa fa-edit"
},
"predefinedType" : "GRIDVIEW_EDITACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.EDIT",
"mOSFilePath" : "pslanguageres/Auto834",
"rTMOSFilePath" : "pslanguageres/Auto834"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Edit",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "编辑",
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.EDIT",
"mOSFilePath" : "pslanguageres/Auto834",
"rTMOSFilePath" : "pslanguageres/Auto834"
},
"showCaption" : true,
"showIcon" : false
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.COPY",
"mOSFilePath" : "pslanguageres/Auto514",
"rTMOSFilePath" : "pslanguageres/Auto514"
},
"caption" : "拷贝",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem6",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_tbitem6"
},
"getPSSysImage" : {
"glyph" : "xf0c5@FontAwesome",
"cssClass" : "fa fa-copy"
},
"getPSUIAction" : {
"actionTarget" : "SINGLEKEY",
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.COPY",
"mOSFilePath" : "pslanguageres/Auto514",
"rTMOSFilePath" : "pslanguageres/Auto514"
},
"caption" : "拷贝",
"codeName" : "Copy",
"fullCodeName" : "Copy",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Copy",
"name" : "表格界面_拷贝操作",
"getPSSysImage" : {
"glyph" : "xf0c5@FontAwesome",
"cssClass" : "fa fa-copy"
},
"predefinedType" : "GRIDVIEW_COPYACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Copy",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.COPY",
"mOSFilePath" : "pslanguageres/Auto1542",
"rTMOSFilePath" : "pslanguageres/Auto1542"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Copy",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "拷贝",
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.COPY",
"mOSFilePath" : "pslanguageres/Auto1542",
"rTMOSFilePath" : "pslanguageres/Auto1542"
},
"showCaption" : true,
"showIcon" : false
}, { }, {
"eventArg" : "deuiaction1", "getCapPSLanguageRes" : {
"eventNames" : "CLICK", "lanResTag" : "TBB.TEXT.*.FILTER",
"logicTag" : "toolbar", "mOSFilePath" : "pslanguageres/Auto1437",
"logicType" : "APPVIEWLOGIC", "rTMOSFilePath" : "pslanguageres/Auto1437"
"name" : "toolbar_deuiaction1_click", },
"getPSAppViewLogic" : { "caption" : "过滤",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "deuiaction3",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_deuiaction1_click" "id" : "toolbar_deuiaction3"
} },
"getPSSysImage" : {
"glyph" : "xf0b0@FontAwesome",
"cssClass" : "fa fa-filter"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.FILTER",
"mOSFilePath" : "pslanguageres/Auto1437",
"rTMOSFilePath" : "pslanguageres/Auto1437"
},
"caption" : "过滤",
"codeName" : "ToggleFilter",
"fullCodeName" : "ToggleFilter",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ToggleFilter",
"name" : "表格界面_搜索栏",
"getPSSysImage" : {
"glyph" : "xf0b0@FontAwesome",
"cssClass" : "fa fa-filter"
},
"predefinedType" : "GRIDVIEW_SEARCHBAR",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ToggleFilter",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.FILTER",
"mOSFilePath" : "pslanguageres/Auto796",
"rTMOSFilePath" : "pslanguageres/Auto796"
},
"uIActionMode" : "SYS",
"uIActionTag" : "ToggleFilter",
"uIActionType" : "DEUIACTION",
"enableToggleMode" : true
},
"tooltip" : "过滤",
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.FILTER",
"mOSFilePath" : "pslanguageres/Auto796",
"rTMOSFilePath" : "pslanguageres/Auto796"
},
"enableToggleMode" : true,
"showCaption" : true,
"showIcon" : true
}, { }, {
"eventArg" : "tbitem11", "itemType" : "SEPERATOR",
"eventNames" : "CLICK", "name" : "tbitem7",
"logicTag" : "toolbar", "spanMode" : false
"logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem11_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem11_click"
}
}, { }, {
"eventArg" : "tbitem21", "getCapPSLanguageRes" : {
"eventNames" : "CLICK", "lanResTag" : "TBB.TEXT.*.REMOVE",
"logicTag" : "toolbar", "mOSFilePath" : "pslanguageres/Auto998",
"logicType" : "APPVIEWLOGIC", "rTMOSFilePath" : "pslanguageres/Auto998"
"name" : "toolbar_tbitem21_click", },
"getPSAppViewLogic" : { "caption" : "删除",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem8",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem21_click" "id" : "toolbar_tbitem8"
} },
"getPSSysImage" : {
"glyph" : "xf00d@FontAwesome",
"cssClass" : "fa fa-remove"
},
"getPSUIAction" : {
"actionTarget" : "MULTIKEY",
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.REMOVE",
"mOSFilePath" : "pslanguageres/Auto998",
"rTMOSFilePath" : "pslanguageres/Auto998"
},
"caption" : "删除",
"codeName" : "Remove",
"fullCodeName" : "Remove",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Remove",
"name" : "表格界面_删除操作",
"getPSSysImage" : {
"glyph" : "xf00d@FontAwesome",
"cssClass" : "fa fa-remove"
},
"predefinedType" : "GRIDVIEW_REMOVEACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Remove",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.REMOVE",
"mOSFilePath" : "pslanguageres/Auto1782",
"rTMOSFilePath" : "pslanguageres/Auto1782"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Remove",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "删除",
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.REMOVE",
"mOSFilePath" : "pslanguageres/Auto1782",
"rTMOSFilePath" : "pslanguageres/Auto1782"
},
"showCaption" : true,
"showIcon" : false
}, {
"itemType" : "SEPERATOR",
"name" : "tbitem9",
"spanMode" : false
}, { }, {
"eventArg" : "tbitem23",
"eventNames" : "CLICK",
"logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC",
"name" : "toolbar_tbitem23_click",
"getPSAppViewLogic" : {
"modelref" : true,
"id" : "toolbar_tbitem23_click"
}
} ],
"getPSControlParam" : {
"id" : "TOOLBAR"
},
"getPSDEToolbarItems" : [ {
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.NEW", "lanResTag" : "TBB.TEXT.*.EXPORT",
"mOSFilePath" : "pslanguageres/Auto1712", "mOSFilePath" : "pslanguageres/Auto1675",
"rTMOSFilePath" : "pslanguageres/Auto1712" "rTMOSFilePath" : "pslanguageres/Auto1675"
}, },
"caption" : "新建", "caption" : "导出",
"groupExtractMode" : "ITEM", "groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION", "itemType" : "DEUIACTION",
"name" : "tbitem3", "name" : "tbitem13",
"noPrivDisplayMode" : 2, "noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : { "getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem3" "id" : "toolbar_tbitem13"
},
"getPSSysCss" : {
"cssName" : "deepskyblueToolBar"
}, },
"getPSSysImage" : { "getPSSysImage" : {
"glyph" : "xf0f6@FontAwesome", "glyph" : "xf1c3@FontAwesome",
"cssClass" : "fa fa-file-text-o" "cssClass" : "fa fa-file-excel-o"
}, },
"getPSUIAction" : { "getPSUIAction" : {
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.NEW", "lanResTag" : "TBB.TEXT.*.EXPORT",
"mOSFilePath" : "pslanguageres/Auto1712", "mOSFilePath" : "pslanguageres/Auto1675",
"rTMOSFilePath" : "pslanguageres/Auto1712" "rTMOSFilePath" : "pslanguageres/Auto1675"
}, },
"caption" : "新建", "caption" : "导出",
"codeName" : "New", "codeName" : "ExportExcel",
"fullCodeName" : "New", "fullCodeName" : "ExportExcel",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/New", "mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportExcel",
"name" : "表格界面_新建操作", "name" : "表格界面_导出操作(Excel)",
"getPSSysImage" : { "getPSSysImage" : {
"glyph" : "xf0f6@FontAwesome", "glyph" : "xf1c3@FontAwesome",
"cssClass" : "fa fa-file-text-o" "cssClass" : "fa fa-file-excel-o"
}, },
"predefinedType" : "GRIDVIEW_NEWACTION", "predefinedType" : "GRIDVIEW_EXPORTACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/New", "rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportExcel",
"timeout" : 60000, "timeout" : 60000,
"getTooltipPSLanguageRes" : { "getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.NEW", "lanResTag" : "TBB.TOOLTIP.*.EXPORT",
"mOSFilePath" : "pslanguageres/Auto274", "mOSFilePath" : "pslanguageres/Auto160",
"rTMOSFilePath" : "pslanguageres/Auto274" "rTMOSFilePath" : "pslanguageres/Auto160"
}, },
"uIActionMode" : "SYS", "uIActionMode" : "SYS",
"uIActionTag" : "New", "uIActionTag" : "ExportExcel",
"uIActionType" : "DEUIACTION" "uIActionType" : "DEUIACTION"
}, },
"tooltip" : "新建", "tooltip" : "导出",
"getTooltipPSLanguageRes" : { "getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.NEW", "lanResTag" : "TBB.TOOLTIP.*.EXPORT",
"mOSFilePath" : "pslanguageres/Auto274", "mOSFilePath" : "pslanguageres/Auto160",
"rTMOSFilePath" : "pslanguageres/Auto274" "rTMOSFilePath" : "pslanguageres/Auto160"
},
"showCaption" : true,
"showIcon" : true
}, {
"caption" : "导入",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "deuiaction1",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_deuiaction1"
},
"getPSSysImage" : {
"glyph" : "xf093@FontAwesome",
"cssClass" : "fa fa-upload"
},
"getPSUIAction" : {
"actionTarget" : "NONE",
"caption" : "导入",
"codeName" : "ImportExcel",
"frontProcessType" : "OPENHTMLPAGE",
"fullCodeName" : "ImportExcel",
"htmlPageUrl" : "../../ibizutil/uploaddedataview.jsp?srfdeid=",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ImportExcel",
"name" : "导入",
"getPSSysImage" : {
"glyph" : "xf093@FontAwesome",
"cssClass" : "fa fa-upload"
},
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ImportExcel",
"timeout" : 60000,
"uIActionMode" : "FRONT",
"uIActionTag" : "ImportExcel",
"uIActionType" : "DEUIACTION"
}, },
"tooltip" : "导入",
"showCaption" : true, "showCaption" : true,
"showIcon" : true "showIcon" : true
}, {
"itemType" : "SEPERATOR",
"name" : "tbitem10",
"spanMode" : false
}, { }, {
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.SAVE", "lanResTag" : "TBB.TEXT.*.PRINT",
"mOSFilePath" : "pslanguageres/Auto71", "mOSFilePath" : "pslanguageres/Auto59",
"rTMOSFilePath" : "pslanguageres/Auto71" "rTMOSFilePath" : "pslanguageres/Auto59"
}, },
"caption" : "保存", "caption" : "打印",
"groupExtractMode" : "ITEM", "groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION", "itemType" : "DEUIACTION",
"name" : "deuiaction2", "name" : "tbitem11",
"noPrivDisplayMode" : 2, "noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : { "getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_deuiaction2" "id" : "toolbar_tbitem11"
}, },
"getPSSysImage" : { "getPSSysImage" : {
"glyph" : "xf0c7@FontAwesome", "glyph" : "xf02f@FontAwesome",
"cssClass" : "fa fa-save" "cssClass" : "fa fa-print"
}, },
"getPSUIAction" : { "getPSUIAction" : {
"actionTarget" : "MULTIKEY",
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.SAVE", "lanResTag" : "TBB.TEXT.*.PRINT",
"mOSFilePath" : "pslanguageres/Auto71", "mOSFilePath" : "pslanguageres/Auto59",
"rTMOSFilePath" : "pslanguageres/Auto71" "rTMOSFilePath" : "pslanguageres/Auto59"
}, },
"caption" : "保存", "caption" : "打印",
"codeName" : "Save", "codeName" : "Print",
"fullCodeName" : "Save", "fullCodeName" : "Print",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Save", "mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Print",
"name" : "编辑界面_保存操作", "name" : "表格界面_打印操作",
"getPSSysImage" : { "getPSSysImage" : {
"glyph" : "xf0c7@FontAwesome", "glyph" : "xf02f@FontAwesome",
"cssClass" : "fa fa-save" "cssClass" : "fa fa-print"
}, },
"predefinedType" : "EDITVIEW_SAVEACTION", "predefinedType" : "GRIDVIEW_PRINTACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Save", "rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Print",
"timeout" : 60000, "timeout" : 60000,
"getTooltipPSLanguageRes" : { "getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.SAVE", "lanResTag" : "TBB.TOOLTIP.*.PRINT",
"mOSFilePath" : "pslanguageres/Auto1630", "mOSFilePath" : "pslanguageres/Auto1134",
"rTMOSFilePath" : "pslanguageres/Auto1630" "rTMOSFilePath" : "pslanguageres/Auto1134"
}, },
"uIActionMode" : "SYS", "uIActionMode" : "SYS",
"uIActionTag" : "Save", "uIActionTag" : "Print",
"uIActionType" : "DEUIACTION" "uIActionType" : "DEUIACTION"
}, },
"tooltip" : "保存", "tooltip" : "打印",
"getTooltipPSLanguageRes" : { "getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.SAVE", "lanResTag" : "TBB.TOOLTIP.*.PRINT",
"mOSFilePath" : "pslanguageres/Auto1630", "mOSFilePath" : "pslanguageres/Auto1134",
"rTMOSFilePath" : "pslanguageres/Auto1630" "rTMOSFilePath" : "pslanguageres/Auto1134"
}, },
"showCaption" : true, "showCaption" : true,
"showIcon" : true "showIcon" : true
}, { }, {
"getCapPSLanguageRes" : { "itemType" : "SEPERATOR",
"lanResTag" : "TBB.TEXT.*.EDIT", "name" : "tbitem12",
"mOSFilePath" : "pslanguageres/Auto1585", "spanMode" : false
"rTMOSFilePath" : "pslanguageres/Auto1585" }, {
}, "caption" : "其它",
"caption" : "编辑", "itemType" : "ITEMS",
"groupExtractMode" : "ITEM", "name" : "tbitem16",
"itemType" : "DEUIACTION", "getPSDEToolbarItems" : [ {
"name" : "tbitem4", "getCapPSLanguageRes" : {
"noPrivDisplayMode" : 2, "lanResTag" : "MENUITEM.CAPTION.*.EXPORTSRF",
"mOSFilePath" : "pslanguageres/Auto1443",
"rTMOSFilePath" : "pslanguageres/Auto1443"
},
"caption" : "导出数据模型",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem21",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_tbitem21"
},
"getPSSysImage" : {
"glyph" : "xf019@FontAwesome",
"cssClass" : "fa fa-download"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"lanResTag" : "MENUITEM.CAPTION.*.EXPORTSRF",
"mOSFilePath" : "pslanguageres/Auto1443",
"rTMOSFilePath" : "pslanguageres/Auto1443"
},
"caption" : "导出数据模型",
"codeName" : "ExportModel",
"fullCodeName" : "ExportModel",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportModel",
"name" : "表格界面_导出数据模型",
"getPSSysImage" : {
"glyph" : "xf019@FontAwesome",
"cssClass" : "fa fa-download"
},
"predefinedType" : "GRIDVIEW_EXPORTXMLACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportModel",
"timeout" : 60000,
"uIActionMode" : "SYS",
"uIActionTag" : "ExportModel",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "导出数据模型",
"showCaption" : true,
"showIcon" : true
}, {
"caption" : "数据导入",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem23",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_tbitem23"
},
"getPSSysImage" : {
"glyph" : "xf093@FontAwesome",
"cssClass" : "fa fa-upload"
},
"getPSUIAction" : {
"caption" : "数据导入",
"codeName" : "Import",
"fullCodeName" : "Import",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Import",
"name" : "表格界面_数据导入栏",
"getPSSysImage" : {
"glyph" : "xf093@FontAwesome",
"cssClass" : "fa fa-upload"
},
"predefinedType" : "GRIDVIEW_IMPORTBAR",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Import",
"timeout" : 60000,
"uIActionMode" : "SYS",
"uIActionTag" : "Import",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "数据导入",
"showCaption" : true,
"showIcon" : true
} ],
"tooltip" : "其它",
"showCaption" : true,
"showIcon" : true
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView/psappviewctrls/toolbar",
"modelid" : "47d7b189cb310900c71aaabc97f7444b",
"modeltype" : "PSDETOOLBAR"
}, {
"aggMode" : "NONE",
"codeName" : "Main",
"columnEnableLink" : 2,
"controlType" : "GRID",
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSGRIDS/Main.json",
"getFetchPSControlAction" : {
"modelref" : true,
"id" : "fetch"
},
"groupMode" : "NONE",
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"logicName" : "主表格",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZORDER/psdegrids/Main",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSAppViewLogics" : [ {
"logicTrigger" : "CUSTOM",
"logicType" : "APPVIEWUIACTION",
"name" : "grid_updatedate_click",
"getPSAppViewUIAction" : { "getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem4" "id" : "表格界面_编辑操作"
}, }
"getPSSysImage" : { } ],
"glyph" : "xf044@FontAwesome", "getPSAppViewUIActions" : [ {
"cssClass" : "fa fa-edit" "name" : "表格界面_编辑操作",
},
"getPSUIAction" : { "getPSUIAction" : {
"actionTarget" : "SINGLEKEY", "modelref" : true,
"getCapPSLanguageRes" : { "id" : "Edit"
"lanResTag" : "TBB.TEXT.*.EDIT", },
"mOSFilePath" : "pslanguageres/Auto1585", "uIActionTarget" : "SINGLEKEY",
"rTMOSFilePath" : "pslanguageres/Auto1585" "xDataControlName" : "grid"
} ],
"getPSControlHandler" : {
"getPSHandlerActions" : [ {
"actionName" : "Get",
"actionType" : "DEACTION",
"dataAccessAction" : "READ",
"name" : "load",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Get"
}, },
"caption" : "编辑", "getPSAppDataEntity" : {
"codeName" : "Edit", "modelref" : true,
"fullCodeName" : "Edit", "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit", }
"name" : "表格界面_编辑操作", }, {
"getPSSysImage" : { "actionName" : "Create",
"glyph" : "xf044@FontAwesome", "actionType" : "DEACTION",
"cssClass" : "fa fa-edit" "dataAccessAction" : "CREATE",
"name" : "create",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Create"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionName" : "Update",
"actionType" : "DEACTION",
"dataAccessAction" : "UPDATE",
"name" : "update",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Update"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionName" : "Remove",
"actionType" : "DEACTION",
"dataAccessAction" : "DELETE",
"name" : "remove",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Remove"
}, },
"predefinedType" : "GRIDVIEW_EDITACTION", "getPSAppDataEntity" : {
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit", "modelref" : true,
"timeout" : 60000, "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
"getTooltipPSLanguageRes" : { }
"lanResTag" : "TBB.TOOLTIP.*.EDIT", }, {
"mOSFilePath" : "pslanguageres/Auto834", "actionName" : "GetDraft",
"rTMOSFilePath" : "pslanguageres/Auto834" "actionType" : "DEACTION",
"dataAccessAction" : "CREATE",
"name" : "loaddraft",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "GetDraft"
}, },
"uIActionMode" : "SYS", "getPSAppDataEntity" : {
"uIActionTag" : "Edit", "modelref" : true,
"uIActionType" : "DEUIACTION" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionType" : "DEDATASET",
"name" : "fetch",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "FetchDefault"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
} ],
"userDRAction" : "READ",
"enableDEFieldPrivilege" : false,
"id" : "数据表格处理器"
},
"getPSControlLogics" : [ {
"eventNames" : "ROWDBLCLICK;SELECTIONCHANGE;REMOVE;LOAD;BEFORELOAD",
"logicTag" : "grid",
"logicType" : "APPVIEWENGINE",
"name" : "engine_grid",
"getPSAppViewEngine" : {
"modelref" : true,
"id" : "engine"
}
} ],
"getPSControlParam" : {
"autoLoad" : true,
"showBusyIndicator" : true,
"id" : "GRID"
},
"getPSDEDataImport" : {
"modelref" : true,
"id" : "Import"
},
"getPSDEGridColumns" : [ {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.ORDERUID",
"mOSFilePath" : "pslanguageres/Auto526",
"rTMOSFilePath" : "pslanguageres/Auto526"
}, },
"tooltip" : "编辑", "caption" : "订单编号",
"getTooltipPSLanguageRes" : { "codeName" : "orderuid",
"lanResTag" : "TBB.TOOLTIP.*.EDIT", "columnType" : "DEFGRIDCOLUMN",
"mOSFilePath" : "pslanguageres/Auto834", "dataItemName" : "orderuid",
"rTMOSFilePath" : "pslanguageres/Auto834" "excelCaption" : "订单编号",
"mOSFilePath" : "psdegridcols/orderuid",
"name" : "orderuid",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERUID",
"codeName" : "OrderUID"
}, },
"showCaption" : true, "rTMOSFilePath" : "psdegridcols/orderuid",
"showIcon" : false "width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, { }, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.COPY", "lanResTag" : "DEF.LNAME.IBIZORDERNAME",
"mOSFilePath" : "pslanguageres/Auto514", "mOSFilePath" : "pslanguageres/Auto751",
"rTMOSFilePath" : "pslanguageres/Auto514" "rTMOSFilePath" : "pslanguageres/Auto751"
},
"caption" : "拷贝",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem6",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_tbitem6"
},
"getPSSysImage" : {
"glyph" : "xf0c5@FontAwesome",
"cssClass" : "fa fa-copy"
},
"getPSUIAction" : {
"actionTarget" : "SINGLEKEY",
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.COPY",
"mOSFilePath" : "pslanguageres/Auto514",
"rTMOSFilePath" : "pslanguageres/Auto514"
},
"caption" : "拷贝",
"codeName" : "Copy",
"fullCodeName" : "Copy",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Copy",
"name" : "表格界面_拷贝操作",
"getPSSysImage" : {
"glyph" : "xf0c5@FontAwesome",
"cssClass" : "fa fa-copy"
},
"predefinedType" : "GRIDVIEW_COPYACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Copy",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.COPY",
"mOSFilePath" : "pslanguageres/Auto1542",
"rTMOSFilePath" : "pslanguageres/Auto1542"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Copy",
"uIActionType" : "DEUIACTION"
}, },
"tooltip" : "拷贝", "caption" : "订单名称",
"getTooltipPSLanguageRes" : { "codeName" : "IBIZordername",
"lanResTag" : "TBB.TOOLTIP.*.COPY", "columnType" : "DEFGRIDCOLUMN",
"mOSFilePath" : "pslanguageres/Auto1542", "dataItemName" : "ibizordername",
"rTMOSFilePath" : "pslanguageres/Auto1542" "excelCaption" : "订单名称",
"mOSFilePath" : "psdegridcols/IBIZordername",
"name" : "IBIZordername",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
}, },
"showCaption" : true, "rTMOSFilePath" : "psdegridcols/IBIZordername",
"showIcon" : false "width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, { }, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.FILTER", "lanResTag" : "DEF.LNAME.ORDERSTATE",
"mOSFilePath" : "pslanguageres/Auto1437", "mOSFilePath" : "pslanguageres/Auto1017",
"rTMOSFilePath" : "pslanguageres/Auto1437" "rTMOSFilePath" : "pslanguageres/Auto1017"
}, },
"caption" : "过滤", "caption" : "订单状态",
"groupExtractMode" : "ITEM", "codeName" : "orderstate",
"itemType" : "DEUIACTION", "columnType" : "DEFGRIDCOLUMN",
"name" : "deuiaction3", "dataItemName" : "orderstate",
"noPrivDisplayMode" : 2, "excelCaption" : "订单状态",
"getPSAppViewUIAction" : { "mOSFilePath" : "psdegridcols/orderstate",
"name" : "orderstate",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_deuiaction3" "path" : "PSSYSAPPS/Web/PSAPPCODELISTS/ORDERSTATE.json"
},
"getPSSysImage" : {
"glyph" : "xf0b0@FontAwesome",
"cssClass" : "fa fa-filter"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.FILTER",
"mOSFilePath" : "pslanguageres/Auto1437",
"rTMOSFilePath" : "pslanguageres/Auto1437"
},
"caption" : "过滤",
"codeName" : "ToggleFilter",
"fullCodeName" : "ToggleFilter",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ToggleFilter",
"name" : "表格界面_搜索栏",
"getPSSysImage" : {
"glyph" : "xf0b0@FontAwesome",
"cssClass" : "fa fa-filter"
},
"predefinedType" : "GRIDVIEW_SEARCHBAR",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ToggleFilter",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.FILTER",
"mOSFilePath" : "pslanguageres/Auto796",
"rTMOSFilePath" : "pslanguageres/Auto796"
},
"uIActionMode" : "SYS",
"uIActionTag" : "ToggleFilter",
"uIActionType" : "DEUIACTION",
"enableToggleMode" : true
}, },
"tooltip" : "过滤", "getPSAppDEField" : {
"getTooltipPSLanguageRes" : { "name" : "ORDERSTATE",
"lanResTag" : "TBB.TOOLTIP.*.FILTER", "codeName" : "OrderState"
"mOSFilePath" : "pslanguageres/Auto796",
"rTMOSFilePath" : "pslanguageres/Auto796"
}, },
"enableToggleMode" : true, "rTMOSFilePath" : "psdegridcols/orderstate",
"showCaption" : true, "width" : 150,
"showIcon" : true "widthUnit" : "PX",
}, { "enableSort" : true
"itemType" : "SEPERATOR",
"name" : "tbitem7",
"spanMode" : false
}, { }, {
"getCapPSLanguageRes" : { "align" : "LEFT",
"lanResTag" : "TBB.TEXT.*.REMOVE", "cLConvertMode" : "FRONT",
"mOSFilePath" : "pslanguageres/Auto998", "getCapPSLanguageRes" : {
"rTMOSFilePath" : "pslanguageres/Auto998" "lanResTag" : "DEF.LNAME.ORDERTYPE",
}, "mOSFilePath" : "pslanguageres/Auto647",
"caption" : "删除", "rTMOSFilePath" : "pslanguageres/Auto647"
"groupExtractMode" : "ITEM", },
"itemType" : "DEUIACTION", "caption" : "订单类型",
"name" : "tbitem8", "codeName" : "ordertype",
"noPrivDisplayMode" : 2, "columnType" : "DEFGRIDCOLUMN",
"getPSAppViewUIAction" : { "dataItemName" : "ordertype",
"excelCaption" : "订单类型",
"mOSFilePath" : "psdegridcols/ordertype",
"name" : "ordertype",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_tbitem8" "path" : "PSSYSAPPS/Web/PSAPPCODELISTS/DYNAORDERTYPE.json"
}, },
"getPSSysImage" : { "getPSAppDEField" : {
"glyph" : "xf00d@FontAwesome", "name" : "ORDERTYPE",
"cssClass" : "fa fa-remove" "codeName" : "OrderType"
}, },
"getPSUIAction" : { "rTMOSFilePath" : "psdegridcols/ordertype",
"actionTarget" : "MULTIKEY", "width" : 150,
"getCapPSLanguageRes" : { "widthUnit" : "PX",
"lanResTag" : "TBB.TEXT.*.REMOVE", "enableSort" : true
"mOSFilePath" : "pslanguageres/Auto998", }, {
"rTMOSFilePath" : "pslanguageres/Auto998" "align" : "LEFT",
}, "cLConvertMode" : "NONE",
"caption" : "删除", "getCapPSLanguageRes" : {
"codeName" : "Remove", "lanResTag" : "DEF.LNAME.ORDERTIME",
"fullCodeName" : "Remove", "mOSFilePath" : "pslanguageres/Auto691",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Remove", "rTMOSFilePath" : "pslanguageres/Auto691"
"name" : "表格界面_删除操作",
"getPSSysImage" : {
"glyph" : "xf00d@FontAwesome",
"cssClass" : "fa fa-remove"
},
"predefinedType" : "GRIDVIEW_REMOVEACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Remove",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.REMOVE",
"mOSFilePath" : "pslanguageres/Auto1782",
"rTMOSFilePath" : "pslanguageres/Auto1782"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Remove",
"uIActionType" : "DEUIACTION"
}, },
"tooltip" : "删除", "caption" : "订单时间",
"getTooltipPSLanguageRes" : { "codeName" : "ordertime",
"lanResTag" : "TBB.TOOLTIP.*.REMOVE", "columnType" : "DEFGRIDCOLUMN",
"mOSFilePath" : "pslanguageres/Auto1782", "dataItemName" : "ordertime",
"rTMOSFilePath" : "pslanguageres/Auto1782" "excelCaption" : "订单时间",
"mOSFilePath" : "psdegridcols/ordertime",
"name" : "ordertime",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
}, },
"showCaption" : true, "rTMOSFilePath" : "psdegridcols/ordertime",
"showIcon" : false "valueFormat" : "YYYY-MM-DD",
}, { "width" : 150,
"itemType" : "SEPERATOR", "widthUnit" : "PX",
"name" : "tbitem9", "enableSort" : true
"spanMode" : false
}, { }, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.EXPORT", "lanResTag" : "DEF.LNAME.UPDATEDATE",
"mOSFilePath" : "pslanguageres/Auto1675", "mOSFilePath" : "pslanguageres/Auto1074",
"rTMOSFilePath" : "pslanguageres/Auto1675" "rTMOSFilePath" : "pslanguageres/Auto1074"
},
"caption" : "导出",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem13",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_tbitem13"
}, },
"getPSSysImage" : { "caption" : "更新时间",
"glyph" : "xf1c3@FontAwesome", "codeName" : "updatedate",
"cssClass" : "fa fa-file-excel-o" "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "updatedate",
"excelCaption" : "更新时间",
"mOSFilePath" : "psdegridcols/updatedate",
"name" : "updatedate",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
}, },
"getPSUIAction" : { "getPSDEUIAction" : {
"actionTarget" : "SINGLEKEY",
"getCapPSLanguageRes" : { "getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.EXPORT", "lanResTag" : "TBB.TEXT.*.EDIT",
"mOSFilePath" : "pslanguageres/Auto1675", "mOSFilePath" : "pslanguageres/Auto1585",
"rTMOSFilePath" : "pslanguageres/Auto1675" "rTMOSFilePath" : "pslanguageres/Auto1585"
}, },
"caption" : "导出", "caption" : "编辑",
"codeName" : "ExportExcel", "codeName" : "Edit",
"fullCodeName" : "ExportExcel", "fullCodeName" : "Edit",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportExcel", "mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit",
"name" : "表格界面_导出操作(Excel)", "name" : "表格界面_编辑操作",
"getPSSysImage" : { "getPSSysImage" : {
"glyph" : "xf1c3@FontAwesome", "glyph" : "xf044@FontAwesome",
"cssClass" : "fa fa-file-excel-o" "cssClass" : "fa fa-edit"
}, },
"predefinedType" : "GRIDVIEW_EXPORTACTION", "predefinedType" : "GRIDVIEW_EDITACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportExcel", "rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Edit",
"timeout" : 60000, "timeout" : 60000,
"getTooltipPSLanguageRes" : { "getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.EXPORT", "lanResTag" : "TBB.TOOLTIP.*.EDIT",
"mOSFilePath" : "pslanguageres/Auto160", "mOSFilePath" : "pslanguageres/Auto834",
"rTMOSFilePath" : "pslanguageres/Auto160" "rTMOSFilePath" : "pslanguageres/Auto834"
}, },
"uIActionMode" : "SYS", "uIActionMode" : "SYS",
"uIActionTag" : "ExportExcel", "uIActionTag" : "Edit",
"uIActionType" : "DEUIACTION" "uIActionType" : "DEUIACTION"
}, },
"tooltip" : "导出", "rTMOSFilePath" : "psdegridcols/updatedate",
"getTooltipPSLanguageRes" : { "valueFormat" : "YYYY-MM-DD HH:mm:ss",
"lanResTag" : "TBB.TOOLTIP.*.EXPORT", "width" : 150,
"mOSFilePath" : "pslanguageres/Auto160", "widthUnit" : "PX",
"rTMOSFilePath" : "pslanguageres/Auto160" "enableSort" : true
},
"showCaption" : true,
"showIcon" : true
}, { }, {
"caption" : "导入", "align" : "LEFT",
"groupExtractMode" : "ITEM", "cLConvertMode" : "NONE",
"itemType" : "DEUIACTION", "getCapPSLanguageRes" : {
"name" : "deuiaction1", "lanResTag" : "DEF.LNAME.MEMO",
"noPrivDisplayMode" : 2, "mOSFilePath" : "pslanguageres/Auto269",
"getPSAppViewUIAction" : { "rTMOSFilePath" : "pslanguageres/Auto269"
"modelref" : true,
"id" : "toolbar_deuiaction1"
},
"getPSSysImage" : {
"glyph" : "xf093@FontAwesome",
"cssClass" : "fa fa-upload"
}, },
"getPSUIAction" : { "caption" : "备注",
"actionTarget" : "NONE", "codeName" : "memo",
"caption" : "导入", "columnType" : "DEFGRIDCOLUMN",
"codeName" : "ImportExcel", "dataItemName" : "memo",
"frontProcessType" : "OPENHTMLPAGE", "excelCaption" : "备注",
"fullCodeName" : "ImportExcel", "mOSFilePath" : "psdegridcols/memo",
"htmlPageUrl" : "../../ibizutil/uploaddedataview.jsp?srfdeid=", "name" : "memo",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ImportExcel", "noPrivDisplayMode" : 1,
"name" : "导入", "getPSAppDEField" : {
"getPSSysImage" : { "name" : "MEMO",
"glyph" : "xf093@FontAwesome", "codeName" : "Memo"
"cssClass" : "fa fa-upload"
},
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ImportExcel",
"timeout" : 60000,
"uIActionMode" : "FRONT",
"uIActionTag" : "ImportExcel",
"uIActionType" : "DEUIACTION"
}, },
"tooltip" : "导入", "rTMOSFilePath" : "psdegridcols/memo",
"showCaption" : true, "width" : 1,
"showIcon" : true "widthUnit" : "STAR",
"enableSort" : true
} ],
"getPSDEGridDataItems" : [ {
"dataType" : 25,
"name" : "orderuid",
"getPSAppDEField" : {
"name" : "ORDERUID",
"codeName" : "OrderUID"
}
}, {
"dataType" : 25,
"name" : "ibizordername",
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
}
}, {
"dataType" : 25,
"name" : "orderstate",
"getPSAppDEField" : {
"name" : "ORDERSTATE",
"codeName" : "OrderState"
}
}, {
"dataType" : 25,
"name" : "ordertype",
"getPSAppDEField" : {
"name" : "ORDERTYPE",
"codeName" : "OrderType"
}
}, {
"format" : "YYYY-MM-DD",
"dataType" : 5,
"name" : "ordertime",
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
}
}, { }, {
"itemType" : "SEPERATOR", "format" : "YYYY-MM-DD HH:mm:ss",
"name" : "tbitem10", "dataType" : 5,
"spanMode" : false "name" : "updatedate",
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
}
}, { }, {
"getCapPSLanguageRes" : { "dataType" : 25,
"lanResTag" : "TBB.TEXT.*.PRINT", "name" : "memo",
"mOSFilePath" : "pslanguageres/Auto59", "getPSAppDEField" : {
"rTMOSFilePath" : "pslanguageres/Auto59" "name" : "MEMO",
}, "codeName" : "Memo"
"caption" : "打印", }
"groupExtractMode" : "ITEM", }, {
"itemType" : "DEUIACTION", "dataType" : 25,
"name" : "tbitem11", "name" : "ibizorderid",
"noPrivDisplayMode" : 2, "getPSAppDEField" : {
"getPSAppViewUIAction" : { "name" : "IBIZORDERID",
"modelref" : true, "codeName" : "IBIZOrderId"
"id" : "toolbar_tbitem11" }
}, }, {
"getPSSysImage" : { "dataType" : 25,
"glyph" : "xf02f@FontAwesome", "name" : "srfkey",
"cssClass" : "fa fa-print" "getPSAppDEField" : {
}, "name" : "IBIZORDERID",
"getPSUIAction" : { "codeName" : "IBIZOrderId"
"actionTarget" : "MULTIKEY", }
"getCapPSLanguageRes" : { }, {
"lanResTag" : "TBB.TEXT.*.PRINT", "dataType" : 25,
"mOSFilePath" : "pslanguageres/Auto59", "name" : "srfdataaccaction",
"rTMOSFilePath" : "pslanguageres/Auto59" "getPSAppDEField" : {
}, "name" : "IBIZORDERID",
"caption" : "打印", "codeName" : "IBIZOrderId"
"codeName" : "Print",
"fullCodeName" : "Print",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Print",
"name" : "表格界面_打印操作",
"getPSSysImage" : {
"glyph" : "xf02f@FontAwesome",
"cssClass" : "fa fa-print"
},
"predefinedType" : "GRIDVIEW_PRINTACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Print",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.PRINT",
"mOSFilePath" : "pslanguageres/Auto1134",
"rTMOSFilePath" : "pslanguageres/Auto1134"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Print",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "打印",
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.PRINT",
"mOSFilePath" : "pslanguageres/Auto1134",
"rTMOSFilePath" : "pslanguageres/Auto1134"
}, },
"showCaption" : true, "dataAccessAction" : true
"showIcon" : true
}, { }, {
"itemType" : "SEPERATOR", "dataType" : 25,
"name" : "tbitem12", "name" : "ibizcustomerid",
"spanMode" : false "getPSAppDEField" : {
"name" : "IBIZCUSTOMERID",
"codeName" : "IBIZCustomerId"
}
}, { }, {
"caption" : "其它", "dataType" : 25,
"itemType" : "ITEMS", "name" : "srfmajortext",
"name" : "tbitem16", "getPSAppDEField" : {
"getPSDEToolbarItems" : [ { "name" : "IBIZORDERNAME",
"getCapPSLanguageRes" : { "codeName" : "IBIZOrderName"
"lanResTag" : "MENUITEM.CAPTION.*.EXPORTSRF", }
"mOSFilePath" : "pslanguageres/Auto1443", }, {
"rTMOSFilePath" : "pslanguageres/Auto1443" "dataType" : 25,
}, "name" : "wfstep",
"caption" : "导出数据模型", "getPSAppDEField" : {
"groupExtractMode" : "ITEM", "name" : "WFSTEP",
"itemType" : "DEUIACTION", "codeName" : "WFStep"
"name" : "tbitem21", }
"noPrivDisplayMode" : 2, }, {
"getPSAppViewUIAction" : { "dataType" : 25,
"modelref" : true, "name" : "srfmstag"
"id" : "toolbar_tbitem21"
},
"getPSSysImage" : {
"glyph" : "xf019@FontAwesome",
"cssClass" : "fa fa-download"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"lanResTag" : "MENUITEM.CAPTION.*.EXPORTSRF",
"mOSFilePath" : "pslanguageres/Auto1443",
"rTMOSFilePath" : "pslanguageres/Auto1443"
},
"caption" : "导出数据模型",
"codeName" : "ExportModel",
"fullCodeName" : "ExportModel",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportModel",
"name" : "表格界面_导出数据模型",
"getPSSysImage" : {
"glyph" : "xf019@FontAwesome",
"cssClass" : "fa fa-download"
},
"predefinedType" : "GRIDVIEW_EXPORTXMLACTION",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/ExportModel",
"timeout" : 60000,
"uIActionMode" : "SYS",
"uIActionTag" : "ExportModel",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "导出数据模型",
"showCaption" : true,
"showIcon" : true
}, {
"caption" : "数据导入",
"groupExtractMode" : "ITEM",
"itemType" : "DEUIACTION",
"name" : "tbitem23",
"noPrivDisplayMode" : 2,
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "toolbar_tbitem23"
},
"getPSSysImage" : {
"glyph" : "xf093@FontAwesome",
"cssClass" : "fa fa-upload"
},
"getPSUIAction" : {
"caption" : "数据导入",
"codeName" : "Import",
"fullCodeName" : "Import",
"mOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Import",
"name" : "表格界面_数据导入栏",
"getPSSysImage" : {
"glyph" : "xf093@FontAwesome",
"cssClass" : "fa fa-upload"
},
"predefinedType" : "GRIDVIEW_IMPORTBAR",
"rTMOSFilePath" : "pssysapps/Web/pssysappdeuiactions/Import",
"timeout" : 60000,
"uIActionMode" : "SYS",
"uIActionTag" : "Import",
"uIActionType" : "DEUIACTION"
},
"tooltip" : "数据导入",
"showCaption" : true,
"showIcon" : true
} ],
"tooltip" : "其它",
"showCaption" : true,
"showIcon" : true
} ], } ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView/psappviewctrls/toolbar", "getPSDEGridEditItems" : [ {
"modelid" : "47d7b189cb310900c71aaabc97f7444b", "caption" : "订单标识",
"modeltype" : "PSDETOOLBAR" "codeName" : "srfkey",
"enableCond" : 3,
"ignoreInput" : 0,
"mOSFilePath" : "psdegridcols/srfkey",
"name" : "srfkey",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
},
"getPSEditor" : {
"editorType" : "HIDDEN",
"name" : "srfkey"
},
"rTMOSFilePath" : "psdegridcols/srfkey",
"allowEmpty" : true
} ],
"pagingSize" : 10,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
"actionType" : "DEACTION",
"dataAccessAction" : "DELETE",
"name" : "remove",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Remove"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
},
"sortMode" : "REMOTE",
"hasWFDataItems" : false,
"enableColFilter" : false,
"enableCustomized" : true,
"enableGroup" : false,
"enablePagingBar" : true,
"enableRowEdit" : false,
"enableRowEditOrder" : false,
"enableRowNew" : false,
"forceFit" : true,
"hideHeader" : false,
"noSort" : false,
"singleSelect" : false,
"name" : "grid",
"modelid" : "9222eaa963655f7f76cff5972d695cbf",
"modeltype" : "PSDEGRID"
} ], } ],
"getPSDEViewCodeName" : "SGridView", "getPSDEViewCodeName" : "SGridView",
"getPSDEViewId" : "c1a1a41aceb77d8f1995e1edc41bfad1", "getPSDEViewId" : "c1a1a41aceb77d8f1995e1edc41bfad1",
...@@ -1858,6 +1854,10 @@ ...@@ -1858,6 +1854,10 @@
"modelref" : true, "modelref" : true,
"path" : "PSWORKFLOWS/ODSP.json" "path" : "PSWORKFLOWS/ODSP.json"
}, },
"getQuickGroupPSCodeList" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/OrderType.json"
},
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView", "rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView",
"title" : "实体表格视图", "title" : "实体表格视图",
"getTitlePSLanguageRes" : { "getTitlePSLanguageRes" : {
...@@ -1872,6 +1872,7 @@ ...@@ -1872,6 +1872,7 @@
"enableExport" : true, "enableExport" : true,
"enableFilter" : true, "enableFilter" : true,
"enableImport" : true, "enableImport" : true,
"enableQuickGroup" : true,
"enableQuickSearch" : true, "enableQuickSearch" : true,
"enableRowEdit" : false, "enableRowEdit" : false,
"enableSearch" : true, "enableSearch" : true,
......
...@@ -14077,18 +14077,6 @@ ...@@ -14077,18 +14077,6 @@
} }
} ], } ],
"rTMOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup26" "rTMOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup26"
}, {
"codeName" : "VMGroup89",
"mOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup89",
"name" : "常规表格",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "常规表格",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg88"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup89"
}, { }, {
"codeName" : "VMGroup22", "codeName" : "VMGroup22",
"mOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup22", "mOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup22",
...@@ -15906,16 +15894,6 @@ ...@@ -15906,16 +15894,6 @@
"rTMOSFilePath" : "pssysapps/Web/psappviewmsgs/ViewMsg87", "rTMOSFilePath" : "pssysapps/Web/psappviewmsgs/ViewMsg87",
"removeMode" : 0, "removeMode" : 0,
"enableRemove" : false "enableRemove" : false
}, {
"codeName" : "ViewMsg88",
"mOSFilePath" : "pssysapps/Web/psappviewmsgs/ViewMsg88",
"message" : "本示例展示常规表格视图:包含快速搜索栏和工具栏等。",
"messageType" : "ERROR",
"name" : "常规表格",
"position" : "TOP",
"rTMOSFilePath" : "pssysapps/Web/psappviewmsgs/ViewMsg88",
"removeMode" : 0,
"enableRemove" : false
}, { }, {
"codeName" : "ViewMsg89", "codeName" : "ViewMsg89",
"mOSFilePath" : "pssysapps/Web/psappviewmsgs/ViewMsg89", "mOSFilePath" : "pssysapps/Web/psappviewmsgs/ViewMsg89",
...@@ -344,7 +344,7 @@ ...@@ -344,7 +344,7 @@
<!--输出实体[IBIZORDER]数据结构 --> <!--输出实体[IBIZORDER]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-707-14"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-711-14">
<createTable tableName="T_IBIZORDER"> <createTable tableName="T_IBIZORDER">
<column name="TP" remarks="" type="TEXT(1048576)"> <column name="TP" remarks="" type="TEXT(1048576)">
</column> </column>
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
</createView> </createView>
</changeSet> </changeSet>
<!--输出实体[IBIZORDER]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步--> <!--输出实体[IBIZORDER]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet author="a_LAB01_df847bdfd" id="view-ibizorder-707-8" runOnChange="true"> <changeSet author="a_LAB01_df847bdfd" id="view-ibizorder-711-8" runOnChange="true">
<createView fullDefinition="false" replaceIfExists="true" viewName="V_IBIZORDER"> <createView fullDefinition="false" replaceIfExists="true" viewName="V_IBIZORDER">
<![CDATA[ SELECT t1.[AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[DETAILNUM], t1.[IBIZCUSTOMERID], t11.[IBIZCUSTOMERNAME], t1.[IBIZORDERID], t1.[IBIZORDERNAME], t1.[MEMO], t1.[ORDERSTATE], t1.[ORDERTIME], t1.[ORDERTYPE], t1.[ORDERUID], t1.[UPDATEDATE], t1.[UPDATEMAN], t1.[WFINSTANCEID], t1.[WFSTATE], t1.[WFSTEP] FROM [T_IBIZORDER] t1 LEFT JOIN T_IBIZCUSTOMER t11 ON t1.IBIZCUSTOMERID = t11.IBIZCUSTOMERID ]]> <![CDATA[ SELECT t1.[AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[DETAILNUM], t1.[IBIZCUSTOMERID], t11.[IBIZCUSTOMERNAME], t1.[IBIZORDERID], t1.[IBIZORDERNAME], t1.[MEMO], t1.[ORDERSTATE], t1.[ORDERTIME], t1.[ORDERTYPE], t1.[ORDERUID], t1.[UPDATEDATE], t1.[UPDATEMAN], t1.[WFINSTANCEID], t1.[WFSTATE], t1.[WFSTEP] FROM [T_IBIZORDER] t1 LEFT JOIN T_IBIZCUSTOMER t11 ON t1.IBIZCUSTOMERID = t11.IBIZCUSTOMERID ]]>
</createView> </createView>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册