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

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

上级 8378f511
<template> <template>
<div class="app-view-layout ibizorder-usr2-grid-view" v-loading="isLayoutLoadding" :style="{height: '100%', width: '100%','display': 'flex', 'flex-direction': 'column'}"> <div class="app-view-layout ibizorder-usr2-grid-view" v-loading="isLayoutLoadding" :style="{height: '100%', width: '100%', overflow: 'auto'}">
<template v-show="!isLayoutLoadding"> <template v-show="!isLayoutLoadding">
<app-standard-container name="page_container" :isMultiContainer="false" :layoutModelDetails="layoutModelDetails"> <app-scroll-container name="container_scroll1" :layoutModelDetails="layoutModelDetails">
<template #container_grid1> <template #container_scroll_main1>
<app-simpleflex-container name="container_grid1" :layoutModelDetails="layoutModelDetails"> <app-scroll-container name="container_scroll_main1" :layoutModelDetails="layoutModelDetails">
<template #container1> <template #grid>
<app-simpleflex-container name="container1" :layoutModelDetails="layoutModelDetails"> <app-ctrl-pos name="grid" :layoutModelDetails="layoutModelDetails">
<template #view_pagecaption> <view_grid
<app-preset-caption name="view_pagecaption" :layoutModelDetails="layoutModelDetails"> (测试视图布局面板) </app-preset-caption> :viewState="viewState"
</template> :viewparams="viewparams"
</app-simpleflex-container> :context="context"
:isSingleSelect="isSingleSelect"
:showBusyIndicator="true"
:isOpenEdit="false"
:gridRowActiveMode="gridRowActiveMode"
:isformDruipart="isformDruipart"
@save="onSave"
updateAction=""
removeAction="Remove"
loaddraftAction=""
loadAction=""
createAction=""
fetchAction="FetchDefault"
:newdata="newdata"
:opendata="opendata"
name="grid"
ref='grid'
@rowdblclick="grid_rowdblclick($event)"
@selectionchange="grid_selectionchange($event)"
@remove="grid_remove($event)"
@load="grid_load($event)"
@beforeload="grid_beforeload($event)"
@closeview="closeView($event)">
</view_grid>
</app-ctrl-pos>
</template> </template>
<template #container2> </app-scroll-container>
<app-simpleflex-container name="container2" :layoutModelDetails="layoutModelDetails">
</app-simpleflex-container>
</template> </template>
<template #container_2> <template #container_scroll_header1>
<app-simpleflex-container name="container_2" :layoutModelDetails="layoutModelDetails"> <app-scroll-container name="container_scroll_header1" :layoutModelDetails="layoutModelDetails">
<template #container_grid1>
<app-simpleflex-container name="container_grid1" :layoutModelDetails="layoutModelDetails">
<template #container3>
<app-simpleflex-container name="container3" :layoutModelDetails="layoutModelDetails">
<template #toolbar> <template #toolbar>
<app-ctrl-pos name="toolbar" :layoutModelDetails="layoutModelDetails"> <app-ctrl-pos name="toolbar" :layoutModelDetails="layoutModelDetails">
<div class='toolbar-container'> <div class='toolbar-container'>
...@@ -30,12 +56,26 @@ ...@@ -30,12 +56,26 @@
</div> </div>
</app-ctrl-pos> </app-ctrl-pos>
</template> </template>
</app-simpleflex-container>
</template>
<template #container1>
<app-simpleflex-container name="container1" :layoutModelDetails="layoutModelDetails">
<template #view_pagecaption>
<app-preset-caption name="view_pagecaption" :layoutModelDetails="layoutModelDetails"> (测试视图布局面板) </app-preset-caption>
</template>
</app-simpleflex-container>
</template>
<template #container2>
<app-simpleflex-container name="container2" :layoutModelDetails="layoutModelDetails">
<template #quicksearchbar>
<app-ctrl-pos name="quicksearchbar" :layoutModelDetails="layoutModelDetails">
<i-input v-model="query" search enter-button @on-search="onSearch($event)" class='quick-search-input' style='max-width: 400px;' placeholder="订单名称" />
</app-ctrl-pos>
</template>
</app-simpleflex-container> </app-simpleflex-container>
</template> </template>
</app-simpleflex-container> </app-simpleflex-container>
</template> </template>
<template #container4>
<app-standard-container name="container4" :isMultiContainer="false" :layoutModelDetails="layoutModelDetails">
<template #searchform> <template #searchform>
<app-ctrl-pos name="searchform" :layoutModelDetails="layoutModelDetails"> <app-ctrl-pos name="searchform" :layoutModelDetails="layoutModelDetails">
<view_searchform <view_searchform
...@@ -55,40 +95,9 @@ ...@@ -55,40 +95,9 @@
</view_searchform> </view_searchform>
</app-ctrl-pos> </app-ctrl-pos>
</template> </template>
<template #grid> </app-scroll-container>
<app-ctrl-pos name="grid" :layoutModelDetails="layoutModelDetails">
<view_grid
:viewState="viewState"
:viewparams="viewparams"
:context="context"
:isSingleSelect="isSingleSelect"
:showBusyIndicator="true"
:isOpenEdit="false"
:gridRowActiveMode="gridRowActiveMode"
:isformDruipart="isformDruipart"
@save="onSave"
updateAction=""
removeAction="Remove"
loaddraftAction=""
loadAction=""
createAction=""
fetchAction="FetchDefault"
:newdata="newdata"
:opendata="opendata"
name="grid"
ref='grid'
@rowdblclick="grid_rowdblclick($event)"
@selectionchange="grid_selectionchange($event)"
@remove="grid_remove($event)"
@load="grid_load($event)"
@beforeload="grid_beforeload($event)"
@closeview="closeView($event)">
</view_grid>
</app-ctrl-pos>
</template>
</app-standard-container>
</template> </template>
</app-standard-container> </app-scroll-container>
</template> </template>
</div> </div>
</template> </template>
...@@ -275,7 +284,6 @@ export default class IBIZOrderUsr2GridViewBase extends Vue { ...@@ -275,7 +284,6 @@ export default class IBIZOrderUsr2GridViewBase extends Vue {
view_grid: { name: 'grid', type: 'GRID' }, 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_searchbar: { name: 'searchbar', type: 'SEARCHBAR' },
wflinks: [], wflinks: [],
}; };
...@@ -352,7 +360,7 @@ export default class IBIZOrderUsr2GridViewBase extends Vue { ...@@ -352,7 +360,7 @@ export default class IBIZOrderUsr2GridViewBase extends Vue {
* @public * @public
* @memberof IBIZOrderUsr2GridViewBase * @memberof IBIZOrderUsr2GridViewBase
*/ */
public rootLayoutDetailNames: string[] = [ 'page_container' ]; public rootLayoutDetailNames: string[] = [ 'container_scroll1' ];
/** /**
* 视图布局面板项模型对象 * 视图布局面板项模型对象
...@@ -361,16 +369,18 @@ export default class IBIZOrderUsr2GridViewBase extends Vue { ...@@ -361,16 +369,18 @@ export default class IBIZOrderUsr2GridViewBase extends Vue {
* @memberof IBIZOrderUsr2GridViewBase * @memberof IBIZOrderUsr2GridViewBase
*/ */
public layoutItems:any = { public layoutItems:any = {
view_pagecaption:{ name: 'view_pagecaption', type: 'VIEWLAYOUT', caption: '页面标题', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'FULL', layoutWidth:0, widthMode:'FULL', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'LEFT', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container1', panel: this , fieldState: '0', predefinedType: 'VIEW_PAGECAPTION', dataItemName:'', }, grid:{ name: 'grid', type: 'VIEWLAYOUT', caption: '表格', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'CENTER', layoutHeight:0, heightMode:'FULL', layoutWidth:0, widthMode:'FULL', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll_main1', panel: this },
container_scroll_main1:{ name: 'container_scroll_main1', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: true, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll1', panel: this , details:['grid'] , dataRegionType: 'INHERIT' },
toolbar:{ name: 'toolbar', type: 'VIEWLAYOUT', caption: '工具栏', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'RIGHT', vAlignSelf:'MIDDLE', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container3', panel: this },
container3:{ name: 'container3', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:['toolbar'] , dataRegionType: 'INHERIT' },
view_pagecaption:{ name: 'view_pagecaption', type: 'VIEWLAYOUT', caption: '页面标题', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'LEFT', vAlignSelf:'MIDDLE', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container1', panel: this , fieldState: '0', predefinedType: 'VIEW_PAGECAPTION', dataItemName:'', },
container1:{ name: 'container1', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:6, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:['view_pagecaption'] , dataRegionType: 'INHERIT' }, container1:{ name: 'container1', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:6, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:['view_pagecaption'] , dataRegionType: 'INHERIT' },
container2:{ name: 'container2', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:3, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:[] , dataRegionType: 'INHERIT' }, quicksearchbar:{ name: 'quicksearchbar', type: 'VIEWLAYOUT', caption: 'QUICKSEARCHBAR', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'RIGHT', vAlignSelf:'MIDDLE', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container2', panel: this },
toolbar:{ name: 'toolbar', type: 'VIEWLAYOUT', caption: 'TOOLBAR', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'FULL', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'RIGHT', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_2', panel: this }, container2:{ name: 'container2', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:3, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:['quicksearchbar'] , dataRegionType: 'INHERIT' },
container_2:{ name: 'container_2', type: 'VIEWLAYOUT', caption: '容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_grid1', panel: this , details:['toolbar'] , dataRegionType: 'INHERIT' }, container_grid1:{ name: 'container_grid1', type: 'VIEWLAYOUT', caption: '栅格容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll_header1', panel: this , details:['container3','container1','container2'] , dataRegionType: 'INHERIT' },
container_grid1:{ name: 'container_grid1', type: 'VIEWLAYOUT', caption: '栅格容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'SIMPLEFLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'page_container', panel: this , details:['container1','container2','container_2'] , dataRegionType: 'INHERIT' }, searchform:{ name: 'searchform', type: 'VIEWLAYOUT', caption: '搜索表单', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'CENTER', layoutHeight:60, heightMode:'PX', layoutWidth:0, widthMode:'FULL', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll_header1', panel: this },
searchform:{ name: 'searchform', type: 'VIEWLAYOUT', caption: 'SEARCHFORM', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:80, heightMode:'PX', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container4', panel: this }, container_scroll_header1:{ name: 'container_scroll_header1', type: 'VIEWLAYOUT', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: true, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'NORTH', layoutHeight:120, heightMode:'PX', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll1', panel: this , details:['container_grid1','searchform'] , dataRegionType: 'INHERIT' },
grid:{ name: 'grid', type: 'VIEWLAYOUT', caption: 'GRID', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:100, heightMode:'FULL', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container4', panel: this }, container_scroll1:{ name: 'container_scroll1', type: 'VIEWLAYOUT', caption: '滚动条容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, panel: this , details:['container_scroll_main1','container_scroll_header1'] , dataRegionType: 'INHERIT' }
container4:{ name: 'container4', type: 'VIEWLAYOUT', caption: '容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'FLEX', layoutPos:'', layoutHeight:100, heightMode:'PERCENTAGE', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'page_container', panel: this , details:['searchform','grid'] , dataRegionType: 'INHERIT' },
page_container:{ name: 'page_container', type: 'VIEWLAYOUT', caption: '', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'FLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'column',vAlign:''}, panel: this , details:['container_grid1','container4'] , dataRegionType: 'INHERIT' }
}; };
/** /**
......
...@@ -4,12 +4,10 @@ import IBIZOrderUsr2GridViewBase from './ibizorder-usr2-grid-view-base.vue'; ...@@ -4,12 +4,10 @@ import IBIZOrderUsr2GridViewBase from './ibizorder-usr2-grid-view-base.vue';
import view_grid from '@widgets/ibizorder/main-grid/main-grid.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_searchbar from '@widgets/ibizorder/-searchbar/-searchbar.vue';
@Component({ @Component({
components: { components: {
view_grid, view_grid,
view_searchform, view_searchform,
view_searchbar,
}, },
beforeRouteEnter: (to: any, from: any, next: any) => { beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => { next((vm: any) => {
......
...@@ -15,7 +15,16 @@ ...@@ -15,7 +15,16 @@
:value='data.field1' :value='data.field1'
:itemRules="rules.field1"> :itemRules="rules.field1">
<app-span :value="data.field1" name="field1" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="field1"
:value="layoutData.field1"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -35,7 +44,16 @@ ...@@ -35,7 +44,16 @@
:value='data.field2' :value='data.field2'
:itemRules="rules.field2"> :itemRules="rules.field2">
<app-span :value="data.field2" name="field2" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="field2"
:value="layoutData.field2"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -55,7 +73,16 @@ ...@@ -55,7 +73,16 @@
:value='data.field3' :value='data.field3'
:itemRules="rules.field3"> :itemRules="rules.field3">
<app-span :value="data.field3" name="field3" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="field3"
:value="layoutData.field3"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
......
...@@ -15,7 +15,16 @@ ...@@ -15,7 +15,16 @@
:value='data.srfmajortext' :value='data.srfmajortext'
:itemRules="rules.srfmajortext"> :itemRules="rules.srfmajortext">
<app-span :value="data.srfmajortext" name="srfmajortext" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="srfmajortext"
:value="layoutData.srfmajortext"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -35,7 +44,16 @@ ...@@ -35,7 +44,16 @@
:value='data.author' :value='data.author'
:itemRules="rules.author"> :itemRules="rules.author">
<app-span :value="data.author" name="author" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="author"
:value="layoutData.author"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -55,7 +73,16 @@ ...@@ -55,7 +73,16 @@
:value='data.srfdescription' :value='data.srfdescription'
:itemRules="rules.srfdescription"> :itemRules="rules.srfdescription">
<app-span :value="data.srfdescription" name="srfdescription" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="srfdescription"
:value="layoutData.srfdescription"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
......
...@@ -15,7 +15,16 @@ ...@@ -15,7 +15,16 @@
:value='data.bookname' :value='data.bookname'
:itemRules="rules.bookname"> :itemRules="rules.bookname">
<app-span :value="data.bookname" name="bookname" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="bookname"
:value="layoutData.bookname"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -35,7 +44,16 @@ ...@@ -35,7 +44,16 @@
:value='data.author' :value='data.author'
:itemRules="rules.author"> :itemRules="rules.author">
<app-span :value="data.author" name="author" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="author"
:value="layoutData.author"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -55,7 +73,16 @@ ...@@ -55,7 +73,16 @@
:value='data.press' :value='data.press'
:itemRules="rules.press"> :itemRules="rules.press">
<app-span :value="data.press" name="press" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="press"
:value="layoutData.press"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
......
...@@ -46,11 +46,11 @@ ...@@ -46,11 +46,11 @@
<span class="quick-toolbar"> <span class="quick-toolbar">
<div class='toolbar-container'> <div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
<i-button v-show="listviewlist_quicktoolbarModels.deuiaction1.visabled" :disabled="listviewlist_quicktoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_quicktoolbar_click({ tag: 'deuiaction1' }, $event)"> <i-button v-show="usr4listview_layoutlist_quicktoolbarModels.deuiaction1.visabled" :disabled="usr4listview_layoutlist_quicktoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_quicktoolbar_click({ tag: 'deuiaction1' }, $event)">
<i class='fa fa-file-text-o'></i> <i class='fa fa-file-text-o'></i>
<span class='caption'>{{$t('entities.ibizbook.listviewlist_quicktoolbar_toolbar.deuiaction1.caption')}}</span> <span class='caption'>{{$t('entities.ibizbook.usr4listview_layoutlist_quicktoolbar_toolbar.deuiaction1.caption')}}</span>
</i-button> </i-button>
<div slot='content'>{{$t('entities.ibizbook.listviewlist_quicktoolbar_toolbar.deuiaction1.tip')}}</div> <div slot='content'>{{$t('entities.ibizbook.usr4listview_layoutlist_quicktoolbar_toolbar.deuiaction1.tip')}}</div>
</tooltip> </tooltip>
</div> </div>
</span> </span>
...@@ -61,18 +61,18 @@ ...@@ -61,18 +61,18 @@
<span class="batch-toolbar"> <span class="batch-toolbar">
<div class='toolbar-container'> <div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
<i-button v-show="listviewlist_batchtoolbarModels.deuiaction1.visabled" :disabled="listviewlist_batchtoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction1' }, $event)"> <i-button v-show="usr4listview_layoutlist_batchtoolbarModels.deuiaction1.visabled" :disabled="usr4listview_layoutlist_batchtoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction1' }, $event)">
<i class='fa fa-edit'></i> <i class='fa fa-edit'></i>
<span class='caption'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction1.caption')}}</span> <span class='caption'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction1.caption')}}</span>
</i-button> </i-button>
<div slot='content'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction1.tip')}}</div> <div slot='content'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction1.tip')}}</div>
</tooltip> </tooltip>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
<i-button v-show="listviewlist_batchtoolbarModels.deuiaction2.visabled" :disabled="listviewlist_batchtoolbarModels.deuiaction2.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction2' }, $event)"> <i-button v-show="usr4listview_layoutlist_batchtoolbarModels.deuiaction2.visabled" :disabled="usr4listview_layoutlist_batchtoolbarModels.deuiaction2.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction2' }, $event)">
<i class='fa fa-remove'></i> <i class='fa fa-remove'></i>
<span class='caption'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction2.caption')}}</span> <span class='caption'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction2.caption')}}</span>
</i-button> </i-button>
<div slot='content'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction2.tip')}}</div> <div slot='content'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction2.tip')}}</div>
</tooltip> </tooltip>
</div> </div>
</span> </span>
...@@ -354,7 +354,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -354,7 +354,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKListViewBase * @memberof IBIZBOOKUsr4ListView_layoutBase
*/ */
public New(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { public New(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
const _this: any = this; const _this: any = this;
...@@ -374,7 +374,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -374,7 +374,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKListViewBase * @memberof IBIZBOOKUsr4ListView_layoutBase
*/ */
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) { if (args.length === 0) {
...@@ -400,7 +400,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -400,7 +400,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKListViewBase * @memberof IBIZBOOKUsr4ListView_layoutBase
*/ */
public Remove(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { public Remove(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
const _this: any = this; const _this: any = this;
...@@ -575,9 +575,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -575,9 +575,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* 工具栏模型 * 工具栏模型
* *
* @type {*} * @type {*}
* @memberof IBIZBOOKListView * @memberof IBIZBOOKUsr4ListView_layout
*/ */
public listviewlist_quicktoolbarModels: any = { public usr4listview_layoutlist_quicktoolbarModels: any = {
deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '新建', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'New', target: '' } }, deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '新建', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'New', target: '' } },
}; };
...@@ -587,9 +587,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -587,9 +587,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* 工具栏模型 * 工具栏模型
* *
* @type {*} * @type {*}
* @memberof IBIZBOOKListView * @memberof IBIZBOOKUsr4ListView_layout
*/ */
public listviewlist_batchtoolbarModels: any = { public usr4listview_layoutlist_batchtoolbarModels: any = {
deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '编辑', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Edit', target: 'SINGLEKEY' } }, deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '编辑', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Edit', target: 'SINGLEKEY' } },
deuiaction2: { name: 'deuiaction2', actiontarget: 'NONE', caption: '删除', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Remove', target: 'MULTIKEY' } }, deuiaction2: { name: 'deuiaction2', actiontarget: 'NONE', caption: '删除', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Remove', target: 'MULTIKEY' } },
...@@ -812,7 +812,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -812,7 +812,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -928,7 +928,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -928,7 +928,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
*/ */
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: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (this.$t('app.list.notConfig.removeAction') as string) });
return; return;
} }
if (datas.length === 0) { if (datas.length === 0) {
...@@ -1023,7 +1023,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -1023,7 +1023,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
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: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (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);
...@@ -1031,7 +1031,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac ...@@ -1031,7 +1031,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
} }
}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.warning') as string), desc: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (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){
......
...@@ -1800,7 +1800,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1800,7 +1800,7 @@ export default class MainBase 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: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1835,7 +1835,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1835,7 +1835,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public loadDraft(opt: any = {}): void { public loadDraft(opt: any = {}): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1897,7 +1897,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1897,7 +1897,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -2005,7 +2005,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2005,7 +2005,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -15,7 +15,16 @@ ...@@ -15,7 +15,16 @@
:value='data.author' :value='data.author'
:itemRules="rules.author"> :itemRules="rules.author">
<app-span :value="data.author" name="author" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="author"
:value="layoutData.author"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -35,7 +44,16 @@ ...@@ -35,7 +44,16 @@
:value='data.press' :value='data.press'
:itemRules="rules.press"> :itemRules="rules.press">
<app-span :value="data.press" name="press" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="press"
:value="layoutData.press"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
...@@ -55,7 +73,16 @@ ...@@ -55,7 +73,16 @@
:value='data.bookname' :value='data.bookname'
:itemRules="rules.bookname"> :itemRules="rules.bookname">
<app-span :value="data.bookname" name="bookname" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> </app-span> <app-span
name="bookname"
:value="layoutData.bookname"
:data="layoutData"
:context="context"
:viewparams="viewparams"
:localContext='{ }'
:localParam='{ }'
style="">
</app-span>
</app-panel-field> </app-panel-field>
</div> </div>
......
...@@ -522,7 +522,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -522,7 +522,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -638,7 +638,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -638,7 +638,7 @@ export default class ListExpBase 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: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.removeAction') as string) });
return; return;
} }
if (datas.length === 0) { if (datas.length === 0) {
...@@ -733,7 +733,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -733,7 +733,7 @@ export default class ListExpBase 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: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (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);
...@@ -741,7 +741,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -741,7 +741,7 @@ export default class ListExpBase 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.warning') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){ if(item.ibizorder){
......
...@@ -291,7 +291,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -291,7 +291,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源 * @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件 * @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文 * @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrderSF1GridViewBase * @memberof IBIZOrderPickupGridViewBase
*/ */
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) { if (args.length === 0) {
...@@ -413,20 +413,6 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -413,20 +413,6 @@ export default class MainBase extends Vue implements ControlInterface {
return this.selections[0]; return this.selections[0];
} }
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public newdata: any;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public opendata: any;
/** /**
* 是否嵌入关系界面 * 是否嵌入关系界面
...@@ -959,7 +945,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -959,7 +945,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public load(opt: any = {}, pageReset: boolean = false): void { public load(opt: any = {}, pageReset: boolean = false): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(pageReset){ if(pageReset){
...@@ -1054,7 +1040,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1054,7 +1040,7 @@ export default class MainBase 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: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.removeAction') as string) });
return; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -1160,7 +1146,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1160,7 +1146,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public addBatch(arg: any = {}): void { public addBatch(arg: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(!arg){ if(!arg){
...@@ -2077,7 +2063,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2077,7 +2063,7 @@ export default class MainBase 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: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.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);
...@@ -2085,7 +2071,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2085,7 +2071,7 @@ export default class MainBase 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: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){ if(item.ibizorder){
...@@ -2152,7 +2138,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2152,7 +2138,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public newRow(args: any[], params?: any, $event?: any, xData?: any): void { public newRow(args: any[], params?: any, $event?: any, xData?: any): void {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.loaddraftAction') as string) });
return; return;
} }
let _this = this; let _this = this;
......
...@@ -104,21 +104,6 @@ export default class MainModel { ...@@ -104,21 +104,6 @@ export default class MainModel {
prop: 'n_ibizordername_like', prop: 'n_ibizordername_like',
dataType: 'QUERYPARAM' dataType: 'QUERYPARAM'
}, },
{
name: 'n_orderstate_eq',
prop: 'n_orderstate_eq',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_gt',
prop: 'n_ordertime_gt',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_lt',
prop: 'n_ordertime_lt',
dataType: 'QUERYPARAM'
},
{ {
name:'size', name:'size',
......
...@@ -12,985 +12,992 @@ ...@@ -12,985 +12,992 @@
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}, },
"getPSDEViewCodeName" : "Usr2GridView", "getPSAppViewEngines" : [ {
"getPSDEViewId" : "27352A37-855D-4D0E-8F91-9D50AFCF2599", "engineCat" : "VIEW",
"getPSViewLayoutPanel" : { "engineType" : "GridView",
"getAllPSPanelFields" : [ { "name" : "engine",
"id" : "view_pagecaption" "getPSUIEngineParams" : [ {
} ], "appViewLogicName" : "opendata",
"codeName" : "Usr1102255045", "name" : "OPENDATA",
"controlType" : "VIEWLAYOUTPANEL", "paramType" : "LOGIC"
"layoutMode" : "FLEX", }, {
"logicName" : "Usr2GridViewDEGRIDVIEW", "appViewLogicName" : "newdata",
"name" : "layoutpanel", "name" : "NEWDATA",
"getPSAppDataEntity" : { "paramType" : "LOGIC"
}, {
"ctrlName" : "grid",
"name" : "GRID",
"paramType" : "CTRL"
}, {
"ctrlName" : "searchform",
"name" : "SEARCHFORM",
"paramType" : "CTRL"
} ]
} ],
"getPSAppViewLogics" : [ {
"eventArg" : "deuiaction1",
"eventNames" : "CLICK",
"logicTrigger" : "CTRLEVENT",
"logicType" : "APPVIEWUIACTION",
"name" : "toolbar_deuiaction1_click",
"getPSAppViewUIAction" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "id" : "toolbar_deuiaction1"
},
"getPSControlParam" : { },
"getPSLayout" : {
"layout" : "FLEX"
}, },
"getRootPSPanelItems" : [ { "getPSViewCtrlName" : "toolbar"
"itemStyle" : "DEFAULT", }, {
"itemType" : "CONTAINER", "logicTrigger" : "CUSTOM",
"name" : "page_container", "logicType" : "SYSUILOGIC",
"getPSLayout" : { "name" : "newdata",
"dir" : "column", "getPSAppUILogic" : {
"layout" : "FLEX" "actionAfterWizard" : "DEFAULT",
}, "logicType" : "PREDEFINED",
"getPSLayoutPos" : { "name" : "新建数据",
"grow" : -1, "viewLogicType" : "APP_NEWDATA",
"layout" : "FLEX" "batchAddOnly" : false,
}, "enableBatchAdd" : false,
"getPSPanelItems" : [ { "enableWizardAdd" : false
"caption" : "栅格容器", }
"itemStyle" : "DEFAULT", }, {
"itemType" : "CONTAINER", "logicTrigger" : "CUSTOM",
"name" : "container_grid1", "logicType" : "SYSUILOGIC",
"getPSLayout" : { "name" : "opendata",
"layout" : "SIMPLEFLEX" "getPSAppUILogic" : {
}, "logicType" : "PREDEFINED",
"getPSLayoutPos" : { "name" : "打开数据",
"grow" : -1, "getOpenDataPSAppViews" : [ {
"layout" : "FLEX" "refMode" : "MSTAG:10",
}, "getRefPSAppView" : {
"getPSPanelItems" : [ { "modelref" : true,
"caption" : "面板容器", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState10EditView2.json",
"itemStyle" : "DEFAULT", "viewType" : "DEEDITVIEW2"
"itemType" : "CONTAINER", }
"name" : "container1",
"getPSLayout" : {
"layout" : "SIMPLEFLEX"
},
"getPSLayoutPos" : {
"grow" : 6,
"layout" : "SIMPLEFLEX"
},
"getPSPanelItems" : [ {
"caption" : "页面标题",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "view_pagecaption",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "view_pagecaption",
"predefinedType" : "VIEW_PAGECAPTION",
"renderMode" : "HEADING1",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"hAlignSelf" : "LEFT",
"heightMode" : "FULL",
"layout" : "SIMPLEFLEX",
"widthMode" : "FULL"
},
"hidden" : false,
"showCaption" : false
} ]
}, {
"caption" : "面板容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container2",
"getPSLayout" : {
"layout" : "SIMPLEFLEX"
},
"getPSLayoutPos" : {
"grow" : 3,
"layout" : "SIMPLEFLEX"
}
}, {
"caption" : "容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container_2",
"getPSLayout" : {
"layout" : "SIMPLEFLEX"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "SIMPLEFLEX"
},
"getPSPanelItems" : [ {
"caption" : "TOOLBAR",
"itemStyle" : "DEFAULT",
"itemType" : "CTRLPOS",
"name" : "toolbar",
"getPSLayoutPos" : {
"grow" : -1,
"hAlignSelf" : "RIGHT",
"heightMode" : "FULL",
"layout" : "SIMPLEFLEX"
},
"showCaption" : true
} ]
} ]
}, { }, {
"caption" : "容器", "refMode" : "MSTAG:30",
"contentHeight" : 100.0, "getRefPSAppView" : {
"height" : 100.0, "modelref" : true,
"itemStyle" : "DEFAULT", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState30EditView2.json",
"itemType" : "CONTAINER", "viewType" : "DEEDITVIEW2"
"name" : "container4", }
"getPSLayout" : {
"layout" : "FLEX"
},
"getPSLayoutPos" : {
"grow" : -1,
"height" : 100,
"heightMode" : "PERCENTAGE",
"layout" : "FLEX"
},
"getPSPanelItems" : [ {
"caption" : "SEARCHFORM",
"contentHeight" : 80.0,
"height" : 80.0,
"itemStyle" : "DEFAULT",
"itemType" : "CTRLPOS",
"name" : "searchform",
"getPSLayoutPos" : {
"grow" : -1,
"height" : 80,
"heightMode" : "PX",
"layout" : "FLEX"
},
"showCaption" : true
}, {
"caption" : "GRID",
"contentHeight" : 100.0,
"height" : 100.0,
"itemStyle" : "DEFAULT",
"itemType" : "CTRLPOS",
"name" : "grid",
"getPSLayoutPos" : {
"grow" : -1,
"height" : 100,
"heightMode" : "FULL",
"layout" : "FLEX"
},
"showCaption" : true
} ]
} ]
} ],
"layoutBodyOnly" : false,
"layoutPanel" : true,
"useDefaultLayout" : false,
"viewProxyMode" : true,
"modelid" : "C38D828B-2788-4ED7-B1B1-A27E4475FAF6",
"modeltype" : "PSSYSVIEWLAYOUTPANEL",
"getPSAppViewEngines" : [ {
"engineCat" : "VIEW",
"engineType" : "GridView",
"name" : "engine",
"getPSUIEngineParams" : [ {
"appViewLogicName" : "opendata",
"name" : "OPENDATA",
"paramType" : "LOGIC"
}, { }, {
"appViewLogicName" : "newdata", "refMode" : "MSTAG:40",
"name" : "NEWDATA", "getRefPSAppView" : {
"paramType" : "LOGIC" "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState40EditView2.json",
"viewType" : "DEEDITVIEW2"
}
} ],
"getPSAppUILogicRefViews" : [ {
"refMode" : "MSTAG:10",
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState10EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, { }, {
"ctrlName" : "grid", "refMode" : "MSTAG:30",
"name" : "GRID", "getRefPSAppView" : {
"paramType" : "CTRL" "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState30EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, { }, {
"ctrlName" : "searchform", "refMode" : "MSTAG:40",
"name" : "SEARCHFORM", "getRefPSAppView" : {
"paramType" : "CTRL" "modelref" : true,
} ] "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState40EditView2.json",
} ], "viewType" : "DEEDITVIEW2"
"getPSAppViewLogics" : [ { }
"eventArg" : "deuiaction1", } ],
"eventNames" : "CLICK", "viewLogicType" : "APP_OPENDATA",
"logicTrigger" : "CTRLEVENT", "editMode" : true
"logicType" : "APPVIEWUIACTION", }
"name" : "toolbar_deuiaction1_click", } ],
"getPSAppViewUIAction" : { "getPSAppViewRefs" : [ {
"name" : "EDITDATA:MSTAG:10",
"realTitle" : "订单编辑视图(未提交)",
"getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.STATE10EDITVIEW2"
},
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState10EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"name" : "EDITDATA:MSTAG:30",
"realTitle" : "订单编辑视图(已通过)",
"getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.STATE30EDITVIEW2"
},
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState30EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"name" : "EDITDATA:MSTAG:40",
"realTitle" : "订单编辑视图(未通过)",
"getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.STATE40EDITVIEW2"
},
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState40EditView2.json",
"viewType" : "DEEDITVIEW2"
}
} ],
"getPSAppViewUIActions" : [ {
"name" : "toolbar_deuiaction1",
"getPSUIAction" : {
"getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_deuiaction1" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}, },
"getPSViewCtrlName" : "toolbar" "modelref" : true,
}, { "id" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click@IBIZOrder"
"logicTrigger" : "CUSTOM", },
"logicType" : "SYSUILOGIC", "uIActionTarget" : "SINGLEDATA",
"name" : "newdata", "xDataControlName" : "grid"
"getPSAppUILogic" : { } ],
"actionAfterWizard" : "DEFAULT", "getPSControls" : [ {
"logicType" : "PREDEFINED", "aggMode" : "NONE",
"name" : "新建数据", "codeName" : "Main",
"viewLogicType" : "APP_NEWDATA", "columnEnableLink" : 2,
"batchAddOnly" : false, "controlType" : "GRID",
"enableBatchAdd" : false, "dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSGRIDS/Main.json",
"enableWizardAdd" : false "getFetchPSControlAction" : {
} "modelref" : true,
}, { "id" : "fetch"
},
"groupMode" : "NONE",
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"logicName" : "主表格",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSAppViewLogics" : [ {
"logicTrigger" : "CUSTOM", "logicTrigger" : "CUSTOM",
"logicType" : "SYSUILOGIC", "logicType" : "APPVIEWUIACTION",
"name" : "opendata", "name" : "grid_updatedate_click",
"getPSAppUILogic" : { "getPSAppViewUIAction" : {
"logicType" : "PREDEFINED",
"name" : "打开数据",
"getOpenDataPSAppViews" : [ {
"refMode" : "MSTAG:10",
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState10EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"refMode" : "MSTAG:30",
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState30EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"refMode" : "MSTAG:40",
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState40EditView2.json",
"viewType" : "DEEDITVIEW2"
}
} ],
"getPSAppUILogicRefViews" : [ {
"refMode" : "MSTAG:10",
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState10EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"refMode" : "MSTAG:30",
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState30EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"refMode" : "MSTAG:40",
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState40EditView2.json",
"viewType" : "DEEDITVIEW2"
}
} ],
"viewLogicType" : "APP_OPENDATA",
"editMode" : true
}
} ],
"getPSAppViewRefs" : [ {
"name" : "EDITDATA:MSTAG:10",
"realTitle" : "订单编辑视图(未提交)",
"getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.STATE10EDITVIEW2"
},
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState10EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"name" : "EDITDATA:MSTAG:30",
"realTitle" : "订单编辑视图(已通过)",
"getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.STATE30EDITVIEW2"
},
"getRefPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState30EditView2.json",
"viewType" : "DEEDITVIEW2"
}
}, {
"name" : "EDITDATA:MSTAG:40",
"realTitle" : "订单编辑视图(未通过)",
"getRealTitlePSLanguageRes" : {
"lanResTag" : "PAGE.TITLE.IBIZORDER.STATE40EDITVIEW2"
},
"getRefPSAppView" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderState40EditView2.json", "id" : "表格界面_编辑操作"
"viewType" : "DEEDITVIEW2"
} }
} ], } ],
"getPSAppViewUIActions" : [ { "getPSAppViewUIActions" : [ {
"name" : "toolbar_deuiaction1", "name" : "表格界面_编辑操作",
"getPSUIAction" : { "getPSUIAction" : {
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"modelref" : true, "modelref" : true,
"id" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click@IBIZOrder" "id" : "Edit"
}, },
"uIActionTarget" : "SINGLEDATA", "uIActionTarget" : "SINGLEKEY",
"xDataControlName" : "grid" "xDataControlName" : "grid"
} ], } ],
"getPSControls" : [ { "getPSControlHandler" : {
"aggMode" : "NONE", "getPSHandlerActions" : [ {
"codeName" : "Main", "actionName" : "Get",
"columnEnableLink" : 2, "actionType" : "DEACTION",
"controlType" : "GRID", "dataAccessAction" : "READ",
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSGRIDS/Main.json", "name" : "load",
"getFetchPSControlAction" : { "getPSAppDEMethod" : {
"modelref" : true,
"id" : "fetch"
},
"groupMode" : "NONE",
"hookEventNames" : [ "ROWDBLCLICK", "SELECTIONCHANGE", "REMOVE", "LOAD", "BEFORELOAD" ],
"logicName" : "主表格",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSAppViewLogics" : [ {
"logicTrigger" : "CUSTOM",
"logicType" : "APPVIEWUIACTION",
"name" : "grid_updatedate_click",
"getPSAppViewUIAction" : {
"modelref" : true,
"id" : "表格界面_编辑操作"
}
} ],
"getPSAppViewUIActions" : [ {
"name" : "表格界面_编辑操作",
"getPSUIAction" : {
"modelref" : true, "modelref" : true,
"id" : "Edit" "id" : "Get"
}, },
"uIActionTarget" : "SINGLEKEY", "getPSAppDataEntity" : {
"xDataControlName" : "grid"
} ],
"getPSControlHandler" : {
"getPSHandlerActions" : [ {
"actionName" : "Get",
"actionType" : "DEACTION",
"dataAccessAction" : "READ",
"name" : "load",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "Get"
},
"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" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, {
"actionName" : "GetDraft",
"actionType" : "DEACTION",
"dataAccessAction" : "CREATE",
"name" : "loaddraft",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "GetDraft"
},
"getPSAppDataEntity" : {
"modelref" : true,
"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, "modelref" : true,
"id" : "engine" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
} }
} ],
"getPSControlParam" : {
"autoLoad" : true,
"showBusyIndicator" : true,
"id" : "GRID"
},
"getPSDEDataImport" : {
"modelref" : true,
"id" : "Import"
},
"getPSDEGridColumns" : [ {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.ORDERUID"
},
"caption" : "订单编号",
"codeName" : "orderuid",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "orderuid",
"excelCaption" : "订单编号",
"name" : "orderuid",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERUID",
"codeName" : "OrderUID"
},
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, { }, {
"align" : "LEFT", "actionName" : "Create",
"cLConvertMode" : "NONE", "actionType" : "DEACTION",
"getCapPSLanguageRes" : { "dataAccessAction" : "CREATE",
"lanResTag" : "DEF.LNAME.IBIZORDERNAME" "name" : "create",
}, "getPSAppDEMethod" : {
"caption" : "订单名称", "modelref" : true,
"codeName" : "IBIZordername", "id" : "Create"
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizordername",
"excelCaption" : "订单名称",
"name" : "IBIZordername",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
}, },
"width" : 150, "getPSAppDataEntity" : {
"widthUnit" : "PX", "modelref" : true,
"enableSort" : true "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, { }, {
"align" : "LEFT", "actionName" : "Update",
"cLConvertMode" : "FRONT", "actionType" : "DEACTION",
"getCapPSLanguageRes" : { "dataAccessAction" : "UPDATE",
"lanResTag" : "DEF.LNAME.ORDERSTATE" "name" : "update",
}, "getPSAppDEMethod" : {
"caption" : "订单状态",
"codeName" : "orderstate",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "orderstate",
"excelCaption" : "订单状态",
"name" : "orderstate",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/ORDERSTATE.json" "id" : "Update"
},
"getPSAppDEField" : {
"name" : "ORDERSTATE",
"codeName" : "OrderState"
}, },
"width" : 150, "getPSAppDataEntity" : {
"widthUnit" : "PX", "modelref" : true,
"enableSort" : true "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, { }, {
"align" : "LEFT", "actionName" : "Remove",
"cLConvertMode" : "FRONT", "actionType" : "DEACTION",
"getCapPSLanguageRes" : { "dataAccessAction" : "DELETE",
"lanResTag" : "DEF.LNAME.ORDERTYPE" "name" : "remove",
}, "getPSAppDEMethod" : {
"caption" : "订单类型",
"codeName" : "ordertype",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ordertype",
"excelCaption" : "订单类型",
"name" : "ordertype",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/ORDERTYPE.json" "id" : "Remove"
},
"getPSAppDEField" : {
"name" : "ORDERTYPE",
"codeName" : "OrderType"
}, },
"width" : 150, "getPSAppDataEntity" : {
"widthUnit" : "PX", "modelref" : true,
"enableSort" : true "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
}
}, { }, {
"align" : "LEFT", "actionName" : "GetDraft",
"cLConvertMode" : "NONE", "actionType" : "DEACTION",
"getCapPSLanguageRes" : { "dataAccessAction" : "CREATE",
"lanResTag" : "DEF.LNAME.ORDERTIME" "name" : "loaddraft",
}, "getPSAppDEMethod" : {
"caption" : "订单时间", "modelref" : true,
"codeName" : "ordertime", "id" : "GetDraft"
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ordertime",
"excelCaption" : "订单时间",
"name" : "ordertime",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
}, },
"valueFormat" : "YYYY-MM-DD", "getPSAppDataEntity" : {
"width" : 150, "modelref" : true,
"widthUnit" : "PX", "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
"enableSort" : true }
}, { }, {
"align" : "LEFT", "actionType" : "DEDATASET",
"cLConvertMode" : "NONE", "name" : "fetch",
"getCapPSLanguageRes" : { "getPSAppDEMethod" : {
"lanResTag" : "DEF.LNAME.UPDATEDATE" "modelref" : true,
"id" : "FetchDefault"
}, },
"caption" : "更新时间", "getPSAppDataEntity" : {
"codeName" : "updatedate", "modelref" : true,
"columnType" : "DEFGRIDCOLUMN", "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
"dataItemName" : "updatedate", }
"excelCaption" : "更新时间", } ],
"name" : "updatedate", "userDRAction" : "READ",
"noPrivDisplayMode" : 1, "enableDEFieldPrivilege" : false,
"getPSAppDEField" : { "id" : "数据表格处理器"
"name" : "UPDATEDATE", },
"codeName" : "UpdateDate" "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"
},
"caption" : "订单编号",
"codeName" : "orderuid",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "orderuid",
"excelCaption" : "订单编号",
"name" : "orderuid",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERUID",
"codeName" : "OrderUID"
},
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.IBIZORDERNAME"
},
"caption" : "订单名称",
"codeName" : "IBIZordername",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizordername",
"excelCaption" : "订单名称",
"name" : "IBIZordername",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName"
},
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.ORDERSTATE"
},
"caption" : "订单状态",
"codeName" : "orderstate",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "orderstate",
"excelCaption" : "订单状态",
"name" : "orderstate",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/ORDERSTATE.json"
},
"getPSAppDEField" : {
"name" : "ORDERSTATE",
"codeName" : "OrderState"
},
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "FRONT",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.ORDERTYPE"
},
"caption" : "订单类型",
"codeName" : "ordertype",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ordertype",
"excelCaption" : "订单类型",
"name" : "ordertype",
"noPrivDisplayMode" : 1,
"getPSAppCodeList" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCODELISTS/ORDERTYPE.json"
},
"getPSAppDEField" : {
"name" : "ORDERTYPE",
"codeName" : "OrderType"
},
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.ORDERTIME"
},
"caption" : "订单时间",
"codeName" : "ordertime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ordertime",
"excelCaption" : "订单时间",
"name" : "ordertime",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "ORDERTIME",
"codeName" : "OrderTime"
},
"valueFormat" : "YYYY-MM-DD",
"width" : 150,
"widthUnit" : "PX",
"enableSort" : true
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.UPDATEDATE"
},
"caption" : "更新时间",
"codeName" : "updatedate",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "updatedate",
"excelCaption" : "更新时间",
"name" : "updatedate",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
},
"getPSDEUIAction" : {
"actionTarget" : "SINGLEKEY",
"getCapPSLanguageRes" : {
"lanResTag" : "TBB.TEXT.*.EDIT"
}, },
"getPSDEUIAction" : { "caption" : "编辑",
"actionTarget" : "SINGLEKEY", "codeName" : "Edit",
"getCapPSLanguageRes" : { "fullCodeName" : "Edit",
"lanResTag" : "TBB.TEXT.*.EDIT" "name" : "表格界面_编辑操作",
}, "getPSSysImage" : {
"caption" : "编辑", "glyph" : "xf044@FontAwesome",
"codeName" : "Edit", "cssClass" : "fa fa-edit"
"fullCodeName" : "Edit",
"name" : "表格界面_编辑操作",
"getPSSysImage" : {
"glyph" : "xf044@FontAwesome",
"cssClass" : "fa fa-edit"
},
"predefinedType" : "GRIDVIEW_EDITACTION",
"timeout" : 60000,
"getTooltipPSLanguageRes" : {
"lanResTag" : "TBB.TOOLTIP.*.EDIT"
},
"uIActionMode" : "SYS",
"uIActionTag" : "Edit",
"uIActionType" : "DEUIACTION"
}, },
"valueFormat" : "YYYY-MM-DD HH:mm:ss", "predefinedType" : "GRIDVIEW_EDITACTION",
"width" : 150, "timeout" : 60000,
"widthUnit" : "PX", "getTooltipPSLanguageRes" : {
"enableSort" : true "lanResTag" : "TBB.TOOLTIP.*.EDIT"
}, {
"align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.MEMO"
}, },
"caption" : "备注", "uIActionMode" : "SYS",
"codeName" : "memo", "uIActionTag" : "Edit",
"columnType" : "DEFGRIDCOLUMN", "uIActionType" : "DEUIACTION"
"dataItemName" : "memo", },
"excelCaption" : "备注", "valueFormat" : "YYYY-MM-DD HH:mm:ss",
"name" : "memo", "width" : 150,
"noPrivDisplayMode" : 1, "widthUnit" : "PX",
"getPSAppDEField" : { "enableSort" : true
"name" : "MEMO", }, {
"codeName" : "Memo" "align" : "LEFT",
"cLConvertMode" : "NONE",
"getCapPSLanguageRes" : {
"lanResTag" : "DEF.LNAME.MEMO"
},
"caption" : "备注",
"codeName" : "memo",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "memo",
"excelCaption" : "备注",
"name" : "memo",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : {
"name" : "MEMO",
"codeName" : "Memo"
},
"width" : 1,
"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"
}
}, {
"format" : "YYYY-MM-DD HH:mm:ss",
"dataType" : 5,
"name" : "updatedate",
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
}
}, {
"dataType" : 25,
"name" : "memo",
"getPSAppDEField" : {
"name" : "MEMO",
"codeName" : "Memo"
}
}, {
"dataType" : 25,
"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,
"name" : "srfkey",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
},
"getPSEditor" : {
"editorType" : "HIDDEN",
"name" : "srfkey"
},
"allowEmpty" : true
} ],
"pagingSize" : 10,
"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",
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSSEARCHFORMS/Default.json",
"hookEventNames" : [ "SEARCH", "LOAD", "SAVE" ],
"logicName" : "默认搜索表单",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSControlHandler" : {
"getPSHandlerActions" : [ {
"actionType" : "FILTERACTION",
"name" : "load",
"getPSAppDEMethod" : {
"modelref" : true,
"id" : "FilterGet"
}, },
"width" : 1, "getPSAppDataEntity" : {
"widthUnit" : "STAR", "modelref" : true,
"enableSort" : true "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
} ],
"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"
}
}, {
"format" : "YYYY-MM-DD HH:mm:ss",
"dataType" : 5,
"name" : "updatedate",
"getPSAppDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
}
}, {
"dataType" : 25,
"name" : "memo",
"getPSAppDEField" : {
"name" : "MEMO",
"codeName" : "Memo"
}
}, {
"dataType" : 25,
"name" : "ibizorderid",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
}
}, {
"dataType" : 25,
"name" : "srfkey",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
} }
}, { }, {
"dataType" : 25, "actionType" : "FILTERACTION",
"name" : "srfdataaccaction", "name" : "loaddraft",
"getPSAppDEField" : { "getPSAppDEMethod" : {
"name" : "IBIZORDERID", "modelref" : true,
"codeName" : "IBIZOrderId" "id" : "FilterGetDraft"
}, },
"dataAccessAction" : true "getPSAppDataEntity" : {
}, { "modelref" : true,
"dataType" : 25, "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
"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, "actionType" : "FILTERACTION",
"name" : "srfmstag" "name" : "search",
} ],
"getPSDEGridEditItems" : [ {
"caption" : "订单标识",
"codeName" : "srfkey",
"enableCond" : 3,
"ignoreInput" : 0,
"name" : "srfkey",
"getPSAppDEField" : {
"name" : "IBIZORDERID",
"codeName" : "IBIZOrderId"
},
"getPSEditor" : {
"editorType" : "HIDDEN",
"name" : "srfkey"
},
"allowEmpty" : true
} ],
"pagingSize" : 10,
"getRemovePSControlAction" : {
"actionName" : "Remove",
"actionType" : "DEACTION",
"dataAccessAction" : "DELETE",
"name" : "remove",
"getPSAppDEMethod" : { "getPSAppDEMethod" : {
"modelref" : true, "modelref" : true,
"id" : "Remove" "id" : "FilterSearch"
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "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",
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSSEARCHFORMS/Default.json",
"hookEventNames" : [ "SEARCH", "LOAD", "SAVE" ],
"logicName" : "默认搜索表单",
"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" : { "enableDEFieldPrivilege" : false,
"autoLoad" : true, "id" : "搜索表单处理器"
"showBusyIndicator" : true, },
"id" : "SEARCHFORM" "getPSControlLogics" : [ {
}, "eventNames" : "SEARCH;LOAD;SAVE",
"getPSDEFormItems" : [ { "logicTag" : "searchform",
"id" : "n_ibizordername_like", "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",
"name" : "formpage1",
"getPSDEFormDetails" : [ {
"getCapPSLanguageRes" : {
"lanResTag" : "CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE"
},
"caption" : "订单名称(%)",
"codeName" : "n_ibizordername_like",
"dataType" : 25, "dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
"name" : "n_ibizordername_like",
"noPrivDisplayMode" : 1,
"getPSAppDEField" : { "getPSAppDEField" : {
"name" : "IBIZORDERNAME", "name" : "IBIZORDERNAME",
"codeName" : "IBIZOrderName" "codeName" : "IBIZOrderName"
} },
} ], "getPSEditor" : {
"getPSDEFormPages" : [ { "editorType" : "TEXTBOX",
"caption" : "订单名称", "editorWidth" : 100.0,
"codeName" : "formpage1", "name" : "n_ibizordername_like"
"detailStyle" : "DEFAULT", },
"detailType" : "FORMPAGE", "getPSLayoutPos" : {
"name" : "formpage1", "colMD" : 24,
"getPSDEFormDetails" : [ {
"getCapPSLanguageRes" : {
"lanResTag" : "CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE"
},
"caption" : "订单名称(%)",
"codeName" : "n_ibizordername_like",
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
"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"
},
"allowEmpty" : true,
"showCaption" : true
} ],
"getPSLayout" : {
"columnCount" : 24,
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"infoGroupMode" : false "allowEmpty" : true,
"showCaption" : true
} ], } ],
"getPSLayout" : { "getPSLayout" : {
"columnCount" : 24, "columnCount" : 24,
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"searchButtonStyle" : "DEFAULT", "infoGroupMode" : false
"tabHeaderPos" : "TOP", } ],
"enableAdvanceSearch" : false, "getPSLayout" : {
"enableAutoSearch" : false, "columnCount" : 24,
"enableFilterSave" : false, "layout" : "TABLE_24COL"
"noTabHeader" : true, },
"name" : "searchform", "searchButtonStyle" : "DEFAULT",
"modelid" : "1b5557a48588cf3b6a07b7bd6acedd53", "tabHeaderPos" : "TOP",
"modeltype" : "PSDEFORM_SEARCHFORM" "enableAdvanceSearch" : false,
}, { "enableAutoSearch" : false,
"codeName" : "Usr2GridViewtoolbar", "enableFilterSave" : false,
"controlType" : "TOOLBAR", "noTabHeader" : true,
"hookEventNames" : [ "CLICK" ], "name" : "searchform",
"logicName" : "测试界面逻辑", "modelid" : "1b5557a48588cf3b6a07b7bd6acedd53",
"name" : "toolbar", "modeltype" : "PSDEFORM_SEARCHFORM"
"getPSAppDataEntity" : { }, {
"codeName" : "Usr2GridViewtoolbar",
"controlType" : "TOOLBAR",
"hookEventNames" : [ "CLICK" ],
"logicName" : "测试界面逻辑",
"name" : "toolbar",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSControlLogics" : [ {
"eventArg" : "deuiaction1",
"eventNames" : "CLICK",
"logicTag" : "toolbar",
"logicType" : "APPVIEWLOGIC",
"name" : "toolbar_deuiaction1_click",
"getPSAppViewLogic" : {
"modelref" : true, "modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" "id" : "toolbar_deuiaction1_click"
}, }
"getPSControlLogics" : [ { } ],
"eventArg" : "deuiaction1", "getPSControlParam" : {
"eventNames" : "CLICK", "id" : "TOOLBAR"
"logicTag" : "toolbar", },
"logicType" : "APPVIEWLOGIC", "getPSDEToolbarItems" : [ {
"name" : "toolbar_deuiaction1_click", "caption" : "加载",
"getPSAppViewLogic" : { "groupExtractMode" : "ITEM",
"modelref" : true, "itemType" : "DEUIACTION",
"id" : "toolbar_deuiaction1_click" "name" : "deuiaction1",
} "noPrivDisplayMode" : 2,
} ], "getPSAppViewUIAction" : {
"getPSControlParam" : { "modelref" : true,
"id" : "TOOLBAR" "id" : "toolbar_deuiaction1"
}, },
"getPSDEToolbarItems" : [ { "getPSUIAction" : {
"actionTarget" : "SINGLEDATA",
"caption" : "加载", "caption" : "加载",
"groupExtractMode" : "ITEM", "codeName" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click",
"itemType" : "DEUIACTION", "frontProcessType" : "OTHER",
"name" : "deuiaction1", "fullCodeName" : "IBIZOrder_toolbar_Usr2GridViewtoolbar_deuiaction1_click",
"noPrivDisplayMode" : 2, "name" : "加载",
"getPSAppViewUIAction" : { "getPSAppDEUILogic" : {
"modelref" : true, "modelref" : true,
"id" : "toolbar_deuiaction1" "id" : "GridViewLoad"
}, },
"getPSUIAction" : { "getPSAppDataEntity" : {
"actionTarget" : "SINGLEDATA", "modelref" : true,
"caption" : "加载", "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
"codeName" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click",
"frontProcessType" : "OTHER",
"fullCodeName" : "IBIZOrder_toolbar_Usr2GridViewtoolbar_deuiaction1_click",
"name" : "加载",
"getPSAppDEUILogic" : {
"modelref" : true,
"id" : "GridViewLoad"
},
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"timeout" : 60000,
"uIActionMode" : "FRONT",
"uIActionTag" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click",
"uIActionType" : "DEUIACTION",
"uILogicAttachMode" : "REPLACE",
"uILogicType" : "DELOGIC",
"id" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click@IBIZOrder"
}, },
"tooltip" : "加载", "timeout" : 60000,
"showCaption" : true, "uIActionMode" : "FRONT",
"showIcon" : true "uIActionTag" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click",
} ], "uIActionType" : "DEUIACTION",
"modelid" : "9FF425B4-909C-4122-AA12-63D6C857C2A1", "uILogicAttachMode" : "REPLACE",
"modeltype" : "PSDETOOLBAR" "uILogicType" : "DELOGIC",
}, { "id" : "toolbar_Usr2GridViewtoolbar_deuiaction1_click@IBIZOrder"
"controlType" : "SEARCHBAR", },
"dynaModelFilePath" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder/PSSEARCHBARS/.json", "tooltip" : "加载",
"getPSAppDataEntity" : { "showCaption" : true,
"modelref" : true, "showIcon" : true
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json" } ],
"modelid" : "9FF425B4-909C-4122-AA12-63D6C857C2A1",
"modeltype" : "PSDETOOLBAR"
} ],
"getPSDEViewCodeName" : "Usr2GridView",
"getPSDEViewId" : "27352A37-855D-4D0E-8F91-9D50AFCF2599",
"getPSViewLayoutPanel" : {
"getAllPSPanelFields" : [ {
"id" : "view_pagecaption"
} ],
"codeName" : "Layoutpanel",
"controlType" : "VIEWLAYOUTPANEL",
"layoutMode" : "TABLE_24COL",
"logicName" : "表格视图",
"name" : "layoutpanel",
"getPSAppDataEntity" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZOrder.json"
},
"getPSControlParam" : { },
"getPSLayout" : {
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getRootPSPanelItems" : [ {
"caption" : "滚动条容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container_scroll1",
"getPSLayout" : {
"layout" : "BORDER"
}, },
"getPSControlParam" : { "getPSLayoutPos" : {
"id" : "searchbar" "colMD" : 24,
"layout" : "TABLE_24COL"
}, },
"quickGroupCount" : -1, "getPSPanelItems" : [ {
"quickSearchMode" : 1, "caption" : "面板容器",
"quickSearchWidth" : 0, "itemStyle" : "DEFAULT",
"enableFilter" : false, "itemType" : "CONTAINER",
"enableGroup" : false, "name" : "container_scroll_main1",
"enableQuickSearch" : true, "getPSLayout" : {
"mobileSearchBar" : false, "layout" : "BORDER"
"name" : "searchbar" },
} ] "getPSLayoutPos" : {
"layout" : "BORDER",
"layoutPos" : "CENTER"
},
"getPSPanelItems" : [ {
"caption" : "表格",
"itemStyle" : "DEFAULT",
"itemType" : "CTRLPOS",
"name" : "grid",
"getPSLayoutPos" : {
"heightMode" : "FULL",
"layout" : "BORDER",
"layoutPos" : "CENTER",
"widthMode" : "FULL"
},
"showCaption" : true
} ],
"showCaption" : true
}, {
"caption" : "面板容器",
"contentHeight" : 120.0,
"height" : 120.0,
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container_scroll_header1",
"getPSLayout" : {
"layout" : "BORDER"
},
"getPSLayoutPos" : {
"height" : 120,
"heightMode" : "PX",
"layout" : "BORDER",
"layoutPos" : "NORTH"
},
"getPSPanelItems" : [ {
"caption" : "栅格容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container_grid1",
"getPSLayout" : {
"layout" : "SIMPLEFLEX"
},
"getPSLayoutPos" : {
"layout" : "BORDER",
"layoutPos" : "CENTER"
},
"getPSPanelItems" : [ {
"caption" : "面板容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container3",
"getPSLayout" : {
"layout" : "SIMPLEFLEX"
},
"getPSLayoutPos" : {
"grow" : -1,
"layout" : "SIMPLEFLEX"
},
"getPSPanelItems" : [ {
"caption" : "工具栏",
"itemStyle" : "DEFAULT",
"itemType" : "CTRLPOS",
"name" : "toolbar",
"getPSLayoutPos" : {
"grow" : -1,
"hAlignSelf" : "RIGHT",
"layout" : "SIMPLEFLEX",
"vAlignSelf" : "MIDDLE"
},
"showCaption" : true
} ]
}, {
"caption" : "面板容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container1",
"getPSLayout" : {
"layout" : "SIMPLEFLEX"
},
"getPSLayoutPos" : {
"grow" : 6,
"layout" : "SIMPLEFLEX"
},
"getPSPanelItems" : [ {
"caption" : "页面标题",
"itemStyle" : "DEFAULT",
"itemType" : "FIELD",
"name" : "view_pagecaption",
"getPSEditor" : {
"editorType" : "SPAN",
"name" : "view_pagecaption",
"predefinedType" : "VIEW_PAGECAPTION",
"renderMode" : "HEADING1",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"grow" : -1,
"hAlignSelf" : "LEFT",
"layout" : "SIMPLEFLEX",
"vAlignSelf" : "MIDDLE"
},
"hidden" : false,
"showCaption" : false
} ]
}, {
"caption" : "面板容器",
"itemStyle" : "DEFAULT",
"itemType" : "CONTAINER",
"name" : "container2",
"getPSLayout" : {
"layout" : "SIMPLEFLEX"
},
"getPSLayoutPos" : {
"grow" : 3,
"layout" : "SIMPLEFLEX"
},
"getPSPanelItems" : [ {
"caption" : "QUICKSEARCHBAR",
"itemStyle" : "DEFAULT",
"itemType" : "CTRLPOS",
"name" : "quicksearchbar",
"getPSLayoutPos" : {
"grow" : -1,
"hAlignSelf" : "RIGHT",
"layout" : "SIMPLEFLEX",
"vAlignSelf" : "MIDDLE"
},
"showCaption" : true
} ]
} ]
}, {
"caption" : "搜索表单",
"contentHeight" : 60.0,
"itemStyle" : "DEFAULT",
"itemType" : "CTRLPOS",
"name" : "searchform",
"getPSLayoutPos" : {
"height" : 60,
"heightMode" : "PX",
"layout" : "BORDER",
"layoutPos" : "CENTER",
"widthMode" : "FULL"
},
"showCaption" : true
} ],
"showCaption" : true
} ]
} ],
"layoutBodyOnly" : true,
"layoutPanel" : true,
"useDefaultLayout" : false,
"modelid" : "EFC8D377-181C-4014-ACF8-9E44CDF040DB",
"modeltype" : "PSSYSVIEWLAYOUTPANEL"
}, },
"title" : "订单表格视图(测试视图布局面板)", "title" : "订单表格视图(测试视图布局面板)",
"viewStyle" : "DEFAULT", "viewStyle" : "DEFAULT",
......
...@@ -340,7 +340,7 @@ ...@@ -340,7 +340,7 @@
<!--输出实体[IBIZORDER]数据结构 --> <!--输出实体[IBIZORDER]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-435-14"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-439-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-435-8" runOnChange="true"> <changeSet author="a_LAB01_df847bdfd" id="view-ibizorder-439-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 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册