#EQD-6948 国联民生-实现保证金规则(2)追保金额的产生与收盘计算 收盘计算和授信占用
This commit is contained in:
@@ -319,6 +319,19 @@ namespace YLErp.Modules.ReportModule
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 已使用授信(R2 阶段三 §3.2):授信出入表 Σ(amount)
|
||||
/// </summary>
|
||||
public double? UsedCredit { get; set; }
|
||||
|
||||
public string UsedCreditString
|
||||
{
|
||||
get
|
||||
{
|
||||
return ((UsedCredit == null || UsedCredit == -0) ? 0 : UsedCredit.Value).ToString("0.00");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 授信占用
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user