#EQD-6948 国联民生-实现保证金规则(2)追保金额的产生与收盘计算 收盘计算和授信占用

This commit is contained in:
锦麟 王
2026-08-24 16:34:18 +08:00
parent 8648b62af9
commit c35befbe8f
49 changed files with 2814 additions and 272 deletions
@@ -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>