From 723adf57d00ba389cf52ff889535112b02f1b922 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期一, 09 二月 2026 13:34:46 +0800
Subject: [PATCH] fix(sales): 修复销售 ledger 产品库存充足判断逻辑
---
src/main/java/com/ruoyi/purchase/service/IPaymentRegistrationService.java | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/ruoyi/purchase/service/IPaymentRegistrationService.java b/src/main/java/com/ruoyi/purchase/service/IPaymentRegistrationService.java
index 26e14b6..88052fa 100644
--- a/src/main/java/com/ruoyi/purchase/service/IPaymentRegistrationService.java
+++ b/src/main/java/com/ruoyi/purchase/service/IPaymentRegistrationService.java
@@ -41,7 +41,7 @@
* @param paymentRegistration 浠樻鐧昏
* @return 缁撴灉
*/
- public int insertPaymentRegistration(PaymentRegistration paymentRegistration);
+ public int insertPaymentRegistration(List<PaymentRegistration> paymentRegistration);
/**
* 淇敼浠樻鐧昏
@@ -87,4 +87,20 @@
* @return
*/
List<PaymentHistoryRecordVo> getPaymentRecordList(Long supplierId);
+
+ /**
+ * 鏌ヨ浠樻鐧昏鍒楄〃鍒嗛〉
+ *
+ * @param paymentRegistrationDto 浠樻鐧昏
+ * @return 浠樻鐧昏闆嗗悎
+ */
+ IPage<PaymentRegistrationDto> paymentHistoryListPage(Page page, PaymentRegistrationDto paymentRegistrationDto);
+
+ Boolean delete(Long[] ids);
+
+ int delPaymentRegistration(List<Long> ids);
+
+ IPage<PaymentRegistrationDto> supplierNameListPage(Page page, PaymentLedgerDto paymentLedgerDto);
+
+ List<PaymentRegistrationDto> supplierNameListPageDetails(PaymentLedgerDto paymentLedgerDto);
}
--
Gitblit v1.9.3