//修改主单
        // POST: /StockOutBill/Edit/
        public ActionResult Edit(OutBillMaster outBillMaster)
        {
            string errorInfo = string.Empty;
            bool   bResult   = OutBillMasterService.Save(outBillMaster, out errorInfo);
            string msg       = bResult ? "修改成功" : "修改失败";

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