private JsonResult _GetLocations(string itemNumber, string site, string warehouse)
 {
     string userName = User.Identity.Name.ToString().Split('\\')[1];
     Location locationObject = new Location();
     return Json(new SelectList(locationObject.GetLocations(itemNumber, site, warehouse, userName), "LocationId", "LocationandQty"), JsonRequestBehavior.AllowGet);
 }