Beispiel #1
0
 public ActionResult Create(Risks_Type model, string command)
 {
     try
     {
         if (ModelState.IsValid)
         {
             Risks_Type record = new Risks_Type();
             record.Name        = model.Name;
             record.Description = model.Description;
             record.Code        = model.Code;
             var Risks_Type = dbcontext.Risks_Type.Add(record);
             dbcontext.SaveChanges();
             //=================================check for alert==================================
             var get_result_check = HR.Controllers.check.check_alert("risk type", HR.Models.user.Action.Create, HR.Models.user.type_field.form);
             if (get_result_check != null)
             {
                 var inbox = new Models.user.Alert_inbox {
                     send_from_user_id = User.Identity.Name, send_to_user_id = get_result_check.send_to_ID_user, title = get_result_check.Subject, Subject = get_result_check.Message
                 };
                 if (get_result_check.until != null)
                 {
                     if (get_result_check.until.Value.Year != 0001)
                     {
                         inbox.until = get_result_check.until;
                     }
                 }
                 ApplicationDbContext dbcontext = new ApplicationDbContext();
                 dbcontext.Alert_inbox.Add(inbox);
                 dbcontext.SaveChanges();
             }
             //===================================================================================
             if (command == "Submit")
             {
                 return(RedirectToAction("Create", "Risks", new { id = Risks_Type.ID }));
             }
             return(RedirectToAction("Index"));
         }
         else
         {
             return(View(model));
         }
     }
     catch (DbUpdateException)
     {
         TempData["Message"] = HR.Resource.Basic.thiscodeIsalreadyexists;
         return(View(model));
     }
     catch (Exception e)
     {
         return(View(model));
     }
 }
Beispiel #2
0
        public ActionResult Create()
        {
            //////
            var modell = new Risks_Type();

            var stru  = dbcontext.StructureModels.FirstOrDefault(m => m.All_Models == ChModels.Organization).Structure_Code;
            var model = dbcontext.Risks_Type.ToList();

            if (model.Count() == 0)
            {
                modell.Code = stru + "1";
            }
            else
            {
                modell.Code = stru + (model.LastOrDefault().ID + 1).ToString();
            }
            /////
            return(View(modell));
        }