public JsonResult CheckForReturnDispatch(string id)
        {
            string strMessage;
            StatisticsSystem stat = new StatisticsSystem();
            bool bSuccess = stat.CheckForReturnDispatch(long.Parse(id), LoginAccountId, LoginStaffName, out strMessage);

            var ret = new
            {
                Success = bSuccess,
                Message = strMessage
            };
            return Json(ret, JsonRequestBehavior.AllowGet);
        }