| | |
| | | return returnData(R.SUCCESS.getCode(), walletBillRecordService.getPage(page, dto)); |
| | | |
| | | } |
| | | |
| | | @GetMapping("/pageByDesc") |
| | | public ResponseEntity<ReturnDataDTO<Page<WalletBillRecordVO>>> pageByDesc(Page page, QueryWalletBillDTO dto |
| | | ) { |
| | | // 根据当前用户获取供应商 |
| | | dto.setSupplierId(supplierService.getCurrentSupplier().getId()); |
| | | return returnData(R.SUCCESS.getCode(), walletBillRecordService.getPageByDesc(page, dto)); |
| | | |
| | | } |
| | | @GetMapping({"/export"}) |
| | | @ApiOperation(value = "供应商财务导出") |
| | | public void partnerExportSales(HttpServletResponse response, @Validated QueryWalletBillRecordDTO dto) { |