public ActionResult FinishProductionSchedule() { ViewBag.formTiltle = "Finish Production Schedule"; ViewBag.ddlFinishProductionFloorList = objDalSysStore.GetAllActiveFinishProductionStore(); ViewBag.ddlProcessList = daiSysProductionProces.GetAllActiveFinishProcessList(); ViewBag.ddlItemTypeList = daliItemType.GetAllActiveItemTypeLeather(); ViewBag.ddlLeatherStatusList = dalSysLeatherStatus.GetAllLeatherStatus(); ViewBag.ddlThicknessUnitList = dalSysUnit.GetAllActiveThicknessUnit(); ViewBag.ddlAvgSizeUnitList = dalSysUnit.GetAllActiveLeatherUnit(); return(View()); }
public ActionResult GetAllLeatherUnit() { var objUnit = new DalSysUnit(); var allData = objUnit.GetAllActiveLeatherUnit(); return(Json(allData, JsonRequestBehavior.AllowGet)); }
public ActionResult GetAllActiveUnit() { var packItemList = objDalSysUnit.GetAllActiveLeatherUnit(); return(Json(packItemList, JsonRequestBehavior.AllowGet)); }
public ActionResult GetAllLeatherUnit() { var sysUnit = _dalSysUnit.GetAllActiveLeatherUnit().OrderByDescending(s => s.UnitID); return(Json(sysUnit, JsonRequestBehavior.AllowGet)); }