Пример #1
0
 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());
 }
Пример #2
0
        public ActionResult GetAllLeatherUnit()
        {
            var objUnit = new DalSysUnit();

            var allData = objUnit.GetAllActiveLeatherUnit();

            return(Json(allData, JsonRequestBehavior.AllowGet));
        }
Пример #3
0
        public ActionResult GetAllActiveUnit()
        {
            var packItemList = objDalSysUnit.GetAllActiveLeatherUnit();

            return(Json(packItemList, JsonRequestBehavior.AllowGet));
        }
Пример #4
0
        public ActionResult GetAllLeatherUnit()
        {
            var sysUnit = _dalSysUnit.GetAllActiveLeatherUnit().OrderByDescending(s => s.UnitID);

            return(Json(sysUnit, JsonRequestBehavior.AllowGet));
        }