| | |
| | | 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; |
| | |
| | | { |
| | | return success(paymentRegistrationService.selectPaymentRegistrationByPurchaseId(id)); |
| | | } |
| | | |
| | | /** |
| | | * 获取付款登记详细信息 |
| | | */ |
| | | @GetMapping(value = "/paymentLedgerList") |
| | | public AjaxResult paymentLedgerList(PaymentLedgerDto paymentLedgerDto) |
| | | { |
| | | return success(paymentRegistrationService.selectPaymentLedgerList(paymentLedgerDto)); |
| | | } |
| | | } |