chenhj
2025-05-16 e062e6b76fb7870aeb4faeafab2cb73daed52f07
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));
    }
}