From 597399726303f4f6f41b0a55d8dcaa153f49b97a Mon Sep 17 00:00:00 2001 From: yzh <snbbt@21cn.com> Date: 星期四, 19 五月 2022 14:57:33 +0800 Subject: [PATCH] 账号信息增加是否自动返还 系统账号信息增加:用户类型 客户信息增加:归属客户经理、归属业务员、归属客服人员、归属财务等 客户账号查询优化 账号查询充值优化 --- web/web/GwSp.ashx | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/web/web/GwSp.ashx b/web/web/GwSp.ashx index 3b4b10d..1c5f53f 100644 --- a/web/web/GwSp.ashx +++ b/web/web/GwSp.ashx @@ -312,10 +312,10 @@ string apId = "0"; if (this.IsInt(string1)) apId = string1; - if (string.IsNullOrEmpty(clientId) && !string.IsNullOrEmpty(string4)) - clientId = new GwClientDao().GetClientName(string4).ClientID; + //if (string.IsNullOrEmpty(clientId) && !string.IsNullOrEmpty(string4)) + // clientId = new GwClientDao().GetClientName(string4).ClientID; //鍔犺浇璐﹀彿鍒楄〃淇℃伅 - List<GwSp> list = gwSpDao.LoadInfoList(string2, apId, clientId, int1, string3, int2, int4, int3, int5.ToString(),out recordCount, productId); + List<GwSp> list = gwSpDao.LoadInfoList(string2, apId, clientId, string4, int1, string3, int2, int4, int3, int5.ToString(),out recordCount, productId); string str1 = ""; if (list != null && list.Count > 0) { @@ -571,7 +571,8 @@ o.AccessCode = context.GetString("AccessCode"); o.Priority = context.GetInt("Priority", 0); o.Price = Math.Max((int)(context.GetDecimal("Price", new Decimal(4, 0, 0, false, (byte)2)) * new Decimal(1000)), 1); - o.ChargeType = context.GetInt("ChargeType", 0); + //o.ChargeType = context.GetInt("ChargeType", 0); + o.IsAutoReturn = context.GetInt("IsAutoReturn", 0); o.Threshold = Math.Max(context.GetInt("Threshold", 10), 10); o.MaxConnCount = context.GetInt("MaxConnCount", 1); o.Remark = context.GetString("Remark"); @@ -695,7 +696,8 @@ o.AccessCode = context.GetString("AccessCode"); o.Priority = context.GetInt("Priority", 0); o.Price = Math.Max((int)(context.GetDecimal("Price", new Decimal(4, 0, 0, false, (byte)2)) * new Decimal(1000)), 1); - o.ChargeType = context.GetInt("ChargeType", 0); + //o.ChargeType = context.GetInt("ChargeType", 0); + o.IsAutoReturn = context.GetInt("IsAutoReturn", 0); o.Threshold = Math.Max(context.GetInt("Threshold", 10), 10); o.MaxConnCount = context.GetInt("MaxConnCount", 1); o.Remark = context.GetString("Remark"); -- Gitblit v1.9.1