public ActionResult StockAdjust() { ViewBag.LeatherType = objLeatherType.GetAllActiveLeatherType(); ViewBag.ReceiveStore = objReceiveStore.GetAllActiveStore(); ViewBag.formTiltle = "Stock Adjustment Request"; return(View()); }
public ActionResult WetBlueProductionSchedule() { ViewBag.formTiltle = "Wet Blue Production Schedule"; ViewBag.ddlProductionStoreList = objDalSysStore.GetAllActiveProductionStore(); ViewBag.ddlProcessList = daiSysProductionProces.GetAllActiveWetBlueProcessList(); ViewBag.ddlConcernStoreList = objDalSysStore.GetAllActiveStore(); return(View()); }
public ActionResult GetAllStore() { DalSysStore objStore = new DalSysStore(); var allData = objStore.GetAllActiveStore(); return(Json(allData, JsonRequestBehavior.AllowGet)); }
public ActionResult TransferReceive() { ViewBag.formTiltle = "Raw Hide Leather Store Transfer Receive"; ViewBag.ddlIssueFromToList = objStore.GetAllActiveStore(); return(View()); }