From 9e1856ebf63d604d5d8a640d173b49715ffefbc7 Mon Sep 17 00:00:00 2001 From: Administrator Date: Wed, 23 Feb 2022 20:36:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Report/KanbanUnSettledDapperRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/KanbanUnSettledDapperRepository.cs b/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/KanbanUnSettledDapperRepository.cs index 90c2f4be..3ff20a5b 100644 --- a/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/KanbanUnSettledDapperRepository.cs +++ b/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/KanbanUnSettledDapperRepository.cs @@ -166,11 +166,11 @@ namespace Win.Sfs.SettleAccount.Repository.SettleAccountJob.Report str += " where 1=1 "; if (!string.IsNullOrEmpty(begintime)) { - str += string.Format(" and BeginDate >='{0}'", begintime); + str += string.Format(" and WMSActualGoodsDate >='{0}' ", begintime); } if (string.IsNullOrEmpty(endtime)) { - str += string.Format(" and BeginDate<='{0}'", endtime); + str += string.Format(" and WMSActualGoodsDate<='{0}' ", endtime); } sql = string.Format(sql, str); var _query = DbConnection.Query(sql, null, null, true, 1200, null);