//主单反审
        // POST: /StockOutBill/outBillMasterAntiTrial/
        public ActionResult outBillMasterAntiTrial(string BillNo)
        {
            string errorInfo = string.Empty;
            bool   bResult   = OutBillMasterService.AntiTrial(BillNo, out errorInfo);
            string msg       = bResult ? "反审成功" : "反审失败";

            return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, errorInfo), "text", JsonRequestBehavior.AllowGet));
        }