public ActionResult StockAdjust()
 {
     ViewBag.LeatherType  = objLeatherType.GetAllActiveLeatherType();
     ViewBag.ReceiveStore = objReceiveStore.GetAllActiveStore();
     ViewBag.formTiltle   = "Stock Adjustment Request";
     return(View());
 }
Exemple #2
0
        public ActionResult GetAllActiveLeatherType()
        {
            var packItemList = objDalSysLeatherType.GetAllActiveLeatherType();

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