#EQD-7017 国联民生-交易确认书中基本费率字段保留4位小数
This commit is contained in:
@@ -471,7 +471,7 @@ namespace YLErp.Plugins.GuoLian.DocumentGenerator
|
||||
var notional = trade.OriginalStockEqvNotional ?? 0;
|
||||
var tradingFee = (double)swapPosition.PosiTradingFeePending;
|
||||
var basicFeeRate = notional == 0 ? 0 : tradingFee / notional * 100;
|
||||
dic["基本费率"] = basicFeeRate.ToString("0.##");
|
||||
dic["基本费率"] = basicFeeRate.ToString("0.####");
|
||||
|
||||
// 期初现金交换比例和金额(使用初始预付金数据)
|
||||
dic["期初现金交换比例"] = initialMarginPosition != null
|
||||
|
||||
Reference in New Issue
Block a user