public void ProcessRequest(HttpContext context) { wid = context.Session[DTKeys.SESSION_WEB_ID] as string; if (string.IsNullOrEmpty(wid)) { return; } context.Response.ContentType = "text/plain"; int result = 0; int.TryParse(context.Request["id"].ToString(), out result); if (result > 0) { CustomerServiceInfo customer = CustomerServiceHelper.GetCustomer(result); CustomerServiceSettings masterSettings = CustomerServiceManager.GetMasterSettings(false); string tokenValue = TokenApi.GetTokenValue(masterSettings.AppId, masterSettings.AppSecret); if (!string.IsNullOrEmpty(tokenValue)) { string str2 = CustomerApi.DeleteCustomer(tokenValue, customer.unit, customer.userver); if (!string.IsNullOrWhiteSpace(str2)) { string jsonValue = Common.GetJsonValue(str2, "errcode"); string str4 = Common.GetJsonValue(str2, "errmsg"); if (jsonValue == "0") { if (CustomerServiceHelper.DeletCustomer(result)) { context.Response.Write("{\"type\":\"success\",\"data\":\"\"}"); } else { context.Response.Write("{\"type\":\"error\",\"data\":\"删除客服失败!\"}"); } } else { context.Response.Write("{\"type\":\"error\",\"data\":\"" + str4 + "\"}"); } } else { context.Response.Write("{\"type\":\"error\",\"data\":\"删除客服失败!\"}"); } } else { context.Response.Write("{\"type\":\"error\",\"data\":\"获取access_token失败!\"}"); } } }
public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; if (Globals.GetCurrentManagerUserId() <= 0) { context.Response.Write("{\"type\":\"error\",\"data\":\"请先登录\"}"); context.Response.End(); } int result = 0; int.TryParse(context.Request["id"].ToString(), out result); if (result > 0) { CustomerServiceInfo customer = CustomerServiceHelper.GetCustomer(result); CustomerServiceSettings masterSettings = CustomerServiceManager.GetMasterSettings(false); string tokenValue = TokenApi.GetTokenValue(masterSettings.AppId, masterSettings.AppSecret); if (!string.IsNullOrEmpty(tokenValue)) { string str2 = CustomerApi.DeleteCustomer(tokenValue, customer.unit, customer.userver); if (!string.IsNullOrWhiteSpace(str2)) { string jsonValue = Hishop.MeiQia.Api.Util.Common.GetJsonValue(str2, "errcode"); string str4 = Hishop.MeiQia.Api.Util.Common.GetJsonValue(str2, "errmsg"); if (jsonValue == "0") { if (CustomerServiceHelper.DeletCustomer(result)) { context.Response.Write("{\"type\":\"success\",\"data\":\"\"}"); } else { context.Response.Write("{\"type\":\"error\",\"data\":\"删除客服失败!\"}"); } } else { context.Response.Write("{\"type\":\"error\",\"data\":\"" + str4 + "\"}"); } } else { context.Response.Write("{\"type\":\"error\",\"data\":\"删除客服失败!\"}"); } } else { context.Response.Write("{\"type\":\"error\",\"data\":\"获取access_token失败!\"}"); } } }
public void ProcessRequest(System.Web.HttpContext context) { context.Response.ContentType = "text/plain"; int num = 0; int.TryParse(context.Request["id"].ToString(), out num); if (num > 0) { CustomerServiceInfo customer = CustomerServiceHelper.GetCustomer(num); CustomerServiceSettings masterSettings = CustomerServiceManager.GetMasterSettings(false); string tokenValue = TokenApi.GetTokenValue(masterSettings.AppId, masterSettings.AppSecret); if (!string.IsNullOrEmpty(tokenValue)) { string text = CustomerApi.DeleteCustomer(tokenValue, customer.unit, customer.userver); if (string.IsNullOrWhiteSpace(text)) { context.Response.Write("{\"type\":\"error\",\"data\":\"删除客服失败!\"}"); return; } string jsonValue = Hishop.MeiQia.Api.Util.Common.GetJsonValue(text, "errcode"); string jsonValue2 = Hishop.MeiQia.Api.Util.Common.GetJsonValue(text, "errmsg"); if (!(jsonValue == "0")) { context.Response.Write("{\"type\":\"error\",\"data\":\"" + jsonValue2 + "\"}"); return; } bool flag = CustomerServiceHelper.DeletCustomer(num); if (flag) { context.Response.Write("{\"type\":\"success\",\"data\":\"\"}"); return; } context.Response.Write("{\"type\":\"error\",\"data\":\"删除客服失败!\"}"); return; } else { context.Response.Write("{\"type\":\"error\",\"data\":\"获取access_token失败!\"}"); } } }