| | |
| | | return R.ok(customerService.customewTransactionsDetails(page,customerId)); |
| | | } |
| | | |
| | | @GetMapping("/customerTransactionsSummary") |
| | | @Log(title = "客户往来统计汇总", businessType = BusinessType.OTHER) |
| | | @Operation(summary = "客户往来统计汇总") |
| | | public R customerTransactionsSummary(Long customerId) { |
| | | return R.ok(customerService.getCustomerTransactionsSummary(customerId)); |
| | | } |
| | | |
| | | @GetMapping("/customerTransactionsProducts") |
| | | @Log(title = "客户往来产品明细", businessType = BusinessType.OTHER) |
| | | @Operation(summary = "客户往来产品明细") |
| | | public R customerTransactionsProducts(Page page, Long customerId, Long salesLedgerId) { |
| | | return R.ok(customerService.getCustomerTransactionsProducts(page, customerId, salesLedgerId)); |
| | | } |
| | | |
| | | @GetMapping("/customerTransactionsShipments") |
| | | @Log(title = "客户往来发货明细", businessType = BusinessType.OTHER) |
| | | @Operation(summary = "客户往来发货明细") |
| | | public R customerTransactionsShipments(Page page, Long customerId, Long salesLedgerId) { |
| | | return R.ok(customerService.getCustomerTransactionsShipments(page, customerId, salesLedgerId)); |
| | | } |
| | | |
| | | } |