//新增主单
        // POST: /StockOutBill/Create/
        public ActionResult Create(OutBillMaster outBillMaster)
        {
            string errorInfo = string.Empty;
            bool   bResult   = OutBillMasterService.Add(outBillMaster, this.User.Identity.Name.ToString(), out errorInfo);
            string msg       = bResult ? "新增成功" : "新增失败";

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