| | |
| | | |
| | | } |
| | | } |
| | | |
| | | /*出入库记录查询*/ |
| | | @ApiOperation("出入库记录查询接口") |
| | | @PostMapping("/getSelectStorageRecord/{pageNum}/{pageSize}/{selectDate}/{type}") |
| | | public Result getSelectStorageRecord(@PathVariable Integer pageNum, @PathVariable Integer pageSize,@PathVariable List<String> selectDate,@PathVariable String type, @RequestBody FinishedOperateLog finishedOperateLog){ |
| | | return Result.seccess(finishedGoodsInventoryService.getSelectStorageRecord(pageNum,pageSize,selectDate,type,finishedOperateLog)); |
| | | } |
| | | |
| | | /*出入库返回*/ |
| | | @ApiOperation("出入库返回接口") |
| | | @PostMapping("/cancelFinishedGoodsInventoryStorage") |
| | | public Result cancelFinishedGoodsInventoryStorage( @RequestBody Map<String,Object> object){ |
| | | |
| | | if(finishedGoodsInventoryService.cancelFinishedGoodsInventoryStorage(object)){ |
| | | return Result.seccess(); |
| | | |
| | | }else { |
| | | throw new ServiceException(Constants.Code_500,"返回失败"); |
| | | |
| | | } |
| | | } |
| | | } |