配置列和计算基准有负数

This commit is contained in:
锦麟 王
2025-04-23 13:57:20 +08:00
parent 9328e6f95f
commit ffb7639397
4 changed files with 11 additions and 3 deletions
@@ -177,7 +177,7 @@ namespace YLErp.Plugins.ShanXi.DocumentGenerator
dic["利差%"] = ((interestMargin?.InterestRateDefault) ?? 0) * 100;
dic["参考利率"] = interestMargin?.FloatRateUnderlyingCode;
dic["固定利率"] = "";
dic["计算基准"] = interestMargin?.FloatRateUnderlyingCode +" + " + ((interestMargin?.InterestRateDefault) ?? 0) * 100 + "%";
dic["计算基准"] = interestMargin?.FloatRateUnderlyingCode +" " + ((interestMargin?.InterestRateDefault) ?? 0) * 100 + "%";
dic["重置频率"] = interestMargin?.interest_rest_days + "天";
}
dic["初始预付金支付日"] = trade.TradeDate?.ToString("yyyy年M月d日");