//主单审核
        // POST: /StockOutBill/outBillMasterAudit/
        public ActionResult outBillMasterAudit(string BillNo)
        {
            string errorInfo = string.Empty;
            bool   bResult   = OutBillMasterService.Audit(BillNo, this.User.Identity.Name.ToString(), out errorInfo);
            string msg       = bResult ? "审核成功" : "审核失败";

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