| | |
| | | return R.ok(stockUninventoryDtoIPage); |
| | | } |
| | | |
| | | @GetMapping("/getWasteBatchNoQty") |
| | | @Operation(summary = "查询废品库存对应批号和数量") |
| | | public R getWasteBatchNoQty(Page page, StockInventoryDto stockInventoryDto) { |
| | | IPage<StockUninventoryDto> stockUninventoryDtoIPage = stockUninventoryService.getWasteBatchNoQty(page, stockInventoryDto); |
| | | return R.ok(stockUninventoryDtoIPage); |
| | | } |
| | | |
| | | @PostMapping("/addstockUninventory") |
| | | @Operation(summary = "新增库存") |
| | | public R addstockUninventory(@RequestBody StockUninventoryDto stockUninventoryDto) { |