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

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

上级 75455138
...@@ -91,7 +91,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/dynadashboards/${context.dynadashboard}`,isloading); /dynadashboards/${context.dynadashboard}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/dynadashboards/getdraft`,isloading); /dynadashboards/getdraft`,{},isloading);
res.data.dynadashboard = data.dynadashboard; res.data.dynadashboard = data.dynadashboard;
return res; return res;
...@@ -124,7 +124,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/dynadashboards/${context.dynadashboard}`,isloading); /dynadashboards/${context.dynadashboard}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/dynadashboards/${context.dynadashboard}/select`,isloading); /dynadashboards/${context.dynadashboard}/select`,{},isloading);
return res; return res;
} }
......
...@@ -878,7 +878,7 @@ export default class EntityService { ...@@ -878,7 +878,7 @@ export default class EntityService {
* @memberof EntityService * @memberof EntityService
*/ */
public async BeforeSign(context:any = {},data:any = {}, isloading?: boolean):Promise<any> { public async BeforeSign(context:any = {},data:any = {}, isloading?: boolean):Promise<any> {
return Http.getInstance().post(`/wfcore/${this.SYSTEMNAME}-app-${this.APPNAME}/${this.APPDENAME}/${context[this.APPLYDEKEY]}/tasks/${context.taskId}/beforesign`); return Http.getInstance().post(`/wfcore/${this.SYSTEMNAME}-app-${this.APPNAME}/${this.APPDENAME}/${context[this.APPLYDEKEY]}/tasks/${context.taskId}/beforesign`,data);
} }
/** /**
...@@ -891,7 +891,7 @@ export default class EntityService { ...@@ -891,7 +891,7 @@ export default class EntityService {
* @memberof EntityService * @memberof EntityService
*/ */
public async TransFerTask(context:any = {},data:any = {}, isloading?: boolean):Promise<any> { public async TransFerTask(context:any = {},data:any = {}, isloading?: boolean):Promise<any> {
return Http.getInstance().post(`/wfcore/${this.SYSTEMNAME}-app-${this.APPNAME}/${this.APPDENAME}/${context[this.APPLYDEKEY]}/tasks/${context.taskId}/transfer`); return Http.getInstance().post(`/wfcore/${this.SYSTEMNAME}-app-${this.APPNAME}/${this.APPDENAME}/${context[this.APPLYDEKEY]}/tasks/${context.taskId}/transfer`,data);
} }
/** /**
......
...@@ -91,7 +91,7 @@ export default class IBIZAccountServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZAccountServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizaccounts/${context.ibizaccount}`,isloading); /ibizaccounts/${context.ibizaccount}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZAccountServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZAccountServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizaccounts/getdraft`,isloading); /ibizaccounts/getdraft`,{},isloading);
res.data.ibizaccount = data.ibizaccount; res.data.ibizaccount = data.ibizaccount;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZAccountServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZAccountServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizaccounts/${context.ibizaccount}`,isloading); /ibizaccounts/${context.ibizaccount}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZAccountServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZAccountServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizaccounts/${context.ibizaccount}/select`,isloading); /ibizaccounts/${context.ibizaccount}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappctrls/${context.ibizappctrl}`,isloading); /ibizappctrls/${context.ibizappctrl}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappctrls/getdraft`,isloading); /ibizappctrls/getdraft`,{},isloading);
res.data.ibizappctrl = data.ibizappctrl; res.data.ibizappctrl = data.ibizappctrl;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizappctrls/${context.ibizappctrl}`,isloading); /ibizappctrls/${context.ibizappctrl}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizappctrls/${context.ibizappctrl}/select`,isloading); /ibizappctrls/${context.ibizappctrl}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappeditors/${context.ibizappeditor}`,isloading); /ibizappeditors/${context.ibizappeditor}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappeditors/getdraft`,isloading); /ibizappeditors/getdraft`,{},isloading);
res.data.ibizappeditor = data.ibizappeditor; res.data.ibizappeditor = data.ibizappeditor;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizappeditors/${context.ibizappeditor}`,isloading); /ibizappeditors/${context.ibizappeditor}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizappeditors/${context.ibizappeditor}/select`,isloading); /ibizappeditors/${context.ibizappeditor}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappextendeditors/${context.ibizappextendeditor}`,isloading); /ibizappextendeditors/${context.ibizappextendeditor}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappextendeditors/getdraft`,isloading); /ibizappextendeditors/getdraft`,{},isloading);
res.data.ibizappextendeditor = data.ibizappextendeditor; res.data.ibizappextendeditor = data.ibizappextendeditor;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizappextendeditors/${context.ibizappextendeditor}`,isloading); /ibizappextendeditors/${context.ibizappextendeditor}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizappextendeditors/${context.ibizappextendeditor}/select`,isloading); /ibizappextendeditors/${context.ibizappextendeditor}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappviews/${context.ibizappview}`,isloading); /ibizappviews/${context.ibizappview}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizappviews/getdraft`,isloading); /ibizappviews/getdraft`,{},isloading);
res.data.ibizappview = data.ibizappview; res.data.ibizappview = data.ibizappview;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizappviews/${context.ibizappview}`,isloading); /ibizappviews/${context.ibizappview}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizappviews/${context.ibizappview}/select`,isloading); /ibizappviews/${context.ibizappview}/select`,{},isloading);
return res; return res;
} }
......
...@@ -112,7 +112,7 @@ export default class IBIZBOOKServiceBase extends EntityService { ...@@ -112,7 +112,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizbooks/${context.ibizbook}`,isloading); /ibizbooks/${context.ibizbook}`,{},isloading);
return res; return res;
} }
...@@ -128,7 +128,7 @@ export default class IBIZBOOKServiceBase extends EntityService { ...@@ -128,7 +128,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizbooks/getdraft`,isloading); /ibizbooks/getdraft`,{},isloading);
res.data.ibizbook = data.ibizbook; res.data.ibizbook = data.ibizbook;
return res; return res;
...@@ -193,7 +193,7 @@ export default class IBIZBOOKServiceBase extends EntityService { ...@@ -193,7 +193,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizbooks/${context.ibizbook}`,isloading); /ibizbooks/${context.ibizbook}`,{},isloading);
return res; return res;
} }
...@@ -285,7 +285,7 @@ export default class IBIZBOOKServiceBase extends EntityService { ...@@ -285,7 +285,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizbooks/${context.ibizbook}/select`,isloading); /ibizbooks/${context.ibizbook}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZCPUServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZCPUServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcpus/${context.ibizcpu}`,isloading); /ibizcpus/${context.ibizcpu}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZCPUServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZCPUServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcpus/getdraft`,isloading); /ibizcpus/getdraft`,{},isloading);
res.data.ibizcpu = data.ibizcpu; res.data.ibizcpu = data.ibizcpu;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZCPUServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZCPUServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizcpus/${context.ibizcpu}`,isloading); /ibizcpus/${context.ibizcpu}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZCPUServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZCPUServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizcpus/${context.ibizcpu}/select`,isloading); /ibizcpus/${context.ibizcpu}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZCustomServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZCustomServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustoms/${context.ibizcustom}`,isloading); /ibizcustoms/${context.ibizcustom}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZCustomServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZCustomServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustoms/getdraft`,isloading); /ibizcustoms/getdraft`,{},isloading);
res.data.ibizcustom = data.ibizcustom; res.data.ibizcustom = data.ibizcustom;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZCustomServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZCustomServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizcustoms/${context.ibizcustom}`,isloading); /ibizcustoms/${context.ibizcustom}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZCustomServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZCustomServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizcustoms/${context.ibizcustom}/select`,isloading); /ibizcustoms/${context.ibizcustom}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustomer_intfs/${context.ibizcustomer_intf}`,isloading); /ibizcustomer_intfs/${context.ibizcustomer_intf}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustomer_intfs/getdraft`,isloading); /ibizcustomer_intfs/getdraft`,{},isloading);
res.data.ibizcustomer_intf = data.ibizcustomer_intf; res.data.ibizcustomer_intf = data.ibizcustomer_intf;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizcustomer_intfs/${context.ibizcustomer_intf}`,isloading); /ibizcustomer_intfs/${context.ibizcustomer_intf}`,{},isloading);
return res; return res;
} }
...@@ -267,7 +267,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService { ...@@ -267,7 +267,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizcustomer_intfs/${context.ibizcustomer_intf}/select`,isloading); /ibizcustomer_intfs/${context.ibizcustomer_intf}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustomermgs/${context.ibizcustomermg}`,isloading); /ibizcustomermgs/${context.ibizcustomermg}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustomermgs/getdraft`,isloading); /ibizcustomermgs/getdraft`,{},isloading);
res.data.ibizcustomermg = data.ibizcustomermg; res.data.ibizcustomermg = data.ibizcustomermg;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizcustomermgs/${context.ibizcustomermg}`,isloading); /ibizcustomermgs/${context.ibizcustomermg}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizcustomermgs/${context.ibizcustomermg}/select`,isloading); /ibizcustomermgs/${context.ibizcustomermg}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZCustomerServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustomers/${context.ibizcustomer}`,isloading); /ibizcustomers/${context.ibizcustomer}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZCustomerServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizcustomers/getdraft`,isloading); /ibizcustomers/getdraft`,{},isloading);
res.data.ibizcustomer = data.ibizcustomer; res.data.ibizcustomer = data.ibizcustomer;
return res; return res;
...@@ -134,7 +134,7 @@ export default class IBIZCustomerServiceBase extends EntityService { ...@@ -134,7 +134,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizcustomers/${context.ibizcustomer}`,isloading); /ibizcustomers/${context.ibizcustomer}`,{},isloading);
return res; return res;
} }
...@@ -216,7 +216,7 @@ export default class IBIZCustomerServiceBase extends EntityService { ...@@ -216,7 +216,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizcustomers/${context.ibizcustomer}/select`,isloading); /ibizcustomers/${context.ibizcustomer}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZHardwareServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizhardwares/${context.ibizhardware}`,isloading); /ibizhardwares/${context.ibizhardware}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZHardwareServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizhardwares/getdraft`,isloading); /ibizhardwares/getdraft`,{},isloading);
res.data.ibizhardware = data.ibizhardware; res.data.ibizhardware = data.ibizhardware;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZHardwareServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizhardwares/${context.ibizhardware}`,isloading); /ibizhardwares/${context.ibizhardware}`,{},isloading);
return res; return res;
} }
...@@ -243,7 +243,7 @@ export default class IBIZHardwareServiceBase extends EntityService { ...@@ -243,7 +243,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizhardwares/${context.ibizhardware}/select`,isloading); /ibizhardwares/${context.ibizhardware}/select`,{},isloading);
return res; return res;
} }
......
...@@ -139,12 +139,12 @@ export default class IBIZOrderDetailServiceBase extends EntityService { ...@@ -139,12 +139,12 @@ export default class IBIZOrderDetailServiceBase extends EntityService {
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizorder && context.ibizorderdetail){ if(context.ibizorder && context.ibizorderdetail){
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizorders/${context.ibizorder}/ibizorderdetails/${context.ibizorderdetail}`,isloading); /ibizorders/${context.ibizorder}/ibizorderdetails/${context.ibizorderdetail}`,{},isloading);
return res; return res;
} }
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizorderdetails/${context.ibizorderdetail}`,isloading); /ibizorderdetails/${context.ibizorderdetail}`,{},isloading);
return res; return res;
} }
...@@ -161,13 +161,13 @@ export default class IBIZOrderDetailServiceBase extends EntityService { ...@@ -161,13 +161,13 @@ export default class IBIZOrderDetailServiceBase extends EntityService {
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizorder && true){ if(context.ibizorder && true){
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizorders/${context.ibizorder}/ibizorderdetails/getdraft`,isloading); /ibizorders/${context.ibizorder}/ibizorderdetails/getdraft`,{},isloading);
res.data.ibizorderdetail = data.ibizorderdetail; res.data.ibizorderdetail = data.ibizorderdetail;
return res; return res;
} }
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizorderdetails/getdraft`,isloading); /ibizorderdetails/getdraft`,{},isloading);
res.data.ibizorderdetail = data.ibizorderdetail; res.data.ibizorderdetail = data.ibizorderdetail;
return res; return res;
...@@ -201,11 +201,11 @@ export default class IBIZOrderDetailServiceBase extends EntityService { ...@@ -201,11 +201,11 @@ export default class IBIZOrderDetailServiceBase extends EntityService {
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizorder && context.ibizorderdetail){ if(context.ibizorder && context.ibizorderdetail){
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizorders/${context.ibizorder}/ibizorderdetails/${context.ibizorderdetail}`,isloading); /ibizorders/${context.ibizorder}/ibizorderdetails/${context.ibizorderdetail}`,{},isloading);
return res; return res;
} }
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizorderdetails/${context.ibizorderdetail}`,isloading); /ibizorderdetails/${context.ibizorderdetail}`,{},isloading);
return res; return res;
} }
...@@ -441,12 +441,12 @@ export default class IBIZOrderDetailServiceBase extends EntityService { ...@@ -441,12 +441,12 @@ export default class IBIZOrderDetailServiceBase extends EntityService {
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizorder && context.ibizorderdetail){ if(context.ibizorder && context.ibizorderdetail){
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizorders/${context.ibizorder}/ibizorderdetails/${context.ibizorderdetail}/select`,isloading); /ibizorders/${context.ibizorder}/ibizorderdetails/${context.ibizorderdetail}/select`,{},isloading);
return res; return res;
} }
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizorderdetails/${context.ibizorderdetail}/select`,isloading); /ibizorderdetails/${context.ibizorderdetail}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizordertypes/${context.ibizordertype}`,isloading); /ibizordertypes/${context.ibizordertype}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizordertypes/getdraft`,isloading); /ibizordertypes/getdraft`,{},isloading);
res.data.ibizordertype = data.ibizordertype; res.data.ibizordertype = data.ibizordertype;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizordertypes/${context.ibizordertype}`,isloading); /ibizordertypes/${context.ibizordertype}`,{},isloading);
return res; return res;
} }
...@@ -236,7 +236,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService { ...@@ -236,7 +236,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizordertypes/${context.ibizordertype}/select`,isloading); /ibizordertypes/${context.ibizordertype}/select`,{},isloading);
return res; return res;
} }
......
...@@ -122,7 +122,7 @@ export default class IBIZOrderServiceBase extends EntityService { ...@@ -122,7 +122,7 @@ export default class IBIZOrderServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizorders/${context.ibizorder}`,isloading); /ibizorders/${context.ibizorder}`,{},isloading);
return res; return res;
} }
...@@ -138,7 +138,7 @@ export default class IBIZOrderServiceBase extends EntityService { ...@@ -138,7 +138,7 @@ export default class IBIZOrderServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizorders/getdraft`,isloading); /ibizorders/getdraft`,{},isloading);
res.data.ibizorder = data.ibizorder; res.data.ibizorder = data.ibizorder;
return res; return res;
...@@ -185,7 +185,7 @@ export default class IBIZOrderServiceBase extends EntityService { ...@@ -185,7 +185,7 @@ export default class IBIZOrderServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizorders/${context.ibizorder}`,isloading); /ibizorders/${context.ibizorder}`,{},isloading);
return res; return res;
} }
...@@ -732,7 +732,7 @@ export default class IBIZOrderServiceBase extends EntityService { ...@@ -732,7 +732,7 @@ export default class IBIZOrderServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizorders/${context.ibizorder}/select`,isloading); /ibizorders/${context.ibizorder}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSampleServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsamples/${context.ibizsample}`,isloading); /ibizsamples/${context.ibizsample}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSampleServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsamples/getdraft`,isloading); /ibizsamples/getdraft`,{},isloading);
res.data.ibizsample = data.ibizsample; res.data.ibizsample = data.ibizsample;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSampleServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsamples/${context.ibizsample}`,isloading); /ibizsamples/${context.ibizsample}`,{},isloading);
return res; return res;
} }
...@@ -237,7 +237,7 @@ export default class IBIZSampleServiceBase extends EntityService { ...@@ -237,7 +237,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsamples/${context.ibizsample}/select`,isloading); /ibizsamples/${context.ibizsample}/select`,{},isloading);
return res; return res;
} }
......
...@@ -115,12 +115,12 @@ export default class IBIZSample0001ServiceBase extends EntityService { ...@@ -115,12 +115,12 @@ export default class IBIZSample0001ServiceBase extends EntityService {
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && context.ibizsample0001){ if(context.ibizsample0002 && context.ibizsample0001){
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,isloading); /ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,{},isloading);
return res; return res;
} }
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0001s/${context.ibizsample0001}`,isloading); /ibizsample0001s/${context.ibizsample0001}`,{},isloading);
return res; return res;
} }
...@@ -137,13 +137,13 @@ export default class IBIZSample0001ServiceBase extends EntityService { ...@@ -137,13 +137,13 @@ export default class IBIZSample0001ServiceBase extends EntityService {
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && true){ if(context.ibizsample0002 && true){
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/getdraft`,isloading); /ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/getdraft`,{},isloading);
res.data.ibizsample0001 = data.ibizsample0001; res.data.ibizsample0001 = data.ibizsample0001;
return res; return res;
} }
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0001s/getdraft`,isloading); /ibizsample0001s/getdraft`,{},isloading);
res.data.ibizsample0001 = data.ibizsample0001; res.data.ibizsample0001 = data.ibizsample0001;
return res; return res;
...@@ -161,11 +161,11 @@ export default class IBIZSample0001ServiceBase extends EntityService { ...@@ -161,11 +161,11 @@ export default class IBIZSample0001ServiceBase extends EntityService {
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && context.ibizsample0001){ if(context.ibizsample0002 && context.ibizsample0001){
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,isloading); /ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,{},isloading);
return res; return res;
} }
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0001s/${context.ibizsample0001}`,isloading); /ibizsample0001s/${context.ibizsample0001}`,{},isloading);
return res; return res;
} }
...@@ -275,12 +275,12 @@ export default class IBIZSample0001ServiceBase extends EntityService { ...@@ -275,12 +275,12 @@ export default class IBIZSample0001ServiceBase extends EntityService {
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && context.ibizsample0001){ if(context.ibizsample0002 && context.ibizsample0001){
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/select`,isloading); /ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/select`,{},isloading);
return res; return res;
} }
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0001s/${context.ibizsample0001}/select`,isloading); /ibizsample0001s/${context.ibizsample0001}/select`,{},isloading);
return res; return res;
} }
......
...@@ -92,7 +92,7 @@ export default class IBIZSample0002ServiceBase extends EntityService { ...@@ -92,7 +92,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0002s/${context.ibizsample0002}`,isloading); /ibizsample0002s/${context.ibizsample0002}`,{},isloading);
return res; return res;
} }
...@@ -108,7 +108,7 @@ export default class IBIZSample0002ServiceBase extends EntityService { ...@@ -108,7 +108,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0002s/getdraft`,isloading); /ibizsample0002s/getdraft`,{},isloading);
res.data.ibizsample0002 = data.ibizsample0002; res.data.ibizsample0002 = data.ibizsample0002;
return res; return res;
...@@ -125,7 +125,7 @@ export default class IBIZSample0002ServiceBase extends EntityService { ...@@ -125,7 +125,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0002s/${context.ibizsample0002}`,isloading); /ibizsample0002s/${context.ibizsample0002}`,{},isloading);
return res; return res;
} }
...@@ -207,7 +207,7 @@ export default class IBIZSample0002ServiceBase extends EntityService { ...@@ -207,7 +207,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0002s/${context.ibizsample0002}/select`,isloading); /ibizsample0002s/${context.ibizsample0002}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0003ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0003s/${context.ibizsample0003}`,isloading); /ibizsample0003s/${context.ibizsample0003}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0003ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0003s/getdraft`,isloading); /ibizsample0003s/getdraft`,{},isloading);
res.data.ibizsample0003 = data.ibizsample0003; res.data.ibizsample0003 = data.ibizsample0003;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0003ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0003s/${context.ibizsample0003}`,isloading); /ibizsample0003s/${context.ibizsample0003}`,{},isloading);
return res; return res;
} }
...@@ -268,7 +268,7 @@ export default class IBIZSample0003ServiceBase extends EntityService { ...@@ -268,7 +268,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0003s/${context.ibizsample0003}/select`,isloading); /ibizsample0003s/${context.ibizsample0003}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0004ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0004s/${context.ibizsample0004}`,isloading); /ibizsample0004s/${context.ibizsample0004}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0004ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0004s/getdraft`,isloading); /ibizsample0004s/getdraft`,{},isloading);
res.data.ibizsample0004 = data.ibizsample0004; res.data.ibizsample0004 = data.ibizsample0004;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0004ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0004s/${context.ibizsample0004}`,isloading); /ibizsample0004s/${context.ibizsample0004}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0004ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0004s/${context.ibizsample0004}/select`,isloading); /ibizsample0004s/${context.ibizsample0004}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0005ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0005s/${context.ibizsample0005}`,isloading); /ibizsample0005s/${context.ibizsample0005}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0005ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0005s/getdraft`,isloading); /ibizsample0005s/getdraft`,{},isloading);
res.data.ibizsample0005 = data.ibizsample0005; res.data.ibizsample0005 = data.ibizsample0005;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0005ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0005s/${context.ibizsample0005}`,isloading); /ibizsample0005s/${context.ibizsample0005}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0005ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0005s/${context.ibizsample0005}/select`,isloading); /ibizsample0005s/${context.ibizsample0005}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0006ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0006s/${context.ibizsample0006}`,isloading); /ibizsample0006s/${context.ibizsample0006}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0006ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0006s/getdraft`,isloading); /ibizsample0006s/getdraft`,{},isloading);
res.data.ibizsample0006 = data.ibizsample0006; res.data.ibizsample0006 = data.ibizsample0006;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0006ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0006s/${context.ibizsample0006}`,isloading); /ibizsample0006s/${context.ibizsample0006}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0006ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0006s/${context.ibizsample0006}/select`,isloading); /ibizsample0006s/${context.ibizsample0006}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0007ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0007s/${context.ibizsample0007}`,isloading); /ibizsample0007s/${context.ibizsample0007}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0007ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0007s/getdraft`,isloading); /ibizsample0007s/getdraft`,{},isloading);
res.data.ibizsample0007 = data.ibizsample0007; res.data.ibizsample0007 = data.ibizsample0007;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0007ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0007s/${context.ibizsample0007}`,isloading); /ibizsample0007s/${context.ibizsample0007}`,{},isloading);
return res; return res;
} }
...@@ -237,7 +237,7 @@ export default class IBIZSample0007ServiceBase extends EntityService { ...@@ -237,7 +237,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0007s/${context.ibizsample0007}/select`,isloading); /ibizsample0007s/${context.ibizsample0007}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0008ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0008s/${context.ibizsample0008}`,isloading); /ibizsample0008s/${context.ibizsample0008}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0008ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0008s/getdraft`,isloading); /ibizsample0008s/getdraft`,{},isloading);
res.data.ibizsample0008 = data.ibizsample0008; res.data.ibizsample0008 = data.ibizsample0008;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0008ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0008s/${context.ibizsample0008}`,isloading); /ibizsample0008s/${context.ibizsample0008}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0008ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0008s/${context.ibizsample0008}/select`,isloading); /ibizsample0008s/${context.ibizsample0008}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0009ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0009s/${context.ibizsample0009}`,isloading); /ibizsample0009s/${context.ibizsample0009}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0009ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0009s/getdraft`,isloading); /ibizsample0009s/getdraft`,{},isloading);
res.data.ibizsample0009 = data.ibizsample0009; res.data.ibizsample0009 = data.ibizsample0009;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0009ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0009s/${context.ibizsample0009}`,isloading); /ibizsample0009s/${context.ibizsample0009}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0009ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0009s/${context.ibizsample0009}/select`,isloading); /ibizsample0009s/${context.ibizsample0009}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0010ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0010s/${context.ibizsample0010}`,isloading); /ibizsample0010s/${context.ibizsample0010}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0010ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0010s/getdraft`,isloading); /ibizsample0010s/getdraft`,{},isloading);
res.data.ibizsample0010 = data.ibizsample0010; res.data.ibizsample0010 = data.ibizsample0010;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0010ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0010s/${context.ibizsample0010}`,isloading); /ibizsample0010s/${context.ibizsample0010}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0010ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0010s/${context.ibizsample0010}/select`,isloading); /ibizsample0010s/${context.ibizsample0010}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0011ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0011s/${context.ibizsample0011}`,isloading); /ibizsample0011s/${context.ibizsample0011}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0011ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0011s/getdraft`,isloading); /ibizsample0011s/getdraft`,{},isloading);
res.data.ibizsample0011 = data.ibizsample0011; res.data.ibizsample0011 = data.ibizsample0011;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0011ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0011s/${context.ibizsample0011}`,isloading); /ibizsample0011s/${context.ibizsample0011}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0011ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0011s/${context.ibizsample0011}/select`,isloading); /ibizsample0011s/${context.ibizsample0011}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0012ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0012s/${context.ibizsample0012}`,isloading); /ibizsample0012s/${context.ibizsample0012}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0012ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0012s/getdraft`,isloading); /ibizsample0012s/getdraft`,{},isloading);
res.data.ibizsample0012 = data.ibizsample0012; res.data.ibizsample0012 = data.ibizsample0012;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0012ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0012s/${context.ibizsample0012}`,isloading); /ibizsample0012s/${context.ibizsample0012}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0012ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0012s/${context.ibizsample0012}/select`,isloading); /ibizsample0012s/${context.ibizsample0012}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0013ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0013s/${context.ibizsample0013}`,isloading); /ibizsample0013s/${context.ibizsample0013}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0013ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0013s/getdraft`,isloading); /ibizsample0013s/getdraft`,{},isloading);
res.data.ibizsample0013 = data.ibizsample0013; res.data.ibizsample0013 = data.ibizsample0013;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0013ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0013s/${context.ibizsample0013}`,isloading); /ibizsample0013s/${context.ibizsample0013}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0013ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0013s/${context.ibizsample0013}/select`,isloading); /ibizsample0013s/${context.ibizsample0013}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0014ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0014s/${context.ibizsample0014}`,isloading); /ibizsample0014s/${context.ibizsample0014}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0014ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0014s/getdraft`,isloading); /ibizsample0014s/getdraft`,{},isloading);
res.data.ibizsample0014 = data.ibizsample0014; res.data.ibizsample0014 = data.ibizsample0014;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0014ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0014s/${context.ibizsample0014}`,isloading); /ibizsample0014s/${context.ibizsample0014}`,{},isloading);
return res; return res;
} }
...@@ -237,7 +237,7 @@ export default class IBIZSample0014ServiceBase extends EntityService { ...@@ -237,7 +237,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0014s/${context.ibizsample0014}/select`,isloading); /ibizsample0014s/${context.ibizsample0014}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0015ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0015s/${context.ibizsample0015}`,isloading); /ibizsample0015s/${context.ibizsample0015}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0015ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0015s/getdraft`,isloading); /ibizsample0015s/getdraft`,{},isloading);
res.data.ibizsample0015 = data.ibizsample0015; res.data.ibizsample0015 = data.ibizsample0015;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0015ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0015s/${context.ibizsample0015}`,isloading); /ibizsample0015s/${context.ibizsample0015}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0015ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0015s/${context.ibizsample0015}/select`,isloading); /ibizsample0015s/${context.ibizsample0015}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0016ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0016s/${context.ibizsample0016}`,isloading); /ibizsample0016s/${context.ibizsample0016}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0016ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0016s/getdraft`,isloading); /ibizsample0016s/getdraft`,{},isloading);
res.data.ibizsample0016 = data.ibizsample0016; res.data.ibizsample0016 = data.ibizsample0016;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0016ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0016s/${context.ibizsample0016}`,isloading); /ibizsample0016s/${context.ibizsample0016}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0016ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0016s/${context.ibizsample0016}/select`,isloading); /ibizsample0016s/${context.ibizsample0016}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0017ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0017s/${context.ibizsample0017}`,isloading); /ibizsample0017s/${context.ibizsample0017}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0017ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0017s/getdraft`,isloading); /ibizsample0017s/getdraft`,{},isloading);
res.data.ibizsample0017 = data.ibizsample0017; res.data.ibizsample0017 = data.ibizsample0017;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0017ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0017s/${context.ibizsample0017}`,isloading); /ibizsample0017s/${context.ibizsample0017}`,{},isloading);
return res; return res;
} }
...@@ -237,7 +237,7 @@ export default class IBIZSample0017ServiceBase extends EntityService { ...@@ -237,7 +237,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0017s/${context.ibizsample0017}/select`,isloading); /ibizsample0017s/${context.ibizsample0017}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0018ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0018s/${context.ibizsample0018}`,isloading); /ibizsample0018s/${context.ibizsample0018}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0018ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0018s/getdraft`,isloading); /ibizsample0018s/getdraft`,{},isloading);
res.data.ibizsample0018 = data.ibizsample0018; res.data.ibizsample0018 = data.ibizsample0018;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0018ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0018s/${context.ibizsample0018}`,isloading); /ibizsample0018s/${context.ibizsample0018}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0018ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0018s/${context.ibizsample0018}/select`,isloading); /ibizsample0018s/${context.ibizsample0018}/select`,{},isloading);
return res; return res;
} }
......
...@@ -92,7 +92,7 @@ export default class IBIZSample0019ServiceBase extends EntityService { ...@@ -92,7 +92,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0019s/${context.ibizsample0019}`,isloading); /ibizsample0019s/${context.ibizsample0019}`,{},isloading);
return res; return res;
} }
...@@ -108,7 +108,7 @@ export default class IBIZSample0019ServiceBase extends EntityService { ...@@ -108,7 +108,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0019s/getdraft`,isloading); /ibizsample0019s/getdraft`,{},isloading);
res.data.ibizsample0019 = data.ibizsample0019; res.data.ibizsample0019 = data.ibizsample0019;
return res; return res;
...@@ -125,7 +125,7 @@ export default class IBIZSample0019ServiceBase extends EntityService { ...@@ -125,7 +125,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0019s/${context.ibizsample0019}`,isloading); /ibizsample0019s/${context.ibizsample0019}`,{},isloading);
return res; return res;
} }
...@@ -210,7 +210,7 @@ export default class IBIZSample0019ServiceBase extends EntityService { ...@@ -210,7 +210,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0019s/${context.ibizsample0019}/select`,isloading); /ibizsample0019s/${context.ibizsample0019}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0020ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0020s/${context.ibizsample0020}`,isloading); /ibizsample0020s/${context.ibizsample0020}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0020ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0020s/getdraft`,isloading); /ibizsample0020s/getdraft`,{},isloading);
res.data.ibizsample0020 = data.ibizsample0020; res.data.ibizsample0020 = data.ibizsample0020;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0020ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0020s/${context.ibizsample0020}`,isloading); /ibizsample0020s/${context.ibizsample0020}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0020ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0020s/${context.ibizsample0020}/select`,isloading); /ibizsample0020s/${context.ibizsample0020}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSample0021ServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0021s/${context.ibizsample0021}`,isloading); /ibizsample0021s/${context.ibizsample0021}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSample0021ServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsample0021s/getdraft`,isloading); /ibizsample0021s/getdraft`,{},isloading);
res.data.ibizsample0021 = data.ibizsample0021; res.data.ibizsample0021 = data.ibizsample0021;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSample0021ServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsample0021s/${context.ibizsample0021}`,isloading); /ibizsample0021s/${context.ibizsample0021}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSample0021ServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsample0021s/${context.ibizsample0021}/select`,isloading); /ibizsample0021s/${context.ibizsample0021}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,isloading); /ibizsoftwaresuits/${context.ibizsoftwaresuit}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsoftwaresuits/getdraft`,isloading); /ibizsoftwaresuits/getdraft`,{},isloading);
res.data.ibizsoftwaresuit = data.ibizsoftwaresuit; res.data.ibizsoftwaresuit = data.ibizsoftwaresuit;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,isloading); /ibizsoftwaresuits/${context.ibizsoftwaresuit}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsoftwaresuits/${context.ibizsoftwaresuit}/select`,isloading); /ibizsoftwaresuits/${context.ibizsoftwaresuit}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZStorageServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZStorageServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizstorages/${context.ibizstorage}`,isloading); /ibizstorages/${context.ibizstorage}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZStorageServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZStorageServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizstorages/getdraft`,isloading); /ibizstorages/getdraft`,{},isloading);
res.data.ibizstorage = data.ibizstorage; res.data.ibizstorage = data.ibizstorage;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZStorageServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZStorageServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizstorages/${context.ibizstorage}`,isloading); /ibizstorages/${context.ibizstorage}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZStorageServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZStorageServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizstorages/${context.ibizstorage}/select`,isloading); /ibizstorages/${context.ibizstorage}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZSupplierServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsuppliers/${context.ibizsupplier}`,isloading); /ibizsuppliers/${context.ibizsupplier}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZSupplierServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizsuppliers/getdraft`,isloading); /ibizsuppliers/getdraft`,{},isloading);
res.data.ibizsupplier = data.ibizsupplier; res.data.ibizsupplier = data.ibizsupplier;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZSupplierServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizsuppliers/${context.ibizsupplier}`,isloading); /ibizsuppliers/${context.ibizsupplier}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class IBIZSupplierServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizsuppliers/${context.ibizsupplier}/select`,isloading); /ibizsuppliers/${context.ibizsupplier}/select`,{},isloading);
return res; return res;
} }
......
...@@ -108,7 +108,7 @@ export default class IBIZTASKServiceBase extends EntityService { ...@@ -108,7 +108,7 @@ export default class IBIZTASKServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibiztasks/${context.ibiztask}`,isloading); /ibiztasks/${context.ibiztask}`,{},isloading);
this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[])); this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[]));
return res; return res;
...@@ -125,7 +125,7 @@ export default class IBIZTASKServiceBase extends EntityService { ...@@ -125,7 +125,7 @@ export default class IBIZTASKServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibiztasks/getdraft`,isloading); /ibiztasks/getdraft`,{},isloading);
res.data.ibiztask = data.ibiztask; res.data.ibiztask = data.ibiztask;
this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[])); this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[]));
...@@ -143,7 +143,7 @@ export default class IBIZTASKServiceBase extends EntityService { ...@@ -143,7 +143,7 @@ export default class IBIZTASKServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibiztasks/${context.ibiztask}`,isloading); /ibiztasks/${context.ibiztask}`,{},isloading);
return res; return res;
} }
...@@ -271,7 +271,7 @@ export default class IBIZTASKServiceBase extends EntityService { ...@@ -271,7 +271,7 @@ export default class IBIZTASKServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibiztasks/${context.ibiztask}/select`,isloading); /ibiztasks/${context.ibiztask}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class IBIZUNIProductServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizuniproducts/${context.ibizuniproduct}`,isloading); /ibizuniproducts/${context.ibizuniproduct}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class IBIZUNIProductServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/ibizuniproducts/getdraft`,isloading); /ibizuniproducts/getdraft`,{},isloading);
res.data.ibizuniproduct = data.ibizuniproduct; res.data.ibizuniproduct = data.ibizuniproduct;
return res; return res;
...@@ -124,7 +124,7 @@ export default class IBIZUNIProductServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/ibizuniproducts/${context.ibizuniproduct}`,isloading); /ibizuniproducts/${context.ibizuniproduct}`,{},isloading);
return res; return res;
} }
...@@ -243,7 +243,7 @@ export default class IBIZUNIProductServiceBase extends EntityService { ...@@ -243,7 +243,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/ibizuniproducts/${context.ibizuniproduct}/select`,isloading); /ibizuniproducts/${context.ibizuniproduct}/select`,{},isloading);
return res; return res;
} }
......
...@@ -91,7 +91,7 @@ export default class MicroComponentServiceBase extends EntityService { ...@@ -91,7 +91,7 @@ export default class MicroComponentServiceBase extends EntityService {
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/microcomponents/${context.microcomponent}`,isloading); /microcomponents/${context.microcomponent}`,{},isloading);
return res; return res;
} }
...@@ -107,7 +107,7 @@ export default class MicroComponentServiceBase extends EntityService { ...@@ -107,7 +107,7 @@ export default class MicroComponentServiceBase extends EntityService {
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/demosys/demoapi let res:any = await Http.getInstance().get(`/demosys/demoapi
/microcomponents/getdraft`,isloading); /microcomponents/getdraft`,{},isloading);
res.data.microcomponent = data.microcomponent; res.data.microcomponent = data.microcomponent;
return res; return res;
...@@ -124,7 +124,7 @@ export default class MicroComponentServiceBase extends EntityService { ...@@ -124,7 +124,7 @@ export default class MicroComponentServiceBase extends EntityService {
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/demosys/demoapi let res:any = Http.getInstance().delete(`/demosys/demoapi
/microcomponents/${context.microcomponent}`,isloading); /microcomponents/${context.microcomponent}`,{},isloading);
return res; return res;
} }
...@@ -206,7 +206,7 @@ export default class MicroComponentServiceBase extends EntityService { ...@@ -206,7 +206,7 @@ export default class MicroComponentServiceBase extends EntityService {
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/demosys/demoapi let res:any = Http.getInstance().get(`/demosys/demoapi
/microcomponents/${context.microcomponent}/select`,isloading); /microcomponents/${context.microcomponent}/select`,{},isloading);
return res; return res;
} }
......
...@@ -160,7 +160,7 @@ export class Http { ...@@ -160,7 +160,7 @@ export class Http {
* @returns {Promise<any>} * @returns {Promise<any>}
* @memberof Http * @memberof Http
*/ */
public delete(url: string, isloading?: boolean,data?:any, serialnumber?: number): Promise<any> { public delete(url: string, data?:any,isloading?: boolean, serialnumber?: number): Promise<any> {
if (isloading) { if (isloading) {
this.beginLoading(); this.beginLoading();
} }
......
...@@ -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: 'IBIZBOOKUsr8GridView' + (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: 'IBIZBOOKUsr8GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ 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; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1425,7 +1425,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1425,7 +1425,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { 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; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1495,7 +1495,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1495,7 +1495,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1603,7 +1603,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1603,7 +1603,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1695,7 +1695,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1695,7 +1695,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ 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; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1391,7 +1391,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1391,7 +1391,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { 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; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1461,7 +1461,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1461,7 +1461,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1569,7 +1569,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1569,7 +1569,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1661,7 +1661,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1661,7 +1661,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ 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; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1494,7 +1494,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1494,7 +1494,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { 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; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1564,7 +1564,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1564,7 +1564,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1672,7 +1672,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1672,7 +1672,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1764,7 +1764,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -1764,7 +1764,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '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; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -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: '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; 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: '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; 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: '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{ }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: '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{ }else{
Object.assign(item,{viewparams:this.viewparams}); Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){ if(item.ibizbook){
......
...@@ -70,6 +70,11 @@ export default class Usr4Model { ...@@ -70,6 +70,11 @@ export default class Usr4Model {
prop: 'n_ibizbookname_like', prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM' dataType: 'QUERYPARAM'
}, },
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{ {
......
...@@ -11,16 +11,6 @@ ...@@ -11,16 +11,6 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "returntime",
"name" : "returntime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者", "caption" : "作者",
"codeName" : "author", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -31,11 +21,11 @@ ...@@ -31,11 +21,11 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "出版社", "caption" : "归还日期",
"codeName" : "press", "codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press", "dataItemName" : "returntime",
"name" : "press", "name" : "returntime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
...@@ -50,6 +40,16 @@ ...@@ -50,6 +40,16 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "出版社",
"codeName" : "press",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press",
"name" : "press",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, { }, {
"caption" : "借出日期", "caption" : "借出日期",
"codeName" : "lendouttime", "codeName" : "lendouttime",
......
...@@ -19,16 +19,6 @@ ...@@ -19,16 +19,6 @@
} }
} ], } ],
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述", "caption" : "图书描述",
"codeName" : "subtext", "codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -48,6 +38,16 @@ ...@@ -48,6 +38,16 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ], } ],
"getPSDETreeNodeRSs" : [ { "getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : { "getChildPSDETreeNode" : {
......
...@@ -34,16 +34,6 @@ ...@@ -34,16 +34,6 @@
"id" : "GANTT" "id" : "GANTT"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "returntime",
"name" : "returntime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者", "caption" : "作者",
"codeName" : "author", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -54,11 +44,11 @@ ...@@ -54,11 +44,11 @@
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "出版社", "caption" : "归还日期",
"codeName" : "press", "codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press", "dataItemName" : "returntime",
"name" : "press", "name" : "returntime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
...@@ -73,6 +63,16 @@ ...@@ -73,6 +63,16 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "出版社",
"codeName" : "press",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press",
"name" : "press",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, { }, {
"caption" : "借出日期", "caption" : "借出日期",
"codeName" : "lendouttime", "codeName" : "lendouttime",
......
...@@ -75,16 +75,6 @@ ...@@ -75,16 +75,6 @@
"id" : "TREEGRIDEX" "id" : "TREEGRIDEX"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述", "caption" : "图书描述",
"codeName" : "subtext", "codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -104,6 +94,16 @@ ...@@ -104,6 +94,16 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ], } ],
"getPSDETreeNodeRSs" : [ { "getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : { "getChildPSDETreeNode" : {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册