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

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

上级 f7c84b8f
......@@ -330,6 +330,7 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -891,6 +892,7 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -902,6 +904,7 @@ export const viewstate: any = {
viewaction: '',
viewdatachange: false,
refviews: [
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
......@@ -953,6 +956,7 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -1206,6 +1210,7 @@ export const viewstate: any = {
viewaction: '',
viewdatachange: false,
refviews: [
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
......@@ -1663,6 +1668,7 @@ export const viewstate: any = {
viewaction: '',
viewdatachange: false,
refviews: [
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
......@@ -2233,6 +2239,7 @@ export const viewstate: any = {
viewaction: '',
viewdatachange: false,
refviews: [
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
......@@ -2521,6 +2528,7 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -2645,6 +2653,7 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'b9bb43793e46dd754a82ae6928e5557d',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......
......@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCustomView_layout' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKGroupByCodelistListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCustomView_layout' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKGroupByCodelistListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1429,7 +1429,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1499,7 +1499,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1607,7 +1607,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1815,7 +1815,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1395,7 +1395,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1465,7 +1465,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1573,7 +1573,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1781,7 +1781,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1499,7 +1499,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1569,7 +1569,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1677,7 +1677,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1885,7 +1885,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -369,7 +369,7 @@ export default class GuideBase extends Vue implements ControlInterface {
* @type {Boolean}
* @memberof GuideBase
*/
public isShowStepBar: Boolean = true ;
public isShowStepBar: Boolean = false ;
/**
* 获取多项数据
......
......@@ -46,7 +46,7 @@
<span class="quick-toolbar">
<div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600">
<i-button v-show="usrlistview_pluginlist_quicktoolbarModels.deuiaction1.visabled" :disabled="usrlistview_pluginlist_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>
<span class='caption'>{{'新建'}}</span>
</i-button>
......@@ -61,14 +61,14 @@
<span class="batch-toolbar">
<div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600">
<i-button v-show="usrlistview_pluginlist_batchtoolbarModels.deuiaction1.visabled" :disabled="usrlistview_pluginlist_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>
<span class='caption'>{{'编辑'}}</span>
</i-button>
<div slot='content'>{{$t('TBB.TEXT.*.EDIT', '编辑')}}</div>
</tooltip>
<tooltip :transfer="true" :max-width="600">
<i-button v-show="usrlistview_pluginlist_batchtoolbarModels.deuiaction2.visabled" :disabled="usrlistview_pluginlist_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>
<span class='caption'>{{'删除'}}</span>
</i-button>
......@@ -382,7 +382,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsrListView_pluginBase
* @memberof IBIZBOOKUsr4ListView_layoutBase
*/
public New(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
const _this: any = this;
......@@ -402,7 +402,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsrListView_pluginBase
* @memberof IBIZBOOKUsr4ListView_layoutBase
*/
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) {
......@@ -428,7 +428,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsrListView_pluginBase
* @memberof IBIZBOOKUsr4ListView_layoutBase
*/
public Remove(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
const _this: any = this;
......@@ -624,9 +624,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* 工具栏模型
*
* @type {*}
* @memberof IBIZBOOKUsrListView_plugin
* @memberof IBIZBOOKUsr4ListView_layout
*/
public usrlistview_pluginlist_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: '' } },
};
......@@ -636,9 +636,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* 工具栏模型
*
* @type {*}
* @memberof IBIZBOOKUsrListView_plugin
* @memberof IBIZBOOKUsr4ListView_layout
*/
public usrlistview_pluginlist_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' } },
deuiaction2: { name: 'deuiaction2', actiontarget: 'NONE', caption: '删除', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Remove', target: 'MULTIKEY' } },
......@@ -861,7 +861,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
*/
public async load(opt: any = {}): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (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;
}
const arg: any = {...opt};
......@@ -991,7 +991,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (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;
}
if (datas.length === 0) {
......@@ -1096,7 +1096,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (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{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -1104,7 +1104,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZBOOKUsrListView_plugin' + (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{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){
......
......@@ -72,6 +72,11 @@ export default class LnternalFuncListModel {
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{
name:'size',
......
......@@ -1683,7 +1683,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1735,7 +1735,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1806,7 +1806,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1914,7 +1914,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -2128,7 +2128,7 @@ export default class MainBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestLogicCustomView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
<template>
<i-form :model="this.data" class='app-search-form' ref='searchform' style="">
<i-form :model="this.data" class='app-search-form' ref='quicksearchform' style="">
<input style="display:none;"/>
<row>
<i-col span="20" class="form-content">
......@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
* @memberof QUICKSEARCHFORMBase
*/
public formValidateStatus(): boolean {
const form: any = this.$refs.searchform;
const form: any = this.$refs.quicksearchform;
let validatestate: boolean = true;
form.validate((valid: boolean) => {
validatestate = valid ? true : false;
......@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -1314,7 +1314,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerUsr3EditView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerMediaTestEditView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1366,7 +1366,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerUsr3EditView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerMediaTestEditView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1436,7 +1436,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerUsr3EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerMediaTestEditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1544,7 +1544,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerUsr3EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerMediaTestEditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1758,7 +1758,7 @@ export default class AddDataFormBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerUsr3EditView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZCustomerMediaTestEditView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -964,7 +964,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailSGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1123,7 +1123,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1237,7 +1237,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public addBatch(arg: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2132,7 +2132,7 @@ export default class MainBase extends Vue implements ControlInterface {
try {
if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2141,7 +2141,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2217,7 +2217,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -278,20 +278,29 @@ export default class DefaultBase extends Vue implements ControlInterface {
hidden: false,
items: [
{
text: "订单交易明细",
text: "订单交易明细3",
disabled: false,
id: "dritem2",
iconcls: 'fa fa-bomb',
icon: '',
id: "dritem3",
groupCodeName: 'a7c7923d37319b42645a41908d62bae9',
navView: 'ibizorder-detail-grid-view',
localContext:null,
localViewParam:null
},
{
text: "订单交易明细2",
disabled: false,
id: "dritem1",
groupCodeName: 'a7c7923d37319b42645a41908d62bae9',
navView: 'ibizorder-detail-sgrid-view',
localContext:{CONTEXTPARAM1:"%orderstate%"},
localViewParam:{param2:"%orderstate%"}
},
{
text: "订单交易明细2",
text: "订单交易明细",
disabled: false,
id: "dritem1",
id: "dritem2",
iconcls: 'fa fa-bomb',
icon: '',
groupCodeName: 'a7c7923d37319b42645a41908d62bae9',
navView: 'ibizorder-detail-sgrid-view',
localContext:{CONTEXTPARAM1:"%orderstate%"},
......
......@@ -281,15 +281,13 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public items: any[] = [
{
id: 'e3de96606cd87a3561ec172c1da48022',
name: 'e3de96606cd87a3561ec172c1da48022',
text: '订单交易明细',
id: '4eb08200-6f90-404f-bc75-3b76af4f1c9a',
name: '4eb08200-6f90-404f-bc75-3b76af4f1c9a',
text: '订单交易明细3',
disabled: true,
navView: 'ibizorder-detail-sgrid-view',
iconcls: 'fa fa-bomb',
icon: '',
localContext: {CONTEXTPARAM1:"%orderstate%"},
localViewParam: {param2:"%orderstate%"}
navView: 'ibizorder-detail-grid-view',
localContext: null,
localViewParam: null
}
{
id: '68657e27-8101-4848-9b72-0ade93dc4205',
......@@ -300,6 +298,17 @@ export default class DefaultBase extends Vue implements ControlInterface {
localContext: {CONTEXTPARAM1:"%orderstate%"},
localViewParam: {param2:"%orderstate%"}
}
{
id: 'e3de96606cd87a3561ec172c1da48022',
name: 'e3de96606cd87a3561ec172c1da48022',
text: '订单交易明细',
disabled: true,
navView: 'ibizorder-detail-sgrid-view',
iconcls: 'fa fa-bomb',
icon: '',
localContext: {CONTEXTPARAM1:"%orderstate%"},
localViewParam: {param2:"%orderstate%"}
}
];
/**
......
......@@ -321,7 +321,7 @@
"allowEmpty" : true
} ],
"pagingSize" : 10,
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderDetailSGridView/psappviewctrls/grid",
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderDetailGridView/psappviewctrls/grid",
"getRemovePSControlAction" : {
"actionName" : "Remove",
"actionType" : "DEACTION",
......
......@@ -1334,9 +1334,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1357,20 +1375,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1391,7 +1405,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderSEditView2__drbar",
......
......@@ -1334,9 +1334,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1357,20 +1375,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1391,7 +1405,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView2_layout/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderSEditView2_layout__drbar",
......
......@@ -222,9 +222,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -241,20 +255,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -271,7 +281,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3__drtab",
......
......@@ -224,9 +224,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -243,20 +257,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -273,7 +283,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3_layout__drtab",
......
......@@ -222,9 +222,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -241,20 +255,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -271,7 +281,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4__drtab",
......
......@@ -1326,9 +1326,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1345,20 +1359,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1375,7 +1385,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4_layout__drtab",
......
......@@ -1062,9 +1062,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1081,20 +1095,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1111,7 +1121,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView2/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSGridView2__drtab",
......
......@@ -1319,9 +1319,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1342,20 +1360,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1376,7 +1390,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState10EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState10EditView2__drbar",
......
......@@ -1284,9 +1284,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1307,20 +1325,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1341,7 +1355,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState30EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState30EditView2__drbar",
......
......@@ -1319,9 +1319,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1342,20 +1360,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1376,7 +1390,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState40EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState40EditView2__drbar",
......
......@@ -1349,9 +1349,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1372,20 +1390,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1406,7 +1420,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderTestCLEditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderTestCLEditView2__drbar",
......
......@@ -1086,9 +1086,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1109,20 +1127,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1143,7 +1157,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView2_layout/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderSEditView2_layout__drbar",
......@@ -1396,9 +1414,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1415,20 +1447,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1445,7 +1473,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView2/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSGridView2__drtab",
......@@ -1566,9 +1598,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1589,20 +1639,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1623,7 +1669,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderSEditView2__drbar",
......@@ -1697,9 +1747,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1716,20 +1780,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1746,7 +1806,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4__drtab",
......@@ -1864,9 +1928,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1887,20 +1969,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -1921,7 +1999,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState30EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState30EditView2__drbar",
......@@ -1997,9 +2079,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2016,20 +2112,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2046,7 +2138,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3_layout__drtab",
......@@ -2260,9 +2356,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2279,20 +2389,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2309,7 +2415,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4_layout__drtab",
......@@ -2382,9 +2492,23 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2401,20 +2525,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2431,7 +2551,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3__drtab",
......@@ -2607,9 +2731,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2630,20 +2772,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2664,7 +2802,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderTestCLEditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderTestCLEditView2__drbar",
......@@ -2746,9 +2888,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2769,20 +2929,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2803,7 +2959,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState10EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState10EditView2__drbar",
......@@ -2885,9 +3045,27 @@
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2908,20 +3086,16 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ]
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细2",
"counterId" : "DETAILNUM",
"name" : "dritem1",
"caption" : "订单交易明细",
"counterId" : "IBIZorder_v1",
"name" : "dritem2",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailSGridView.json",
......@@ -2942,7 +3116,11 @@
"name" : "param2",
"value" : "orderstate",
"rawValue" : false
} ]
} ],
"getPSSysImage" : {
"glyph" : "xf1e2@FontAwesome",
"cssClass" : "fa fa-bomb"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderState40EditView2/psappviewctrls/drbar",
"uniqueTag" : "IBIZOrderState40EditView2__drbar",
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册