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

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

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