public ActionResult InBillDetailEdit(InBillDetail inBillDetail) { string strResult = string.Empty; bool bResult = InBillDetailService.Save(inBillDetail, out strResult); string msg = bResult ? "修改成功" : "修改失败"; return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, strResult), "text", JsonRequestBehavior.AllowGet)); }