hsy
2026-08-28 a8e4132c3e2e9c3b3fcb0360901b35571b6464ea
src/main/java/com/ruoyi/sales/vo/CustomerTransactionsVo.java
@@ -12,6 +12,9 @@
    @Schema(description = "客户ID")
    private Long customerId;
    @Schema(description = "项目ID")
    private Long projectId;
    @Schema(description = "客户名称")
    private String customerName;
@@ -24,7 +27,19 @@
    private BigDecimal receiptPaymentAmount;
    @Schema(description = "应收金额")
    //该客户销售应收累计金额=财务(出库-退货)
    //该客户销售应收累计金额=初始金额-回款-退款
    private BigDecimal receiptableAmount;
    @Schema(description = "退货金额")
    private BigDecimal returnAmount;
    @Schema(description = "开票金额")
    private BigDecimal invoiceAmount;
    @Schema(description = "合同总数")
    private Integer contractCount;
    @Schema(description = "超期合同数")
    private Integer overdueCount;
}