From e062e6b76fb7870aeb4faeafab2cb73daed52f07 Mon Sep 17 00:00:00 2001 From: chenhj <1263187585@qq.com> Date: 星期五, 16 五月 2025 17:52:01 +0800 Subject: [PATCH] 付款台账 --- src/main/java/com/ruoyi/purchase/controller/PaymentRegistrationController.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/purchase/controller/PaymentRegistrationController.java b/src/main/java/com/ruoyi/purchase/controller/PaymentRegistrationController.java index d91f133..b8f233d 100644 --- a/src/main/java/com/ruoyi/purchase/controller/PaymentRegistrationController.java +++ b/src/main/java/com/ruoyi/purchase/controller/PaymentRegistrationController.java @@ -5,6 +5,7 @@ import com.ruoyi.framework.web.controller.BaseController; import com.ruoyi.framework.web.domain.AjaxResult; import com.ruoyi.framework.web.page.TableDataInfo; +import com.ruoyi.purchase.dto.PaymentLedgerDto; import com.ruoyi.purchase.dto.PaymentRegistrationDto; import com.ruoyi.purchase.pojo.PaymentRegistration; import com.ruoyi.purchase.service.IPaymentRegistrationService; @@ -97,4 +98,13 @@ { return success(paymentRegistrationService.selectPaymentRegistrationByPurchaseId(id)); } + + /** + * 鑾峰彇浠樻鐧昏璇︾粏淇℃伅 + */ + @GetMapping(value = "/paymentLedgerList") + public AjaxResult paymentLedgerList(PaymentLedgerDto paymentLedgerDto) + { + return success(paymentRegistrationService.selectPaymentLedgerList(paymentLedgerDto)); + } } -- Gitblit v1.9.3