Esempio n. 1
0
        private static List <AppService> GetAppServiceByAppId(int appId)
        {
            var parmater = new AppServiceSearchPamater();

            parmater.SetAppId(appId, PamaterOperationType.Equal);
            parmater.SetStatus(null, PamaterOperationType.In);
            parmater.StatusList = new List <byte>()
            {
                0, 1
            };
            var source = AppServiceDal.GetList(parmater);

            if (source != null)
            {
                var functionParamter = new AppFunctionSearchPamater();
                functionParamter.SetAppServiceId(null, PamaterOperationType.In);
                functionParamter.AppServiceIdList = source.Select(a => a.AppServiceId).ToList();
                functionParamter.SetStatus(null, PamaterOperationType.In);
                functionParamter.StatusList = new List <byte>()
                {
                    0, 1
                };
                var functionSource = AppFunctionDal.GetList(functionParamter);
                if (functionSource != null)
                {
                    source.ForEach(ap =>
                    {
                        ap.AppFunctions = functionSource.FindAll(af => af.AppServiceId == ap.AppServiceId);
                    });
                }
            }

            return(source);
        }
Esempio n. 2
0
        public FunctionListResult <AppService> GetJobAuthority(int jobId)
        {
            var r       = new FunctionListResult <AppService>();
            var pamater = new JobGrantSearchPamater();

            pamater.SetJobId(jobId, PamaterOperationType.Equal);
            var list = JobGrantDal.GetList(pamater);
            List <AppService> asList = null;

            r.Data = asList;
            if (list != null)
            {
                asList = list.Select(a => new AppService()
                {
                    AppServiceId = a.AppServiceId, AppFunctions = new List <AppFunction>()
                }).ToList();
                var functionPamater = new AppFunctionSearchPamater();
                functionPamater.SetAppFuntionId(null, PamaterOperationType.In);
                functionPamater.AppFuntionIdList = list.Select(a => a.AppFunctionId).ToList();
                functionPamater.SetStatus(1, PamaterOperationType.Equal);
                var appFunctions = AppFunctionDal.GetList(functionPamater);
                if (appFunctions != null)
                {
                    if (asList != null)
                    {
                        asList.ForEach(t => {
                            t.AppFunctions = appFunctions.FindAll(af => af.AppServiceId == t.AppServiceId);
                        });
                    }
                }
            }
            return(r);
        }
Esempio n. 3
0
        public FunctionOpenResult <bool> CancleById(List <int> idList)
        {
            var r = new FunctionOpenResult <bool>();

            r.Data = AppFunctionDal.CancleById(idList);
            return(r);
        }
Esempio n. 4
0
        public FunctionResult <AppFunction> Create(AppFunction info)
        {
            var r = new FunctionResult <AppFunction>(); int id = AppFunctionDal.Add(info); if (id > 0)

            {
                r.Data = info; r.Data.AppFuntionId = id;
            }

            return(r);
        }
Esempio n. 5
0
        public FunctionListResult <AppService> Add(List <AppService> data)
        {
            var r = new FunctionListResult <AppService>();

            if (data != null)
            {
                data.ForEach(ap => {
                    ap.AppServiceId = AppServiceDal.Add(ap);
                    if (ap.AppFunctions != null)
                    {
                        ap.AppFunctions.ForEach(af => {
                            af.AppFuntionId = AppFunctionDal.Add(af);
                        });
                    }
                });
                r.Data = data;
            }
            return(r);
        }
Esempio n. 6
0
 public GridPager <AppFunction> GetPager(GridPagerPamater <AppFunctionSearchPamater> searchParam)
 {
     var r = AppFunctionDal.GetGridPager(searchParam); return(r);
 }
Esempio n. 7
0
 public FunctionListResult <AppFunction> GetList(AppFunctionSearchPamater pamater)
 {
     var r = new FunctionListResult <AppFunction>(); r.Data = AppFunctionDal.GetList(pamater); return(r);
 }
Esempio n. 8
0
 public FunctionResult <AppFunction> Get(int Id)
 {
     var r = new FunctionResult <AppFunction>(); r.Data = AppFunctionDal.Get(Id); return(r);
 }
Esempio n. 9
0
 public FunctionOpenResult <bool> DeleteByID(List <int> idList)
 {
     var r = new FunctionOpenResult <bool>(); r.Data = AppFunctionDal.Delete(idList); return(r);
 }
Esempio n. 10
0
 public FunctionOpenResult <bool> UpdateByID(AppFunction info)
 {
     var r = new FunctionOpenResult <bool>(); r.Data = AppFunctionDal.Update(info) > 0; return(r);
 }
Esempio n. 11
0
        public FunctionOpenResult <bool> Update(int appInstanceId, int appId)
        {
            Rel_AppInstance_AppService raas = Rel_AppInstance_AppServiceDal.GetByAppInstanceId(appInstanceId);
            List <AppService>          data = (raas != null)?JsonHelper.Deserialize <List <AppService> >(raas.AppService):null;
            var r = new FunctionOpenResult <bool>();

            r.Data = false;
            if (data != null)
            {
                Rel_AppInstance_AppServiceDal.UpdateAppInstanceId(new Rel_AppInstance_AppService()
                {
                    AppInstanceId = appInstanceId,
                    AppService    = JsonHelper.Serlaize <List <AppService> >(data)
                });
                List <AppService> source = GetAppServiceByAppId(appId);
                data.ForEach(ap => {
                    var sap = source.Find(t => t.Name == ap.Name);
                    if (sap != null)
                    {
                        if (ap.AppFunctions != null)
                        {
                            ap.AppFunctions.ForEach(af => {
                                if (!(sap.AppFunctions.RemoveAll(t => t.FunctionName == af.FunctionName) > 0))//将已经保存的数据消除,如果消除数量为0表示此数据需要保存
                                {
                                    AppFunctionDal.Add(af);
                                }
                            });
                            if (sap.AppFunctions.Count > 0)//表示有实例未拥有的数据存在,需要打上无匹配的标识
                            {
                                sap.AppFunctions.ForEach(af => {
                                    AppFunctionDal.SigningNoMatching(af.AppFuntionId);
                                });
                                sap.AppFunctions.Clear();
                            }
                        }
                    }
                    else
                    {//数据中未找到的的AppService进行插入
                        int appServiceId = AppServiceDal.Add(ap);
                        if (appServiceId > 0)
                        {
                            if (ap.AppFunctions != null)
                            {
                                ap.AppFunctions.ForEach(af => {
                                    AppFunctionDal.Add(af);
                                });
                            }
                        }
                    }
                });
                var sapList = source.FindAll(ap => ap.AppFunctions.Count > 0);//找出无匹配的AppService,并且打上无匹配标识
                if (sapList != null)
                {
                    sapList.ForEach(ap => {
                        AppServiceDal.SigningNoMatching(ap.AppServiceId);
                        AppFunctionDal.SigningNoMatchingByAppServiceId(ap.AppServiceId);
                    });
                }
                r.Data = true;
            }
            return(r);
        }