Beispiel #1
0
        public ActionResponse UpdateGateInfo(WrapperUpdateProject model)
        {
            //bool output = false;
            ActionResponse ar = new ActionResponse();

            if (model.estimate != null)
            {
                using (DatabaseContext db = new DatabaseContext())
                {
                    using (DbContextTransaction transaction = db.Database.BeginTransaction())
                    {
                        try
                        {
                            //Delete Functionality

                            string listRecDel = model.estimate[0].DeletRows;

                            if (listRecDel != null)
                            {
                                string[] ids = listRecDel.Split(',');

                                for (int i = 0; i < ids.Length; i++)
                                {
                                    int recid = Convert.ToInt32(ids[i]);

                                    List <Estimate> deleteList = db.Estimates.Where(id => id.projectFunctionId == recid).ToList();
                                    foreach (Estimate e in deleteList)
                                    {
                                        db.Entry(e).State = EntityState.Deleted;
                                        db.SaveChanges();
                                    }
                                    ProjectFunction pf = db.ProjectFunctions.SingleOrDefault(id => id.ProjFuncId == recid);
                                    db.Entry(pf).State = EntityState.Deleted;
                                    db.SaveChanges();
                                }
                            }


                            GateVersion gv = model.gateVersion;
                            // gv.gvId = model.gateVersion.gvId;
                            db.Entry(gv).State = EntityState.Modified;
                            db.SaveChanges();

                            // List<Estimate> NewEstimate = model.estimate.Where(o => o.projectFunctionId == 0).ToList();

                            List <Estimate> NewGroupEstimate = model.estimate.GroupBy(x => new { x.ProjFuncId, x.GateversionId, x.FuncId, x.AppId, x.RelId })
                                                               .Select(o => o.First()).ToList().Select(o => new Estimate
                            {
                                ProjFuncId    = o.ProjFuncId,
                                GateversionId = o.GateversionId,
                                FuncId        = o.FuncId,
                                AppId         = o.AppId,
                                RelId         = o.RelId
                            }).ToList();

                            foreach (Estimate e in NewGroupEstimate)
                            {
                                ProjectFunction pf = new ProjectFunction();
                                pf.ProjFuncId    = e.ProjFuncId;
                                pf.AppId         = e.AppId;
                                pf.RelId         = e.RelId;
                                pf.FuncId        = e.FuncId;
                                pf.GateversionId = e.GateversionId;
                                db.ProjectFunctions.Add(pf);

                                if (pf.ProjFuncId > 0)
                                {
                                    db.Entry(pf).State = EntityState.Modified;
                                }


                                db.SaveChanges();

                                var resultEstimate = model.estimate.Where(x => x.FuncId == pf.FuncId);
                                foreach (var item2 in resultEstimate)
                                {
                                    if (item2.Flag != "X")
                                    {
                                        Estimate est = new Estimate();
                                        est.projectFunctionId = pf.ProjFuncId;
                                        est.estId             = item2.estId;
                                        est.estDays           = item2.estDays;
                                        est.phaseCode         = item2.phaseCode;
                                        est.roleId            = item2.roleId;
                                        est.estimatedOn       = item2.estimatedOn;
                                        est.userEstimate      = item2.userEstimate;
                                        db.Estimates.Add(est);
                                        if (est.estId > 0)
                                        {
                                            if (item2.Flag == "D")
                                            {
                                                db.Entry(est).State = EntityState.Deleted;
                                            }
                                            else
                                            {
                                                db.Entry(est).State = EntityState.Modified;
                                            }
                                        }
                                        db.SaveChanges();
                                    }
                                }
                            }


                            transaction.Commit();

                            MyLogger.GetInstance().Info("gate info updated successfully.." + model.gateVersion.gvProjectId);

                            ar.IsSuccess = true;
                        }
                        catch (Exception ex)
                        {
                            MyLogger.GetInstance().Error("Error - updating gate info " + model.gateVersion.gvProjectId);
                            MyLogger.GetInstance().Error("Error - updating gate info " + ex.Message);

                            transaction.Rollback();
                            ar.IsSuccess = false;
                            ar.ErrorMsg  = "Database exception";
                        };
                    }
                }
            }
            else
            {
                ar.IsSuccess = false;
                ar.ErrorMsg  = "Model invalid";
            }

            return(ar);
        }
