From 2b8c310b89424d44b4e3e08b470f8c2149966a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8D=E9=94=90?= <1565842059@qq.com> Date: Wed, 26 Aug 2026 09:41:19 +0800 Subject: [PATCH] =?UTF-8?q?fix(swap):=20=E4=BF=AE=E6=AD=A3ETF=E6=97=A5?= =?UTF-8?q?=E7=BB=88=E6=8C=81=E4=BB=93=E5=88=86=E7=BA=A2=E9=87=91=E9=A2=9D?= =?UTF-8?q?=E8=AE=A1=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修复了每日估值报告中ETF分红金额符号错误的问题 - 现在正确应用负号以反映客户视角下的日终持仓风险 - 添加了相关注释说明取值逻辑与日终持仓风险的相反关系 --- YLErpDAL/Modules/SwapModule/SwapEodPositionService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YLErpDAL/Modules/SwapModule/SwapEodPositionService.cs b/YLErpDAL/Modules/SwapModule/SwapEodPositionService.cs index 3119c917..d9a05856 100644 --- a/YLErpDAL/Modules/SwapModule/SwapEodPositionService.cs +++ b/YLErpDAL/Modules/SwapModule/SwapEodPositionService.cs @@ -3582,7 +3582,7 @@ namespace YLErp.Modules.SwapModule else if (isEtf) { item.PeriodAmount = null; - item.DividendAmount = pendingDividend; + item.DividendAmount = -pendingDividend; // 每日估值报告是客户视角 取值与日终持仓风险相反 } else {