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

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

上级 22dd4d6e
......@@ -256,7 +256,7 @@ export default class IBIZBOOKTabExpViewBase extends Vue {
view: this,
keyPSDEField: 'ibizbook',
majorPSDEField: 'ibizbookname',
isLoadDefault: true,
isLoadDefault: false,
});
}
......
......@@ -331,7 +331,6 @@ export const viewstate: any = {
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'6bc6e690dc5abfc6d89703e4459c785c',
],
},
......@@ -893,7 +892,6 @@ export const viewstate: any = {
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'6bc6e690dc5abfc6d89703e4459c785c',
],
},
......@@ -905,7 +903,6 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -957,7 +954,6 @@ export const viewstate: any = {
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'6bc6e690dc5abfc6d89703e4459c785c',
],
},
......@@ -1211,7 +1207,6 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -1669,7 +1664,6 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -2240,7 +2234,6 @@ export const viewstate: any = {
viewdatachange: false,
refviews: [
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'f083dd992abed44bf15a9930b45c3895',
'6bc6e690dc5abfc6d89703e4459c785c',
],
......@@ -2529,7 +2522,6 @@ export const viewstate: any = {
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'6bc6e690dc5abfc6d89703e4459c785c',
],
},
......@@ -2654,7 +2646,6 @@ export const viewstate: any = {
refviews: [
'f083dd992abed44bf15a9930b45c3895',
'b9bb43793e46dd754a82ae6928e5557d',
'285cdedb2cfbebbb1ba8e5659e49bc7f',
'6bc6e690dc5abfc6d89703e4459c785c',
],
},
......
......@@ -718,7 +718,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -812,7 +812,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return;
}
let _datas:any[] = [];
......@@ -928,7 +928,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -936,7 +936,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){
......
......@@ -70,6 +70,11 @@ export default class Usr4Model {
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{
......
......@@ -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: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderDetailSGridView9" + (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: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderDetailSGridView9' + (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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(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: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -302,7 +302,6 @@ export default class DefaultBase extends Vue implements ControlInterface {
disabled: false,
id: "dritem3",
groupCodeName: 'a7c7923d37319b42645a41908d62bae9',
navView: 'ibizorder-detail-grid-view',
localContext:null,
localViewParam:null
},
......
......@@ -305,7 +305,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
name: '4eb08200-6f90-404f-bc75-3b76af4f1c9a',
text: '订单交易明细3',
disabled: true,
navView: 'ibizorder-detail-grid-view',
navView: '',
localContext: null,
localViewParam: null
}
......
......@@ -794,7 +794,7 @@
"enableQuickSearch" : false,
"enableSearch" : false,
"expandSearchForm" : false,
"loadDefault" : true,
"loadDefault" : false,
"showDataInfoBar" : true,
"modelid" : "32b0dd446250056ce414ba340dda6990",
"modeltype" : "PSAPPDEVIEW"
......
......@@ -1393,19 +1393,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......
......@@ -1393,19 +1393,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......
......@@ -273,19 +273,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3__drtab",
......
......@@ -275,19 +275,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3_layout__drtab",
......
......@@ -273,19 +273,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4__drtab",
......
......@@ -1377,19 +1377,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4_layout__drtab",
......
......@@ -1113,19 +1113,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView2/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSGridView2__drtab",
......
......@@ -1378,19 +1378,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......
......@@ -1343,19 +1343,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......
......@@ -1378,19 +1378,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......
......@@ -1408,19 +1408,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......
......@@ -1145,19 +1145,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......@@ -1465,19 +1454,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSGridView2/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSGridView2__drtab",
......@@ -1657,19 +1635,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......@@ -1798,19 +1765,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4__drtab",
......@@ -1987,19 +1943,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......@@ -2130,19 +2075,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3_layout__drtab",
......@@ -2407,19 +2341,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView4_layout/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView4_layout__drtab",
......@@ -2543,19 +2466,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
}
"name" : "dritem3"
} ],
"rTMOSFilePath" : "pssysapps/Web/psappdeviews/IBIZOrderSEditView3/psappviewctrls/drtab",
"uniqueTag" : "IBIZOrderSEditView3__drtab",
......@@ -2790,19 +2702,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......@@ -2947,19 +2848,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......@@ -3104,19 +2994,8 @@
"cssClass" : "fa fa-bomb"
}
}, {
"getCapPSLanguageRes" : {
"lanResTag" : "DE.LNAME.IBIZORDERDETAIL",
"mOSFilePath" : "pslanguageres/Auto904",
"rTMOSFilePath" : "pslanguageres/Auto904"
},
"caption" : "订单交易明细3",
"counterId" : "DETAILNUM",
"name" : "dritem3",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderDetailGridView.json",
"viewType" : "DEGRIDVIEW"
},
"getPSDEDRBarGroup" : {
"modelref" : true,
"id" : "Auto83"
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册