|  |  |  | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | public ResponseEntity<ReturnDataDTO<OrderItemCheckNumDTO>> getReplaceCheck(String orderItemId){ | 
|---|
|  |  |  | return returnData(R.SUCCESS.getCode(), deliveryOrderService.getOtherCheck(orderItemId | 
|---|
|  |  |  | , Constants.CHECK_TYPE.replace.name())); | 
|---|
|  |  |  | , Constants.CHECK_TYPE.replace.name(), false)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @GetMapping("/list/check/info/lack") | 
|---|
|  |  |  | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | public ResponseEntity<ReturnDataDTO<OrderItemCheckNumDTO>> getLackCheck(String orderItemId){ | 
|---|
|  |  |  | return returnData(R.SUCCESS.getCode(), deliveryOrderService.getOtherCheck(orderItemId | 
|---|
|  |  |  | , Constants.CHECK_TYPE.lack.name())); | 
|---|
|  |  |  | , Constants.CHECK_TYPE.lack.name(), false)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @GetMapping("/list/check/info/agree") | 
|---|
|  |  |  | 
|---|
|  |  |  | return returnData(R.SUCCESS.getCode(), orderService.selectOrderCheckList(dto)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PostMapping("/check/location/list") | 
|---|
|  |  |  | @ApiOperation(value = "查询订单清单列表-按库位分商品") | 
|---|
|  |  |  | public ResponseEntity<ReturnDataDTO<List<OrderCheckLocationListDTO>>> selectOrderCheckLocationList( | 
|---|
|  |  |  | @RequestBody OrderQueryDTO dto){ | 
|---|
|  |  |  | return returnData(R.SUCCESS.getCode(), orderService.selectOrderCheckLocationList(dto)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @GetMapping(value = "/refund") | 
|---|
|  |  |  | @ApiImplicitParams({ | 
|---|
|  |  |  | @ApiImplicitParam(name = "id", value = "订单id", required = true, dataType = "String", paramType = "query"), | 
|---|