From ec57af8afe57f8c5d46b58d76e2e9d053943c20b Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期二, 26 八月 2025 16:19:50 +0800
Subject: [PATCH] yys 修改协同审批编辑接口
---
src/main/resources/mapper/sales/ReceiptPaymentMapper.xml | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/sales/ReceiptPaymentMapper.xml b/src/main/resources/mapper/sales/ReceiptPaymentMapper.xml
index 26ef5f8..b70a04b 100644
--- a/src/main/resources/mapper/sales/ReceiptPaymentMapper.xml
+++ b/src/main/resources/mapper/sales/ReceiptPaymentMapper.xml
@@ -98,6 +98,9 @@
<if test="c.customerName != null and c.customerName !=''">
AND T3.customer_name LIKE CONCAT('%',#{c.customerName},'%')
</if>
+ <if test="c.invoiceLedgerId != null">
+ AND T1.id = #{c.invoiceLedgerId}
+ </if>
<if test="c.customerContractNo != null and c.customerContractNo !=''">
AND T3.customer_contract_no LIKE CONCAT('%',#{c.customerContractNo},'%')
</if>
@@ -180,6 +183,7 @@
<select id="receiptPaymentHistoryListPage" resultType="com.ruoyi.sales.dto.ReceiptPaymentDto">
SELECT
+ T1.id,
T1.receipt_payment_date,
T5.customer_name,
T1.receipt_payment_amount,
--
Gitblit v1.9.3