Exemplo n.º 1
0
        public ActionResult GetAllItemType()
        {
            DalSysItemType objSource = new DalSysItemType();

            var allData = objSource.GetAllActiveItemTypeLeather();

            return(Json(allData, JsonRequestBehavior.AllowGet));
        }
Exemplo n.º 2
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());
 }