Class PackagingUnitMoveController

java.lang.Object
org.openwms.core.http.AbstractWebController
org.openwms.wms.inventory.rest.pu.PackagingUnitMoveController

@Validated @MeasuredRestController public class PackagingUnitMoveController extends org.openwms.core.http.AbstractWebController
A PackagingUnitMoveController.
Author:
Heiko Scherrer
  • Field Details

  • Constructor Details

  • Method Details

    • movePUQuantity

      @PutMapping("/v1/transport-units/{transportUnitBK}/load-units/{luPos}/packaging-units") public org.springframework.http.ResponseEntity<Void> movePUQuantity(@PathVariable("transportUnitBK") String transportUnitBK, @PathVariable("luPos") String luPos, @Valid @RequestBody @Valid MovePURequestVO request)
    • moveBetweenLocations

      @PutMapping("/v1/packaging-units/move-between-locations") public org.springframework.http.ResponseEntity<Void> moveBetweenLocations(@Valid @RequestBody @Valid List<MovePURequestVO> requests)
    • moveFromLocationToLoadUnit

      @PutMapping("/v1/packaging-units/move-to-load-unit") public org.springframework.http.ResponseEntity<Void> moveFromLocationToLoadUnit(@Valid @RequestBody @Valid MovePURequestVO request)