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

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

上级 833b154e
.app-scroll-container {
height: 100%;
width: 100%;
border: 1px solid red;
.app-scroll-container__header,
.app-scroll-container__bottom {
......
......@@ -2,7 +2,6 @@
width: 100%;
height: 100%;
display: flex;
border: 1px solid blue;
.simpleflex-item__pos{
height: 100%;
width: 100%;
......
......@@ -39,7 +39,7 @@ export class EntityServiceRegister {
* @memberof EntityServiceRegister
*/
protected init(): void {
this.allEntityService.set('ibizbook', () => import('@/service/ibizbook/ibizbook-service'));
this.allEntityService.set('ibizbook', () => import('@/service/ibizbook/ibizbook-service'));
this.allEntityService.set('ibizsample0019', () => import('@/service/ibizsample0019/ibizsample0019-service'));
this.allEntityService.set('ibizsample0009', () => import('@/service/ibizsample0009/ibizsample0009-service'));
this.allEntityService.set('ibizcustom', () => import('@/service/ibizcustom/ibizcustom-service'));
......
......@@ -230,27 +230,43 @@ export default class DYNADASHBOARDUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof DYNADASHBOARDUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof DYNADASHBOARDUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof DYNADASHBOARDUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof DYNADASHBOARDUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZAccountUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAccountUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAccountUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAccountUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAccountUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -128,6 +128,7 @@ export default class IBIZAPPCTRLUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPCTRLUIService
*/
public async IBIZAPPCTRL_MORE(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -173,6 +174,7 @@ export default class IBIZAPPCTRLUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPCTRLUIService
*/
public async IBIZAPPCTRL_openDocument(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -321,27 +323,43 @@ export default class IBIZAPPCTRLUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPCTRLUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPCTRLUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPCTRLUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPCTRLUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -128,6 +128,7 @@ export default class IBIZAPPEDITORUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPEDITORUIService
*/
public async IBIZAPPEDITOR_MORE(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -173,6 +174,7 @@ export default class IBIZAPPEDITORUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPEDITORUIService
*/
public async IBIZAPPEDITOR_openDocument(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -321,27 +323,43 @@ export default class IBIZAPPEDITORUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEDITORUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEDITORUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEDITORUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEDITORUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -128,6 +128,7 @@ export default class IBIZAPPEXTENDEDITORUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPEXTENDEDITORUIService
*/
public async IBIZAPPEXTENDEDITOR_MORE(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -173,6 +174,7 @@ export default class IBIZAPPEXTENDEDITORUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPEXTENDEDITORUIService
*/
public async IBIZAPPEXTENDEDITOR_openDocument(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -321,27 +323,43 @@ export default class IBIZAPPEXTENDEDITORUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEXTENDEDITORUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEXTENDEDITORUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEXTENDEDITORUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPEXTENDEDITORUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -128,6 +128,7 @@ export default class IBIZAPPVIEWUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPVIEWUIService
*/
public async IBIZAPPVIEW_MORE(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -173,6 +174,7 @@ export default class IBIZAPPVIEWUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPVIEWUIService
*/
public async IBIZAPPVIEW_openDocument(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -216,6 +218,7 @@ export default class IBIZAPPVIEWUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZAPPVIEWUIService
*/
public async IBIZAPPVIEW_openInstance(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -364,27 +367,43 @@ export default class IBIZAPPVIEWUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPVIEWUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZAPPVIEWUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPVIEWUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZAPPVIEWUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -153,8 +153,9 @@ export default class GridLoadUILogicBase {
const retParam = actionContext.getParam('viewParam');
if (dstParam) {
try {
const service: any = new IBIZBOOKService();
const result = await service['executeAppDELogic']('initData', actionContext.context, dstParam.getReal() ? dstParam.getReal() : {});
const service: any = window.entityServiceRegister.getService('ibizbook');
const deLogic: InitDataLogic = new InitDataLogic({ context: actionContext.context, data: dstParam.getReal() ? dstParam.getReal() : {} });
const result = await deLogic.onExecute(actionContext.context, dstParam.getReal() ? dstParam.getReal() : {}, false);
if (result) {
if(retParam){
retParam.bind(result);
......@@ -215,7 +216,7 @@ export default class GridLoadUILogicBase {
const retParam = actionContext.getParam('Default');
if (dstParam) {
try {
const service: any = new IBIZBOOKService();
const service: any = window.entityServiceRegister.getService('ibizbook');
const getTempContext = (data: any) => {
const tempContext = Util.deepCopy(actionContext.context);
if (data) {
......
......@@ -206,6 +206,7 @@ export default class IBIZBOOKUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZBOOKUIService
*/
public async IBIZBOOK_Delete(args: any[],context:any = {}, params:any = {}, $event?: any, xData?: any,actionContext?: any,srfParentDeName?:string){
let data: any = {};
......@@ -287,6 +288,7 @@ export default class IBIZBOOKUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZBOOKUIService
*/
public async IBIZBOOK_Edit(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -335,6 +337,7 @@ export default class IBIZBOOKUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZBOOKUIService
*/
public async IBIZBOOK_openDocument(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -378,6 +381,7 @@ export default class IBIZBOOKUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZBOOKUIService
*/
public async IBIZBOOK_openKanbanDocument(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -418,10 +422,11 @@ export default class IBIZBOOKUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZBOOKUIService
*/
public async IBIZBOOK_toolbar_CustomView_layouttoolbar_deuiaction1_click(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
actionContext.$Notice.error({ title: '错误', desc: '不支持单项数据' });
return this.executeUILogic('GridLoad', args, context, params, $event, xData, actionContext, srfParentDeName);
}
......@@ -540,27 +545,43 @@ export default class IBIZBOOKUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZBOOKUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZBOOKUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZBOOKUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZBOOKUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -231,27 +231,43 @@ export default class IBIZCPUUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCPUUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCPUUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCPUUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCPUUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZCustomUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -233,27 +233,43 @@ export default class IBIZCustomer_INTFUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomer_INTFUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomer_INTFUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomer_INTFUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomer_INTFUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZCustomerMGUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerMGUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerMGUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerMGUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerMGUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -241,27 +241,43 @@ export default class IBIZCustomerUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZCustomerUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -235,27 +235,43 @@ export default class IBIZHardwareUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZHardwareUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZHardwareUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZHardwareUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZHardwareUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -249,27 +249,43 @@ export default class IBIZOrderDetailUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZOrderDetailUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZOrderDetailUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZOrderDetailUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZOrderDetailUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -235,27 +235,43 @@ export default class IBIZOrderTypeUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZOrderTypeUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZOrderTypeUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZOrderTypeUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZOrderTypeUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -207,6 +207,7 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_BUIAction1(args: any[],context:any = {}, params:any = {}, $event?: any, xData?: any,actionContext?: any,srfParentDeName?:string){
let data: any = {};
......@@ -290,6 +291,7 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_Delete(args: any[],context:any = {}, params:any = {}, $event?: any, xData?: any,actionContext?: any,srfParentDeName?:string){
let confirmResult:boolean = await new Promise((resolve: any, reject: any) => {
......@@ -385,6 +387,7 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_FUIAction1(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -432,6 +435,7 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_ZDYUpdate(args: any[],context:any = {}, params:any = {}, $event?: any, xData?: any,actionContext?: any,srfParentDeName?:string){
let data: any = {};
......@@ -513,6 +517,7 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_mulUpdate(args: any[],context:any = {}, params:any = {}, $event?: any, xData?: any,actionContext?: any,srfParentDeName?:string){
let data: any = {};
......@@ -595,6 +600,7 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_open_document(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -635,10 +641,11 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_panel_Usr1102678360_open_yuque_click(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
actionContext.$Notice.error({ title: '错误', desc: '不支持单项数据' });
return this.executeUILogic('OpenYuQue', args, context, params, $event, xData, actionContext, srfParentDeName);
}
/**
......@@ -652,10 +659,11 @@ export default class IBIZOrderUIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZOrderUIService
*/
public async IBIZOrder_toolbar_Usr2GridViewtoolbar_deuiaction1_click(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
actionContext.$Notice.error({ title: '错误', desc: '不支持单项数据' });
return this.executeUILogic('GridViewLoad', args, context, params, $event, xData, actionContext, srfParentDeName);
}
......@@ -774,27 +782,43 @@ export default class IBIZOrderUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZOrderUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZOrderUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZOrderUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZOrderUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSampleUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSampleUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSampleUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSampleUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSampleUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -136,6 +136,7 @@ export default class IBIZSample0001UIServiceBase extends UIService {
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
* @memberof IBIZSample0001UIService
*/
public async IBIZSample0001_openDocument(args: any[], context:any = {} ,params: any={}, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
......@@ -281,27 +282,43 @@ export default class IBIZSample0001UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0001UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0001UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0001UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0001UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -235,27 +235,43 @@ export default class IBIZSample0002UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0002UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0002UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0002UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0002UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -251,27 +251,43 @@ export default class IBIZSample0003UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0003UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0003UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0003UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0003UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0004UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0004UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0004UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0004UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0004UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0005UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0005UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0005UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0005UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0005UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0006UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0006UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0006UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0006UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0006UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0007UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0007UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0007UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0007UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0007UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0008UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0008UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0008UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0008UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0008UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0009UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0009UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0009UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0009UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0009UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0010UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0010UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0010UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0010UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0010UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0011UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0011UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0011UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0011UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0011UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0012UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0012UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0012UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0012UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0012UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -232,27 +232,43 @@ export default class IBIZSample0013UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0013UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0013UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0013UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0013UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -232,27 +232,43 @@ export default class IBIZSample0014UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0014UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0014UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0014UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0014UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -231,27 +231,43 @@ export default class IBIZSample0015UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0015UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0015UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0015UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0015UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0016UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0016UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0016UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0016UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0016UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -239,27 +239,43 @@ export default class IBIZSample0017UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0017UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0017UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0017UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0017UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -232,27 +232,43 @@ export default class IBIZSample0018UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0018UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0018UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0018UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0018UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0019UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0019UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0019UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0019UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0019UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSample0020UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0020UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0020UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0020UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0020UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -238,27 +238,43 @@ export default class IBIZSample0021UIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0021UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSample0021UIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0021UIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSample0021UIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -233,27 +233,43 @@ export default class IBIZSoftwareSuitUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSoftwareSuitUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSoftwareSuitUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSoftwareSuitUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSoftwareSuitUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -231,27 +231,43 @@ export default class IBIZStorageUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZStorageUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZStorageUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZStorageUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZStorageUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -230,27 +230,43 @@ export default class IBIZSupplierUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSupplierUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZSupplierUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSupplierUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZSupplierUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -231,27 +231,43 @@ export default class IBIZTASKUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZTASKUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZTASKUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZTASKUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZTASKUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -232,27 +232,43 @@ export default class IBIZTASKTEAMUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZTASKTEAMUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZTASKTEAMUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZTASKTEAMUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZTASKTEAMUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -239,27 +239,43 @@ export default class IBIZUNIProductUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZUNIProductUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof IBIZUNIProductUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZUNIProductUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof IBIZUNIProductUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -232,27 +232,43 @@ export default class MicroComponentUIServiceBase extends UIService {
}
/**
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof MicroComponentUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
* 获取数据对象当前操作标识
*
* @param data 当前数据
* @memberof MicroComponentUIServiceBase
*/
public getDEMainStateOPPrivs(data:any){
if(this.getDEMainStateTag(data)){
return this.allDeMainStateOPPrivsMap.get((this.getDEMainStateTag(data) as string));
}else{
return null;
}
}
}
/**
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof MicroComponentUIServiceBase
*/
public getAllOPPrivs(data:any){
* 获取数据对象所有的操作标识
*
* @param data 当前数据
* @memberof MicroComponentUIServiceBase
*/
public getAllOPPrivs(data:any){
return this.authService.getOPPrivs(this.getDEMainStateOPPrivs(data));
}
}
/**
* 执行界面逻辑
*
* @param {string} name
* @param {any[]} args
* @param {*} [context={}]
* @param {*} [params={}]
* @param {*} [$event]
* @param {*} [xData]
* @param {*} [actionContext]
* @param {string} [srfParentDeName]
* @memberof UIService
*/
public executeUILogic(name: string, args: any[], context?: any, params?: any, $event?: any, xData?: any, actionContext?: any, srfParentDeName?: string | undefined): void {
}
}
\ No newline at end of file
......@@ -39,7 +39,7 @@ export class UIServiceRegister {
* @memberof UIServiceRegister
*/
protected init(): void {
this.allUIService.set('ibizbook', () => import('@/uiservice/ibizbook/ibizbook-ui-service'));
this.allUIService.set('ibizbook', () => import('@/uiservice/ibizbook/ibizbook-ui-service'));
this.allUIService.set('ibizsample0019', () => import('@/uiservice/ibizsample0019/ibizsample0019-ui-service'));
this.allUIService.set('ibizsample0009', () => import('@/uiservice/ibizsample0009/ibizsample0009-ui-service'));
this.allUIService.set('ibizcustom', () => import('@/uiservice/ibizcustom/ibizcustom-ui-service'));
......
......@@ -663,7 +663,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: 'IBIZBOOKCustomView_layout' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr3GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -699,7 +699,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public loadDraft(opt: any = {},mode?:string): void {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCustomView_layout' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr3GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -1800,7 +1800,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1835,7 +1835,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public loadDraft(opt: any = {}): void {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1897,7 +1897,7 @@ export default class MainBase 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: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -2005,7 +2005,7 @@ export default class MainBase 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: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -2082,7 +2082,7 @@ export default class MainBase 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: 'IBIZBOOKOptionView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKOptionView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -522,7 +522,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -638,7 +638,7 @@ export default class ListExpBase 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: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.removeAction') as string) });
return;
}
if (datas.length === 0) {
......@@ -733,7 +733,7 @@ export default class ListExpBase 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: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderListExpView' + (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);
......@@ -741,7 +741,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZOrderListExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZOrderListExpView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册