| | |
| | | } |
| | | |
| | | int num = this.lWhFormInventoryService.temporaryStorage(dto); |
| | | return num > 0 ? ResponseValue.success(1) : ResponseValue.error("修改失败!"); |
| | | return num > 0 ? ResponseValue.success(1) : ResponseValue.error("暂存失败!"); |
| | | } |
| | | |
| | | /** |
| | | * 完成盘点 |
| | | * @author 卢庆阳 |
| | | * @date 2023/10/31 |
| | | */ |
| | | @PostMapping("/finish") |
| | | public ResponseValue finishPd(@RequestBody LWhFormInventoryDto dto) { |
| | | if (dto == null) { |
| | | return ResponseValue.error("参数错误"); |
| | | } |
| | | |
| | | int num = this.lWhFormInventoryService.finishPd(dto); |
| | | return num > 0 ? ResponseValue.success(1) : ResponseValue.error("暂存失败!"); |
| | | } |
| | | |
| | | |