//public ActionResult GetQtyOfPacType(string jobno, int PacType)
        //{
        //    var stocks = _capitaContext.sp_GetPacTypeQtyOnPacType(jobno, PacType).ToList();
        //    return Json(new JsonResult
        //    {
        //        Data = stocks
        //    }, JsonRequestBehavior.AllowGet);
        //}

        public ActionResult GetYesIndivisual(string jobno)
        {
            var stocks = _capitaContext.sp_getDataOfPakingType(jobno).ToList();

            return(Json(new JsonResult
            {
                Data = stocks
            }, JsonRequestBehavior.AllowGet));
        }