Beispiel #2
0
        public ActionResponse GateRemove(int pid, int gid, int gl)
        {
            ActionResponse ar = new ActionResponse();

            using (DatabaseContext db = new DatabaseContext())
            {
                using (DbContextTransaction transaction = db.Database.BeginTransaction())
                {
                    try
                    {
                        GateVersion            gv       = db.GateVersions.Where(x => x.gvProjectId == pid && x.gvGateId == gid && x.gvLine == gl).First();
                        List <ProjectFunction> listfunc = db.ProjectFunctions.Where(x => x.GateversionId == gv.gvId).ToList();
                        foreach (var item in listfunc)
                        {
                            List <Estimate> listEstimate = db.Estimates.Where(x => x.projectFunctionId == item.ProjFuncId).ToList();
                            foreach (var obj in listEstimate)
                            {
                                db.Entry(obj).State = EntityState.Deleted;
                                db.SaveChanges();
                            }
                            db.Entry(item).State = EntityState.Deleted;
                            db.SaveChanges();
                        }
                        db.Entry(gv).State = EntityState.Deleted;
                        db.SaveChanges();

                        List <EstimateAttachment> listattachmets = db.EstimateAttachments.
                                                                   Where(x => x.projectId == pid && x.gateId == gid && x.lineNo == gl).ToList();
                        foreach (var item in listattachmets)
                        {
                            db.Entry(item).State = EntityState.Deleted;
                            db.SaveChanges();
                        }
                        var count = db.GateVersions.Count(t => t.gvProjectId == pid);

                        if (count == 0)
                        {
                            Project prj = db.Projects.Where(x => x.id == pid).First();
                            db.Entry(prj).State = EntityState.Deleted;
                            db.SaveChanges();
                        }
                        transaction.Commit();

                        ar.SuccessMsg = "Gate remove successfully";
                        ar.IsSuccess  = true;
                        MyLogger.GetInstance().Info(ar.SuccessMsg);
                    }
                    catch (Exception ex)
                    {
                        transaction.Rollback();

                        ar.IsSuccess = false;

                        if (ex.InnerException.Message != null)
                        {
                            ar.ErrorMsg = ex.InnerException.Message;
                        }
                        else
                        {
                            ar.ErrorMsg = ex.Message;
                        }
                        MyLogger.GetInstance().Error("Error - Gate removal " + pid);
                        MyLogger.GetInstance().Error(ar.ErrorMsg);
                    }
                }
            }
            return(ar);
        }
