From 80a3a7a3ba32d42f269896ef50054943d8f69472 Mon Sep 17 00:00:00 2001 From: hjhan Date: Mon, 13 Apr 2026 17:26:57 +0800 Subject: [PATCH] =?UTF-8?q?fix(swaptrade):=20=E4=BF=AE=E5=A4=8D=E4=BB=B7?= =?UTF-8?q?=E6=A0=BC=E8=AE=A1=E7=AE=97=E7=9A=84=E6=8B=AC=E5=8F=B7=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20-=20=E4=B8=BA=20PosiGrossPrice=20=E8=AE=A1=E7=AE=97?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=AD=A3=E7=A1=AE=E7=9A=84=E6=8B=AC=E5=8F=B7?= =?UTF-8?q?=E5=8C=85=E8=A3=B9=20-=20=E4=B8=BA=20TradingAmountNetAvg=20?= =?UTF-8?q?=E8=AE=A1=E7=AE=97=E6=B7=BB=E5=8A=A0=E6=AD=A3=E7=A1=AE=E7=9A=84?= =?UTF-8?q?=E6=8B=AC=E5=8F=B7=E5=8C=85=E8=A3=B9=20-=20=E7=A1=AE=E4=BF=9D?= =?UTF-8?q?=E6=95=B0=E5=80=BC=E8=AE=A1=E7=AE=97=E4=BC=98=E5=85=88=E7=BA=A7?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=EF=BC=8C=E9=81=BF=E5=85=8D=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E5=8C=96=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- YLErpWeb/Views/SwapTrade2/TradeView.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/YLErpWeb/Views/SwapTrade2/TradeView.cshtml b/YLErpWeb/Views/SwapTrade2/TradeView.cshtml index 6e68cac3..e16fd470 100644 --- a/YLErpWeb/Views/SwapTrade2/TradeView.cshtml +++ b/YLErpWeb/Views/SwapTrade2/TradeView.cshtml @@ -940,8 +940,8 @@ @((SwapDirectionEnum)closeFloat.PayDirection) @(closeFloat.PositionType == (int)PositionTypeFlag.Long ? "多头" : "空头") @closeFloat.UnderlyingCode - @(closeFloat.PosiGrossPrice * multiplier).OtcFormat(OtcFormatFlag.umpriceP) - @((closeFloat.TradingAmountNetAvg ?? 0) * multiplier).OtcFormat(OtcFormatFlag.umpriceP) + @((closeFloat.PosiGrossPrice * multiplier).OtcFormat(OtcFormatFlag.umpriceP)) + @(((closeFloat.TradingAmountNetAvg ?? 0) * multiplier).OtcFormat(OtcFormatFlag.umpriceP)) @((closeFloat.TradingAmountAvg * multiplier).OtcFormat(OtcFormatFlag.umpriceP)) @((closeFloat.PositionQty??0).OtcFormat(OtcFormatFlag.StockEqvNotional)) @(closeFloat.TradingFee.OtcFormat(OtcFormatFlag.StockEqvNotional))