| | |
| | | consumablesInventoryService.exportConsumablesInventory(response, consumablesInventoryDto); |
| | | } |
| | | |
| | | @GetMapping("ConsumablesInventoryPage") |
| | | @GetMapping("/ConsumablesInventoryPage") |
| | | @ApiOperation("库存报表查询") |
| | | public R ConsumablesInventoryPage(Page page, ConsumablesInventoryDto consumablesInventoryDto) { |
| | | return R.ok(consumablesInventoryService.consumablesInventoryPage(consumablesInventoryDto,page)); |
| | | } |
| | | |
| | | @GetMapping("ConsumablesInAndOutRecord") |
| | | @GetMapping("/ConsumablesInAndOutRecord") |
| | | @ApiOperation("统计各个产品的入库和出库记录") |
| | | public R ConsumablesInAndOutRecord(ConsumablesInventoryDto consumablesInventoryDto, Page page) { |
| | | return R.ok(consumablesInventoryService.consumablesInAndOutRecord(consumablesInventoryDto,page)); |