Class LoadUnitController

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

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

  • Constructor Details

  • Method Details

    • index

      @GetMapping("/v1/load-units/index") public org.springframework.http.ResponseEntity<org.openwms.core.http.Index> index()
    • findByPKey

      @Transactional(readOnly=true) @GetMapping("/v1/load-units/{pKey}") public org.springframework.http.ResponseEntity<LoadUnitVO> findByPKey(@PathVariable("pKey") String pKey)
    • findPUinLU

      @Transactional(readOnly=true) @GetMapping("/v1/load-units/{pKey}/packaging-units") public org.springframework.http.ResponseEntity<List<PackagingUnitVO>> findPUinLU(@PathVariable("pKey") String pKey)
    • divide

      @PostMapping(value="/v1/transport-unit", params={"transportUnitBK","loadUnitType","parts"}) public org.springframework.http.ResponseEntity<Void> divide(@RequestParam("transportUnitBK") String transportUnitBK, @RequestParam("loadUnitType") String loadUnitType, @RequestParam("parts") int parts)
    • putProductInto

      @PutMapping("/v1/load-units/{pKey}") public org.springframework.http.ResponseEntity<Void> putProductInto(@PathVariable("pKey") String pKey, @RequestBody ProductVO productVO)