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

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

上级 48a7bcd9
...@@ -639,7 +639,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -639,7 +639,7 @@ export default class DefaultBase 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: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -675,7 +675,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -675,7 +675,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public async loadDraft(opt: any = {},mode?:string): Promise<any> { public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -712,7 +712,7 @@ export default class DefaultBase 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: 'IBIZBOOKUsr9GridView' + (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; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/ */
public async loadDraft(opt: any = {},mode?:string): Promise<any> { public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (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; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/ */
public async load(opt: any = {}, isReset: boolean = false): Promise<any> { public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/ */
public async remove(datas: any[]): Promise<any> { public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return; return;
} }
let _datas:any[] = []; let _datas:any[] = [];
...@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try { try {
if(Object.is(item.rowDataState, 'create')){ if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){ if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
...@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface { ...@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
} }
}else if(Object.is(item.rowDataState, 'update')){ }else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){ if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (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){
......
...@@ -964,7 +964,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -964,7 +964,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) { if (!this.fetchAction) {
this.$Notice.error({ this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string, title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string), desc: "IBIZOrderDetailSGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
}); });
return; return;
} }
...@@ -1093,7 +1093,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1093,7 +1093,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) { if (!this.removeAction) {
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string) desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
}); });
return; return;
} }
...@@ -1207,7 +1207,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1207,7 +1207,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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(!arg){ if(!arg){
...@@ -2101,7 +2101,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2101,7 +2101,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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2110,7 +2110,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2110,7 +2110,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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2186,7 +2186,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2186,7 +2186,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string) desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
}); });
return; return;
} }
......
...@@ -97,6 +97,7 @@ export default class MainModel { ...@@ -97,6 +97,7 @@ export default class MainModel {
name: 'ibizorderdetail', name: 'ibizorderdetail',
prop: 'ibizorderdetailid', prop: 'ibizorderdetailid',
}, },
{ {
name:'size', name:'size',
prop:'size', prop:'size',
......
...@@ -5504,6 +5504,7 @@ ...@@ -5504,6 +5504,7 @@
"codeName" : "IBIZOrderName" "codeName" : "IBIZOrderName"
}, },
"getMajorPSDERs" : [ { "getMajorPSDERs" : [ {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -5550,7 +5551,8 @@ ...@@ -5550,7 +5551,8 @@
}, },
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
} ], } ],
"getMinorPSDERs" : [ { "getMinorPSDERs" : [ {
"codeName" : "IBIZCUSTOMER", "codeName" : "IBIZCUSTOMER",
......
...@@ -3576,6 +3576,7 @@ ...@@ -3576,6 +3576,7 @@
"codeName" : "IBIZOrderDetailName" "codeName" : "IBIZOrderDetailName"
}, },
"getMinorPSDERs" : [ { "getMinorPSDERs" : [ {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -3622,7 +3623,8 @@ ...@@ -3622,7 +3623,8 @@
}, },
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, { }, {
"codeName" : "IBIZUNIPRODUCT", "codeName" : "IBIZUNIPRODUCT",
"dERType" : "DER1N", "dERType" : "DER1N",
......
{ {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -45,5 +46,6 @@ ...@@ -45,5 +46,6 @@
}, },
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
} }
\ No newline at end of file
...@@ -1347,6 +1347,7 @@ ...@@ -1347,6 +1347,7 @@
"codeName" : "IBIZTASKName" "codeName" : "IBIZTASKName"
}, },
"getMajorPSDERs" : [ { "getMajorPSDERs" : [ {
"cloneOrder" : 0,
"codeName" : "TaskTeam", "codeName" : "TaskTeam",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZTASKTEAM/PSDERS/DER1N_IBIZTASKTEAM_IBIZTASK_ROOT.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZTASKTEAM/PSDERS/DER1N_IBIZTASKTEAM_IBIZTASK_ROOT.json",
...@@ -1370,6 +1371,7 @@ ...@@ -1370,6 +1371,7 @@
"pickupDEFName" : "ROOT", "pickupDEFName" : "ROOT",
"removeActionType" : -1, "removeActionType" : -1,
"removeOrder" : 0, "removeOrder" : 0,
"cloneRS" : true,
"enableFKey" : true, "enableFKey" : true,
"nestedRS" : true "nestedRS" : true
} ], } ],
......
...@@ -1560,6 +1560,7 @@ ...@@ -1560,6 +1560,7 @@
"codeName" : "IBIZTASKTEAMName" "codeName" : "IBIZTASKTEAMName"
}, },
"getMinorPSDERs" : [ { "getMinorPSDERs" : [ {
"cloneOrder" : 0,
"codeName" : "TaskTeam", "codeName" : "TaskTeam",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZTASKTEAM/PSDERS/DER1N_IBIZTASKTEAM_IBIZTASK_ROOT.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZTASKTEAM/PSDERS/DER1N_IBIZTASKTEAM_IBIZTASK_ROOT.json",
...@@ -1583,6 +1584,7 @@ ...@@ -1583,6 +1584,7 @@
"pickupDEFName" : "ROOT", "pickupDEFName" : "ROOT",
"removeActionType" : -1, "removeActionType" : -1,
"removeOrder" : 0, "removeOrder" : 0,
"cloneRS" : true,
"enableFKey" : true, "enableFKey" : true,
"nestedRS" : true "nestedRS" : true
} ], } ],
......
{ {
"cloneOrder" : 0,
"codeName" : "TaskTeam", "codeName" : "TaskTeam",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZTASKTEAM/PSDERS/DER1N_IBIZTASKTEAM_IBIZTASK_ROOT.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZTASKTEAM/PSDERS/DER1N_IBIZTASKTEAM_IBIZTASK_ROOT.json",
...@@ -22,6 +23,7 @@ ...@@ -22,6 +23,7 @@
"pickupDEFName" : "ROOT", "pickupDEFName" : "ROOT",
"removeActionType" : -1, "removeActionType" : -1,
"removeOrder" : 0, "removeOrder" : 0,
"cloneRS" : true,
"enableFKey" : true, "enableFKey" : true,
"nestedRS" : true "nestedRS" : true
} }
\ No newline at end of file
...@@ -21,41 +21,41 @@ ...@@ -21,41 +21,41 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "作者", "caption" : "出版社",
"codeName" : "author", "codeName" : "press",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author", "dataItemName" : "press",
"name" : "author", "name" : "press",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "出版社", "caption" : "借出日期",
"codeName" : "press", "codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press", "dataItemName" : "lendouttime",
"name" : "press", "name" : "lendouttime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书名称", "caption" : "作者",
"codeName" : "ibizbookname", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname", "dataItemName" : "author",
"name" : "ibizbookname", "name" : "author",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "借出日期", "caption" : "图书名称",
"codeName" : "lendouttime", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime", "dataItemName" : "ibizbookname",
"name" : "lendouttime", "name" : "ibizbookname",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -19,11 +19,11 @@ ...@@ -19,11 +19,11 @@
} }
} ], } ],
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "图书描述", "caption" : "图书名称",
"codeName" : "subtext", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext", "dataItemName" : "ibizbookname",
"name" : "subtext", "name" : "ibizbookname",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
...@@ -39,11 +39,11 @@ ...@@ -39,11 +39,11 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书名称", "caption" : "图书描述",
"codeName" : "ibizbookname", "codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname", "dataItemName" : "subtext",
"name" : "ibizbookname", "name" : "subtext",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -55,7 +56,8 @@ ...@@ -55,7 +56,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
"modelref" : true, "modelref" : true,
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -55,7 +56,8 @@ ...@@ -55,7 +56,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
"modelref" : true, "modelref" : true,
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -33,7 +34,8 @@ ...@@ -33,7 +34,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -74,6 +74,7 @@ ...@@ -74,6 +74,7 @@
"codeName" : "IBIZOrderId" "codeName" : "IBIZOrderId"
}, },
"getParentPSDER1N" : { "getParentPSDER1N" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -84,7 +85,8 @@ ...@@ -84,7 +85,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getParentPSDETreeNode" : { "getParentPSDETreeNode" : {
"modelref" : true, "modelref" : true,
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -27,7 +28,8 @@ ...@@ -27,7 +28,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -33,7 +34,8 @@ ...@@ -33,7 +34,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
"codeName" : "IBIZOrderId" "codeName" : "IBIZOrderId"
}, },
"getParentPSDER1N" : { "getParentPSDER1N" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -70,7 +71,8 @@ ...@@ -70,7 +71,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getParentPSDETreeNode" : { "getParentPSDETreeNode" : {
"modelref" : true, "modelref" : true,
......
...@@ -148,6 +148,7 @@ ...@@ -148,6 +148,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -158,7 +159,8 @@ ...@@ -158,7 +159,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"nodeType" : "orderDataDyc", "nodeType" : "orderDataDyc",
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
......
...@@ -44,41 +44,41 @@ ...@@ -44,41 +44,41 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "作者", "caption" : "出版社",
"codeName" : "author", "codeName" : "press",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author", "dataItemName" : "press",
"name" : "author", "name" : "press",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "出版社", "caption" : "借出日期",
"codeName" : "press", "codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press", "dataItemName" : "lendouttime",
"name" : "press", "name" : "lendouttime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书名称", "caption" : "作者",
"codeName" : "ibizbookname", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname", "dataItemName" : "author",
"name" : "ibizbookname", "name" : "author",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "借出日期", "caption" : "图书名称",
"codeName" : "lendouttime", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime", "dataItemName" : "ibizbookname",
"name" : "lendouttime", "name" : "ibizbookname",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -75,11 +75,11 @@ ...@@ -75,11 +75,11 @@
"id" : "TREEGRIDEX" "id" : "TREEGRIDEX"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "图书描述", "caption" : "图书名称",
"codeName" : "subtext", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext", "dataItemName" : "ibizbookname",
"name" : "subtext", "name" : "ibizbookname",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
...@@ -95,11 +95,11 @@ ...@@ -95,11 +95,11 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书名称", "caption" : "图书描述",
"codeName" : "ibizbookname", "codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname", "dataItemName" : "subtext",
"name" : "ibizbookname", "name" : "subtext",
"width" : 50, "width" : 50,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -222,6 +222,7 @@ ...@@ -222,6 +222,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -232,7 +233,8 @@ ...@@ -232,7 +233,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
"modelref" : true, "modelref" : true,
......
...@@ -222,6 +222,7 @@ ...@@ -222,6 +222,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -232,7 +233,8 @@ ...@@ -232,7 +233,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
"modelref" : true, "modelref" : true,
......
...@@ -191,6 +191,7 @@ ...@@ -191,6 +191,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -201,7 +202,8 @@ ...@@ -201,7 +202,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -191,6 +191,7 @@ ...@@ -191,6 +191,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -201,7 +202,8 @@ ...@@ -201,7 +202,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -101,6 +101,7 @@ ...@@ -101,6 +101,7 @@
"codeName" : "IBIZOrderId" "codeName" : "IBIZOrderId"
}, },
"getParentPSDER1N" : { "getParentPSDER1N" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -111,7 +112,8 @@ ...@@ -111,7 +112,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getParentPSDETreeNode" : { "getParentPSDETreeNode" : {
"modelref" : true, "modelref" : true,
......
...@@ -101,6 +101,7 @@ ...@@ -101,6 +101,7 @@
"codeName" : "IBIZOrderId" "codeName" : "IBIZOrderId"
}, },
"getParentPSDER1N" : { "getParentPSDER1N" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -111,7 +112,8 @@ ...@@ -111,7 +112,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getParentPSDETreeNode" : { "getParentPSDETreeNode" : {
"modelref" : true, "modelref" : true,
......
...@@ -186,6 +186,7 @@ ...@@ -186,6 +186,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -196,7 +197,8 @@ ...@@ -196,7 +197,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -192,6 +192,7 @@ ...@@ -192,6 +192,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -202,7 +203,8 @@ ...@@ -202,7 +203,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -192,6 +192,7 @@ ...@@ -192,6 +192,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -202,7 +203,8 @@ ...@@ -202,7 +203,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -332,6 +332,7 @@ ...@@ -332,6 +332,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -342,7 +343,8 @@ ...@@ -342,7 +343,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"nodeType" : "orderDataDyc", "nodeType" : "orderDataDyc",
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
......
...@@ -109,6 +109,7 @@ ...@@ -109,6 +109,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -119,7 +120,8 @@ ...@@ -119,7 +120,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDataEntity" : { "getPSAppDataEntity" : {
"modelref" : true, "modelref" : true,
......
...@@ -409,6 +409,7 @@ ...@@ -409,6 +409,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -419,7 +420,8 @@ ...@@ -419,7 +420,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"nodeType" : "orderDataDyc", "nodeType" : "orderDataDyc",
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
......
...@@ -409,6 +409,7 @@ ...@@ -409,6 +409,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -419,7 +420,8 @@ ...@@ -419,7 +420,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"nodeType" : "orderDataDyc", "nodeType" : "orderDataDyc",
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
......
...@@ -110,6 +110,7 @@ ...@@ -110,6 +110,7 @@
"codeName" : "IBIZOrderId" "codeName" : "IBIZOrderId"
}, },
"getParentPSDER1N" : { "getParentPSDER1N" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -120,7 +121,8 @@ ...@@ -120,7 +121,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getParentPSDETreeNode" : { "getParentPSDETreeNode" : {
"modelref" : true, "modelref" : true,
......
...@@ -110,6 +110,7 @@ ...@@ -110,6 +110,7 @@
"codeName" : "IBIZOrderId" "codeName" : "IBIZOrderId"
}, },
"getParentPSDER1N" : { "getParentPSDER1N" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -120,7 +121,8 @@ ...@@ -120,7 +121,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getParentPSDETreeNode" : { "getParentPSDETreeNode" : {
"modelref" : true, "modelref" : true,
......
...@@ -222,6 +222,7 @@ ...@@ -222,6 +222,7 @@
"viewType" : "DEGRIDVIEW9" "viewType" : "DEGRIDVIEW9"
}, },
"getNavPSDER" : { "getNavPSDER" : {
"cloneOrder" : 10,
"codeName" : "IBIZORDER", "codeName" : "IBIZORDER",
"dERType" : "DER1N", "dERType" : "DER1N",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json", "dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZOrderDetail/PSDERS/DER1N_IBIZORDERDETAIL_IBIZORDER_IBIZORDERID.json",
...@@ -232,7 +233,8 @@ ...@@ -232,7 +233,8 @@
"orderValue" : 100, "orderValue" : 100,
"pickupDEFName" : "IBIZORDERID", "pickupDEFName" : "IBIZORDERID",
"removeActionType" : 3, "removeActionType" : 3,
"removeOrder" : 0 "removeOrder" : 0,
"cloneRS" : true
}, },
"getPSAppDEDataSet" : { "getPSAppDEDataSet" : {
"modelref" : true, "modelref" : true,
......
...@@ -344,7 +344,7 @@ ...@@ -344,7 +344,7 @@
<!--输出实体[IBIZORDER]数据结构 --> <!--输出实体[IBIZORDER]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-706-14"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizorder-707-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>
...@@ -394,7 +394,7 @@ ...@@ -394,7 +394,7 @@
<!--输出实体[IBIZORDERDETAIL]数据结构 --> <!--输出实体[IBIZORDERDETAIL]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizorderdetail-5-15"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizorderdetail-6-15">
<createTable tableName="T_IBIZORDERDETAIL"> <createTable tableName="T_IBIZORDERDETAIL">
<column name="IBIZORDERDETAILNAME" remarks="" type="VARCHAR(200)"> <column name="IBIZORDERDETAILNAME" remarks="" type="VARCHAR(200)">
</column> </column>
......
...@@ -37,13 +37,13 @@ ...@@ -37,13 +37,13 @@
</createView> </createView>
</changeSet> </changeSet>
<!--输出实体[IBIZORDER]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步--> <!--输出实体[IBIZORDER]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet author="a_LAB01_df847bdfd" id="view-ibizorder-706-8" runOnChange="true"> <changeSet author="a_LAB01_df847bdfd" id="view-ibizorder-707-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>
</changeSet> </changeSet>
<!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步--> <!--输出实体[IBIZORDERDETAIL]视图结构信息 runOnChange="true" 当视图发生变更时,通过liquibase强刷prod的视图,实现视图的同步-->
<changeSet author="a_LAB01_df847bdfd" id="view-ibizorderdetail-5-9" runOnChange="true"> <changeSet author="a_LAB01_df847bdfd" id="view-ibizorderdetail-6-9" runOnChange="true">
<createView fullDefinition="false" replaceIfExists="true" viewName="V_IBIZORDERDETAIL"> <createView fullDefinition="false" replaceIfExists="true" viewName="V_IBIZORDERDETAIL">
<![CDATA[ SELECT t1.[QUANTITY]*t11.[UNITPRICE] AS [AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[IBIZORDERDETAILA], t1.[IBIZORDERDETAILID], t1.[IBIZORDERDETAILNAME], t1.[IBIZORDERID], t21.[IBIZORDERNAME], t1.[IBIZUNIPRODUCTID], t11.[IBIZUNIPRODUCTNAME], t21.[ORDERUID], t1.[QUANTITY], t11.[UNIT], t11.[UNITPRICE], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZORDERDETAIL] t1 LEFT JOIN T_IBIZUNIPRODUCT t11 ON t1.IBIZUNIPRODUCTID = t11.IBIZUNIPRODUCTID LEFT JOIN T_IBIZORDER t21 ON t1.IBIZORDERID = t21.IBIZORDERID ]]> <![CDATA[ SELECT t1.[QUANTITY]*t11.[UNITPRICE] AS [AMOUNT], t1.[CREATEDATE], t1.[CREATEMAN], t1.[IBIZORDERDETAILA], t1.[IBIZORDERDETAILID], t1.[IBIZORDERDETAILNAME], t1.[IBIZORDERID], t21.[IBIZORDERNAME], t1.[IBIZUNIPRODUCTID], t11.[IBIZUNIPRODUCTNAME], t21.[ORDERUID], t1.[QUANTITY], t11.[UNIT], t11.[UNITPRICE], t1.[UPDATEDATE], t1.[UPDATEMAN] FROM [T_IBIZORDERDETAIL] t1 LEFT JOIN T_IBIZUNIPRODUCT t11 ON t1.IBIZUNIPRODUCTID = t11.IBIZUNIPRODUCTID LEFT JOIN T_IBIZORDER t21 ON t1.IBIZORDERID = t21.IBIZORDERID ]]>
</createView> </createView>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册