Exemple #1
0
        public ActionResult Edit(int id = 0)
        {
            try
            {
                if (id != 0)
                {
                    JobCardDropdown();
                    ItemDropdown();
                    Consumption Consumption = new Consumption();
                    Consumption = new ConsumptionRepository().GetConsumptionHD(id);
                    Consumption.ConsumptionItems = new ConsumptionItemRepository().GetConsumptionDT(id);

                    return(View(Consumption));
                }
                else
                {
                    TempData["error"]   = "That was an invalid/unknown request. Please try again.";
                    TempData["success"] = "";
                }
            }
            catch (InvalidOperationException iox)
            {
                TempData["error"] = "Sorry, we could not find the requested item. Please try again.|" + iox.Message;
            }
            catch (SqlException sx)
            {
                TempData["error"] = "Some error occured while connecting to database. Please try again after sometime.|" + sx.Message;
            }
            catch (NullReferenceException nx)
            {
                TempData["error"] = "Some required data was missing. Please try again.|" + nx.Message;
            }
            catch (Exception ex)
            {
                TempData["error"] = "Some error occured. Please try again.|" + ex.Message;
            }

            TempData["success"] = "";
            return(RedirectToAction("Index"));
        }
Exemple #2
0
 public ActionResult Create(Consumption model)
 {
     try
     {
         model.OrganizationId = OrganizationId;
         model.CreatedDate    = DateTime.Now;
         model.CreatedBy      = UserID.ToString();
         string id = new ConsumptionRepository().InsertConsumption(model);
         if (id.Split('|')[0] != "0")
         {
             TempData["success"] = "Saved successfully. Consumption Reference No. is " + id.Split('|')[1];
             TempData["error"]   = "";
             return(RedirectToAction("Create"));
         }
         else
         {
             throw new Exception();
         }
     }
     catch (SqlException sx)
     {
         TempData["error"] = "Some error occured while connecting to database. Please check your network connection and try again.|" + sx.Message;
     }
     catch (NullReferenceException nx)
     {
         TempData["error"] = "Some required data was missing. Please try again.|" + nx.Message;
     }
     catch (Exception ex)
     {
         TempData["error"] = "Some error occured. Please try again.|" + ex.Message;
     }
     TempData["success"] = "";
     JobCardDropdown();
     ItemDropdown();
     return(View(model));
 }