Beispiel #3
0
        public WrapperViewEditProject GetViewForUpdateGate(int projectId, int gateId, int gateLine)
        {
            string msg = "";
            WrapperViewEditProject wp = new WrapperViewEditProject();

            Project     p  = new Project();
            GateVersion gv = new GateVersion();

            wp.project     = p;
            wp.gateversion = gv;
            using (DatabaseContext db = new DatabaseContext())
            {
                //  ArrayList dayslist = new ArrayList();
                List <GroupFunction> dayslist = new List <GroupFunction>();
                try
                {
                    List <DbViewClass> dbview = db.gridClasses.AsNoTracking()
                                                .Where(n => n.id == projectId && n.gvGateId == gateId && n.gvLine == gateLine)
                                                .OrderBy(n => n.ProjFuncId).
                                                ToList();

                    int           tempFuncId    = 0;
                    string        str           = "";
                    string        flag          = "X";
                    int           printflag     = 0;
                    int           idfunc        = 0;
                    int           idrel         = 0;
                    int           idapp         = 0;
                    int           estimateRecId = 0;
                    string        namefunc      = "";
                    int           totalDays     = 0;
                    int           projfuncid    = 0;
                    GroupFunction gf            = null;
                    foreach (var aa in dbview)
                    {
                        if (aa.FuncId != tempFuncId)
                        {
                            if (printflag == 1)
                            {
                                gf            = new GroupFunction();
                                gf.appid      = idapp;
                                gf.releaseId  = idrel;
                                gf.FuncId     = idfunc;
                                gf.FuncName   = namefunc;
                                gf.daysString = str;
                                gf.totalDays  = totalDays;
                                gf.ProjFuncId = projfuncid;
                                dayslist.Add(gf);
                                totalDays = 0;
                                str       = "";
                            }
                            printflag = 1;
                        }
                        if (str.Length == 0)
                        {
                            str = aa.estId.ToString() + "," + aa.phaseCode.ToString() + "," + aa.roleId.ToString() + "," + aa.estDays.ToString() + "," + flag;
                        }
                        else
                        {
                            str = str + "-" + aa.estId.ToString() + "," + aa.phaseCode.ToString() + "," + aa.roleId.ToString() + "," + aa.estDays.ToString() + "," + flag;
                        }

                        idfunc        = aa.FuncId;
                        idrel         = aa.RelId;
                        idapp         = aa.AppId;
                        namefunc      = aa.FuncName;
                        estimateRecId = aa.estId;
                        projfuncid    = aa.ProjFuncId;

                        totalDays  = totalDays + aa.estDays;
                        tempFuncId = aa.FuncId;
                    }
                    gf            = new GroupFunction();
                    gf.appid      = idapp;
                    gf.releaseId  = idrel;
                    gf.FuncId     = idfunc;
                    gf.FuncName   = namefunc;
                    gf.daysString = str;
                    gf.totalDays  = totalDays;
                    gf.ProjFuncId = projfuncid;
                    dayslist.Add(gf);
                    //foreach (GroupFunction i in dayslist)
                    //{
                    //    System.Diagnostics.Debug.WriteLine(i.FuncId);
                    //    System.Diagnostics.Debug.WriteLine(i.FuncName);
                    //    System.Diagnostics.Debug.WriteLine(i.appid);
                    //    System.Diagnostics.Debug.WriteLine(i.RelId);
                    //    System.Diagnostics.Debug.WriteLine(i.daysString);

                    //}

                    //List<GroupFunction> result = gridClassList.GroupBy(x => new { x.FuncId, x.FuncName, x.AppId, x.RelId })
                    //    .Select(o => o.First()).ToList().Select(o => new GroupFunction
                    //    {
                    //        FuncId = o.FuncId, FuncName = o.FuncName, appid = o.AppId, RelId = o.RelId
                    //    }).ToList();



                    //foreach (GroupFunction item in result)
                    //{
                    //    System.Diagnostics.Debug.WriteLine(item.appid);
                    //}


                    List <EstimateAttachment> attachments = db.EstimateAttachments.Where(x => x.projectId == projectId &&
                                                                                         x.gateId == gateId && x.lineNo == gateLine).ToList();

                    List <Phase>         phaseList    = db.Phases.ToList(); //int projectId, int gateId, int gateLine
                    List <Role>          roleList     = db.Roles.ToList();
                    List <Application>   appList      = db.Applications.ToList();
                    List <Release>       releaseList  = db.Releases.ToList();
                    List <Functionality> functionList = db.Functionalities.ToList();
                    List <ProjectStatus> statusList   = db.ProjectStatuses.ToList();
                    List <Gate>          gateList     = db.Gates.ToList();


                    //

                    wp.attachments          = attachments;
                    wp.groupFunction        = dayslist;
                    wp.project.impactType   = dbview[0].impactType;
                    wp.project.statusId     = dbview[0].statusId;
                    wp.gateversion.gvGateId = dbview[0].gvGateId;
                    wp.gateversion.gvStatus = dbview[0].gvStatus;
                    //wp.funcid= gridClassList[0].FuncId;

                    wp.dbview       = dbview;
                    wp.appList      = appList;
                    wp.relList      = releaseList;
                    wp.roleList     = roleList;
                    wp.phaselist    = phaseList;
                    wp.functionList = functionList;
                    wp.statusList   = statusList;
                    wp.gateList     = gateList;
                }
                catch (Exception ex)
                {
                    if (ex.InnerException is null)
                    {
                        msg = ex.Message;
                    }
                    else
                    {
                        msg = ex.InnerException.Message;
                    }


                    msg = msg + "\n" + "Error - getting gate details..Project Id = " + projectId + " Gate Id = " + gateId + " Line = " + gateLine;

                    MyLogger.GetInstance().Error(msg);
                }
            }
            return(wp);
        }