예제 #1
0
 public ActionResult WetBlueProductionSchedule()
 {
     ViewBag.formTiltle             = "Wet Blue Production Schedule";
     ViewBag.ddlProductionStoreList = objDalSysStore.GetAllActiveProductionStore();
     ViewBag.ddlProcessList         = daiSysProductionProces.GetAllActiveWetBlueProcessList();
     ViewBag.ddlConcernStoreList    = objDalSysStore.GetAllActiveStore();
     return(View());
 }
예제 #2
0
        public ActionResult WBIStoreSelection()
        {
            ViewBag.IssueToStoreList   = _objDalStore.GetAllActiveWetBlueLeatherStore();
            ViewBag.IssueFromStoreList = _objDalStore.GetAllActiveProductionStore();
            ViewBag.UnitList           = _dalWBIStoreSelectionObj.GetAllActiveLeatherUnit();


            return(View());
        }
예제 #3
0
        public ActionResult GetAllProductionStoreList()
        {
            var sysSource = _dalSysStore.GetAllActiveProductionStore().OrderByDescending(s => s.StoreID);

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