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);