public ActionResult DeleteDispatchBill(string id) { string strErrText; DispatchSystem dispatch = new DispatchSystem(); if (dispatch.DeleteDispatchBill(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText)) { return Json(string.Empty); } else { return Json(strErrText); } }