From 926d1ff779b1ee9c524bc05d3f161bee6740b2a8 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期二, 01 四月 2025 17:16:36 +0800
Subject: [PATCH] fix:bug修复
---
LifePayment/LifePayment.Application/LifePay/StatisticsService.cs | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs b/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs
index 6ebfa27..b69b5b6 100644
--- a/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs
+++ b/LifePayment/LifePayment.Application/LifePay/StatisticsService.cs
@@ -143,26 +143,26 @@
public async Task<ChannlesRakeListOutPut> GetChannlesRakeList(List<string> channleList)
{
var today = DateTime.Now.Date;
- var statistics = await _lifePayChannlesRakeRepository.Where(x => x.IsDeleted == false)
+ var statistics = await _lifePayChannlesRakeRepository.Where(x => x.IsDeleted == false &&
+ x.FinishTime.Date <= today && x.FinishTime.Date >= today.AddDays(-30))
.WhereIf(channleList.Count() > 0, x => channleList.Contains(x.ChannelId))
.ToListAsync();
var groupedStatistics = statistics
- .GroupBy(x => x.CreationTime)
+ .GroupBy(x => x.FinishTime.ToString("yyyy-MM-dd"))
.Select(g => new
{
- CreationTime = g.Key,
+ FinishTime = g.Key,
ChannlesRakePrice = g.Sum(x => x.ChannlesRakePrice),
})
.ToList();
-
ChannlesRakeListOutPut channlesRakeListOutPut = new ChannlesRakeListOutPut();
foreach (var item in groupedStatistics)
{
ReceiptsDetail receive = new ReceiptsDetail()
{
- CreationTime = item.CreationTime.AddDays(-1).ToString("yyyy-MM-dd"),
+ CreationTime = item.FinishTime,
Amount = item.ChannlesRakePrice
};
--
Gitblit v1.10.0