示例#1
0
 public ActionResult Edit(int id)
 {
     ViewBag.MachineTypeList   = SelectionList.MachineTypeList().Select(m => new { m.MachineTypeId, m.MachineTypeName });
     ViewBag.MachineModelList  = SelectionList.MachineModelsList().Select(m => new { m.MachineModelId, m.MachineName });
     ViewBag.MachinePartList   = SelectionList.MachinePartsList().Select(m => new { m.MachinePartId, m.ProductValue });
     ViewBag.GSTPercentageList = SelectionList.GSTPercentageList().Select(m => new { m.Id, Percentage = m.Percentage + " %" });
     return(View("Create", _dbRepository.SelectById(id)));
 }
示例#2
0
 public ActionResult Create()
 {
     ViewBag.MachineTypeList   = SelectionList.MachineTypeList().Select(m => new { m.MachineTypeId, m.MachineTypeName });
     ViewBag.MachineModelList  = SelectionList.MachineModelsList().Select(m => new { m.MachineModelId, m.MachineName });
     ViewBag.MachinePartList   = SelectionList.MachinePartsList().Select(m => new { m.MachinePartId, m.ProductValue });
     ViewBag.GSTPercentageList = SelectionList.GSTPercentageList().Select(m => new { m.Id, Percentage = m.Percentage + " %" });
     return(View(new tblMachinePartsQuotation {
         QuotationDate = DateTime.Now.Date, InquiryDate = DateTime.Now.Date, IsPIGenerated = false
     }));
 }