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

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

上级 efca880d
...@@ -526,7 +526,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -526,7 +526,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public load(data: any): void { public load(data: any): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKMEditView9' + (this.$t('app.multiEditView.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2MEditView9_layout' + (this.$t('app.multiEditView.notConfig.fetchAction') as string) });
return; return;
} }
let arg: any = {}; let arg: any = {};
...@@ -561,7 +561,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -561,7 +561,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public handleAdd(){ public handleAdd(){
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKMEditView9' + (this.$t('app.multiEditView.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2MEditView9_layout' + (this.$t('app.multiEditView.notConfig.loaddraftAction') as string) });
return; return;
} }
const promice: Promise<any> = this.service.loadDraft(this.loaddraftAction,JSON.parse(JSON.stringify(this.context)),{viewparams:this.viewparams}, this.showBusyIndicator); const promice: Promise<any> = this.service.loadDraft(this.loaddraftAction,JSON.parse(JSON.stringify(this.context)),{viewparams:this.viewparams}, this.showBusyIndicator);
......
...@@ -526,7 +526,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -526,7 +526,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public load(data: any): void { public load(data: any): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKMEditView9' + (this.$t('app.multiEditView.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2MEditView9_layout' + (this.$t('app.multiEditView.notConfig.fetchAction') as string) });
return; return;
} }
let arg: any = {}; let arg: any = {};
...@@ -561,7 +561,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -561,7 +561,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public handleAdd(){ public handleAdd(){
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKMEditView9' + (this.$t('app.multiEditView.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr2MEditView9_layout' + (this.$t('app.multiEditView.notConfig.loaddraftAction') as string) });
return; return;
} }
const promice: Promise<any> = this.service.loadDraft(this.loaddraftAction,JSON.parse(JSON.stringify(this.context)),{viewparams:this.viewparams}, this.showBusyIndicator); const promice: Promise<any> = this.service.loadDraft(this.loaddraftAction,JSON.parse(JSON.stringify(this.context)),{viewparams:this.viewparams}, this.showBusyIndicator);
......
...@@ -601,7 +601,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -601,7 +601,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
return; return;
} }
const arg: any = {...opt}; const arg: any = {...opt};
...@@ -731,7 +731,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -731,7 +731,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/ */
public async remove(datas: any[]): Promise<any> { public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.removeAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.removeAction') as string) });
return; return;
} }
if (datas.length === 0) { if (datas.length === 0) {
...@@ -836,7 +836,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -836,7 +836,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
try { try {
if(Object.is(item.rowDataState, 'create')){ if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){ if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
...@@ -844,7 +844,7 @@ export default class ListExpBase extends Vue implements ControlInterface { ...@@ -844,7 +844,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
} }
}else if(Object.is(item.rowDataState, 'update')){ }else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){ if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){ if(item.ibizorder){
......
...@@ -761,7 +761,7 @@ ...@@ -761,7 +761,7 @@
"rTMOSFilePath" : "pslanguageres/A7324959b9f8f82f3fa", "rTMOSFilePath" : "pslanguageres/A7324959b9f8f82f3fa",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "IBIZSample0023Ext", "logicName" : "1:1(无存储)",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023EXT", "mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023EXT",
"getMajorPSDEField" : { "getMajorPSDEField" : {
"name" : "PARAM", "name" : "PARAM",
......
...@@ -1330,7 +1330,7 @@ ...@@ -1330,7 +1330,7 @@
"name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0023EXT2]", "name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0023EXT2]",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "IBIZSample0023Ext2", "logicName" : "1:1(物理存储)",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023EXT2", "mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023EXT2",
"getMajorPSDEField" : { "getMajorPSDEField" : {
"name" : "IBIZSAMPLE0023EXT2NAME", "name" : "IBIZSAMPLE0023EXT2NAME",
......
...@@ -677,7 +677,7 @@ ...@@ -677,7 +677,7 @@
"rTMOSFilePath" : "pslanguageres/Abe9c28a98eaecac897", "rTMOSFilePath" : "pslanguageres/Abe9c28a98eaecac897",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "包数据1(无存储)", "logicName" : "1:N(无存储)包数据",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024", "mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024",
"getMajorPSDEField" : { "getMajorPSDEField" : {
"name" : "NAME", "name" : "NAME",
......
...@@ -668,7 +668,7 @@ ...@@ -668,7 +668,7 @@
"rTMOSFilePath" : "pslanguageres/A9ec4692be4ac60a746", "rTMOSFilePath" : "pslanguageres/A9ec4692be4ac60a746",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "子包数据1(无存储)", "logicName" : "1:N(无存储)子包数据",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0025", "mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0025",
"getMajorPSDEField" : { "getMajorPSDEField" : {
"name" : "NAME", "name" : "NAME",
......
...@@ -1471,7 +1471,7 @@ ...@@ -1471,7 +1471,7 @@
"rTMOSFilePath" : "pslanguageres/Ad31e90017c3219d396", "rTMOSFilePath" : "pslanguageres/Ad31e90017c3219d396",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "包数据2(物理存储)", "logicName" : "1:N(物理存储)包数据",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0026", "mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0026",
"getMajorPSDEField" : { "getMajorPSDEField" : {
"name" : "IBIZSAMPLE0026NAME", "name" : "IBIZSAMPLE0026NAME",
......
...@@ -7759,7 +7759,7 @@ ...@@ -7759,7 +7759,7 @@
"rTMOSFilePath" : "pslanguageres/Abe9c28a98eaecac897", "rTMOSFilePath" : "pslanguageres/Abe9c28a98eaecac897",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "包数据1(无存储)", "logicName" : "1:N(无存储)包数据",
"mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0024", "mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0024",
"name" : "IBIZSAMPLE0024", "name" : "IBIZSAMPLE0024",
"getPSDEServiceAPIFields" : [ { "getPSDEServiceAPIFields" : [ {
...@@ -10403,7 +10403,7 @@ ...@@ -10403,7 +10403,7 @@
"rTMOSFilePath" : "pslanguageres/A7324959b9f8f82f3fa", "rTMOSFilePath" : "pslanguageres/A7324959b9f8f82f3fa",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "IBIZSample0023Ext", "logicName" : "1:1(无存储)",
"mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0023Ext", "mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0023Ext",
"name" : "IBIZSAMPLE0023EXT", "name" : "IBIZSAMPLE0023EXT",
"getPSDEServiceAPIFields" : [ { "getPSDEServiceAPIFields" : [ {
...@@ -20824,7 +20824,7 @@ ...@@ -20824,7 +20824,7 @@
"rTMOSFilePath" : "pslanguageres/Ad31e90017c3219d396", "rTMOSFilePath" : "pslanguageres/Ad31e90017c3219d396",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "包数据2(物理存储)", "logicName" : "1:N(物理存储)包数据",
"mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0026", "mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0026",
"name" : "IBIZSAMPLE0026", "name" : "IBIZSAMPLE0026",
"getPSDEServiceAPIFields" : [ { "getPSDEServiceAPIFields" : [ {
...@@ -27164,7 +27164,7 @@ ...@@ -27164,7 +27164,7 @@
"rTMOSFilePath" : "pslanguageres/A9ec4692be4ac60a746", "rTMOSFilePath" : "pslanguageres/A9ec4692be4ac60a746",
"refFlag" : true "refFlag" : true
}, },
"logicName" : "子包数据1(无存储)", "logicName" : "1:N(无存储)子包数据",
"mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0025", "mOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0025",
"name" : "IBIZSAMPLE0025", "name" : "IBIZSAMPLE0025",
"getPSDEServiceAPIFields" : [ { "getPSDEServiceAPIFields" : [ {
...@@ -1265,7 +1265,7 @@ ...@@ -1265,7 +1265,7 @@
<!--输出实体[IBIZSAMPLE0023EXT2]数据结构 --> <!--输出实体[IBIZSAMPLE0023EXT2]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0023ext2-13-41"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0023ext2-17-41">
<createTable tableName="T_IBIZSAMPLE0023EXT2"> <createTable tableName="T_IBIZSAMPLE0023EXT2">
<column name="IBIZSAMPLE0023EXT2NAME" remarks="" type="VARCHAR(200)"> <column name="IBIZSAMPLE0023EXT2NAME" remarks="" type="VARCHAR(200)">
</column> </column>
...@@ -1289,7 +1289,7 @@ ...@@ -1289,7 +1289,7 @@
<!--输出实体[IBIZSAMPLE0026]数据结构 --> <!--输出实体[IBIZSAMPLE0026]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0026-5-42"> <changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0026-7-42">
<createTable tableName="T_IBIZSAMPLE0026"> <createTable tableName="T_IBIZSAMPLE0026">
<column name="IBIZSAMPLE0026NAME" remarks="" type="VARCHAR(200)"> <column name="IBIZSAMPLE0026NAME" remarks="" type="VARCHAR(200)">
</column> </column>
...@@ -1623,7 +1623,7 @@ ...@@ -1623,7 +1623,7 @@
<!--输出实体[IBIZSAMPLE0023]外键关系 --> <!--输出实体[IBIZSAMPLE0023]外键关系 -->
<!--输出实体[IBIZSAMPLE0023EXT2]外键关系 --> <!--输出实体[IBIZSAMPLE0023EXT2]外键关系 -->
<!--输出实体[IBIZSAMPLE0026]外键关系 --> <!--输出实体[IBIZSAMPLE0026]外键关系 -->
<changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0026-5-55"> <changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0026-7-55">
<addForeignKeyConstraint baseColumnNames="IBIZSAMPLE0023ID" baseTableName="T_IBIZSAMPLE0026" constraintName="DER1N_IBIZSAMPLE0026_IBIZSAMPL" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="IBIZSAMPLE0023ID" referencedTableName="T_IBIZSAMPLE0023" validate="true"/> <addForeignKeyConstraint baseColumnNames="IBIZSAMPLE0023ID" baseTableName="T_IBIZSAMPLE0026" constraintName="DER1N_IBIZSAMPLE0026_IBIZSAMPL" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="IBIZSAMPLE0023ID" referencedTableName="T_IBIZSAMPLE0023" validate="true"/>
</changeSet> </changeSet>
<!--输出实体[IBIZSOFTWARESUIT]外键关系 --> <!--输出实体[IBIZSOFTWARESUIT]外键关系 -->
......
...@@ -8649,7 +8649,7 @@ ...@@ -8649,7 +8649,7 @@
, ,
{ {
"entity_name":"IBIZSAMPLE0023EXT", "entity_name":"IBIZSAMPLE0023EXT",
"logic_name":"IBIZSample0023Ext", "logic_name":"1:1(无存储)",
"code_name":"IBIZSample0023Ext", "code_name":"IBIZSample0023Ext",
"table_name":"", "table_name":"",
"system_id":"DemoSys", "system_id":"DemoSys",
...@@ -8713,7 +8713,7 @@ ...@@ -8713,7 +8713,7 @@
, ,
{ {
"entity_name":"IBIZSAMPLE0023EXT2", "entity_name":"IBIZSAMPLE0023EXT2",
"logic_name":"IBIZSample0023Ext2", "logic_name":"1:1(物理存储)",
"code_name":"IBIZSample0023Ext2", "code_name":"IBIZSample0023Ext2",
"table_name":"T_IBIZSAMPLE0023EXT2", "table_name":"T_IBIZSAMPLE0023EXT2",
"system_id":"DemoSys", "system_id":"DemoSys",
...@@ -8830,7 +8830,7 @@ ...@@ -8830,7 +8830,7 @@
, ,
{ {
"entity_name":"IBIZSAMPLE0024", "entity_name":"IBIZSAMPLE0024",
"logic_name":"包数据1(无存储)", "logic_name":"1:N(无存储)包数据",
"code_name":"IBIZSample0024", "code_name":"IBIZSample0024",
"table_name":"", "table_name":"",
"system_id":"DemoSys", "system_id":"DemoSys",
...@@ -8887,7 +8887,7 @@ ...@@ -8887,7 +8887,7 @@
, ,
{ {
"entity_name":"IBIZSAMPLE0025", "entity_name":"IBIZSAMPLE0025",
"logic_name":"子包数据1(无存储)", "logic_name":"1:N(无存储)子包数据",
"code_name":"IBIZSample0025", "code_name":"IBIZSample0025",
"table_name":"", "table_name":"",
"system_id":"DemoSys", "system_id":"DemoSys",
...@@ -8937,7 +8937,7 @@ ...@@ -8937,7 +8937,7 @@
, ,
{ {
"entity_name":"IBIZSAMPLE0026", "entity_name":"IBIZSAMPLE0026",
"logic_name":"包数据2(物理存储)", "logic_name":"1:N(物理存储)包数据",
"code_name":"IBIZSample0026", "code_name":"IBIZSample0026",
"table_name":"T_IBIZSAMPLE0026", "table_name":"T_IBIZSAMPLE0026",
"system_id":"DemoSys", "system_id":"DemoSys",
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册