feat(payment): 新增付款和回款功能实现
- 在.gitignore中添加.mcp.json文件忽略配置
- 在AccountingReportController中新增savePayment接口用于供应商付款
- 在AccountPurchasePaymentMapper中添加查询采购入库记录ID方法
- 在AccountPurchasePaymentMapper.xml中实现采购入库记录查询SQL
- 在AccountPurchasePaymentService中定义savePayment业务方法
- 在AccountPurchasePaymentServiceImpl中实现付款业务逻辑,包括合同验证、入库记录查询和支付创建
- 在AccountSalesCollectionMapper中添加查询销售出库记录ID方法
- 在AccountSalesCollectionMapper.xml中实现销售出库记录查询SQL
- 在AccountSalesCollectionService中定义saveReceiptPayment业务方法
- 在AccountSalesCollectionServiceImpl中实现回款业务逻辑
- 优化CustomerMapper.xml中的回款金额统计查询逻辑
- 在MetricStatisticsController中新增saveReceiptPayment接口用于客户回款
- 新增SavePaymentDto和SaveReceiptPaymentDto数据传输对象
- 更新SupplierManageMapper.xml中的付款金额统计查询逻辑
- 添加新增付款和回款接口联调文档