From 07ac2c7ec9680f936a4393b923785242b799daa0 Mon Sep 17 00:00:00 2001
From: yzh <snbbt@21cn.com>
Date: 星期二, 10 五月 2022 15:01:37 +0800
Subject: [PATCH] 充值功能优化,客户表增加余额、订单表增加充值金额
---
web/Dao/obj/Debug/Dao.csproj.AssemblyReference.cache | 0
web/.vs/Web/v16/.suo | 0
web/web/GwOrder.ashx | 5 ++++-
3 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/web/.vs/Web/v16/.suo b/web/.vs/Web/v16/.suo
index 687b51d..1a7ac25 100644
--- a/web/.vs/Web/v16/.suo
+++ b/web/.vs/Web/v16/.suo
Binary files differ
diff --git a/web/Dao/obj/Debug/Dao.csproj.AssemblyReference.cache b/web/Dao/obj/Debug/Dao.csproj.AssemblyReference.cache
index bddb077..f5e894a 100644
--- a/web/Dao/obj/Debug/Dao.csproj.AssemblyReference.cache
+++ b/web/Dao/obj/Debug/Dao.csproj.AssemblyReference.cache
Binary files differ
diff --git a/web/web/GwOrder.ashx b/web/web/GwOrder.ashx
index 485c75d..cf97ece 100644
--- a/web/web/GwOrder.ashx
+++ b/web/web/GwOrder.ashx
@@ -191,6 +191,8 @@
string clientId = context.GetString("clientId");
string clientName = context.GetString("clientName");
int flag = context.GetInt("flag");
+ //string startDate = context.GetString("startDate");
+ //string endDate = context.GetString("endDate");
DateTime startDate = context.GetDateTime("startDate");
DateTime endDate = context.GetDateTime("endDate");
@@ -198,7 +200,8 @@
int pageSize = context.GetInt("pageSize", 50);
int pageIndex = context.GetInt("pageIndex", 1);
- List<GwOrder> list = _Dao.LoadInfoList(spId, clientId, clientName, flag, startDate, endDate, pageSize, pageIndex, out recordCount);
+ //List<GwOrder> list = _Dao.LoadInfoList(spId, clientId, clientName, flag, Convert.ToDateTime(startDate), Convert.ToDateTime(endDate).AddDays(1.0), pageSize, pageIndex, out recordCount);
+ List<GwOrder> list = _Dao.LoadInfoList(spId, clientId, clientName, flag, startDate, endDate.AddDays(1.0), pageSize, pageIndex, out recordCount);
string str1 = "";
if (list != null && list.Count > 0)
--
Gitblit v1.9.1