Uses of Class
com.v1rex.liftnexus.transportorder.domain.TransportOrder
Packages that use TransportOrder
Package
Description
-
Uses of TransportOrder in com.v1rex.liftnexus.transportorder.mapper
Methods in com.v1rex.liftnexus.transportorder.mapper that return TransportOrderMethods in com.v1rex.liftnexus.transportorder.mapper with parameters of type TransportOrder -
Uses of TransportOrder in com.v1rex.liftnexus.transportorder.repository
Methods in com.v1rex.liftnexus.transportorder.repository that return types with arguments of type TransportOrderModifier and TypeMethodDescriptionTransportOrderRepository.findAllForPlanning()TransportOrderRepository.findByAssignedForkliftIsNull()org.springframework.data.domain.Page<TransportOrder> TransportOrderRepository.findByStatus(TransportOrderStatus status, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<TransportOrder> TransportOrderRepository.findByTargetLoadUnit_WeightKgGreaterThan(Integer weight, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<TransportOrder> TransportOrderRepository.searchOrders(TransportOrderStatus status, Integer minWeight, org.springframework.data.domain.Pageable pageable) -
Uses of TransportOrder in com.v1rex.liftnexus.transportorder.service
Methods in com.v1rex.liftnexus.transportorder.service that return TransportOrderModifier and TypeMethodDescriptionTransportOrderService.findEntityById(Long id) Retrieves the rawTransportOrderentity by its ID.Methods in com.v1rex.liftnexus.transportorder.service that return types with arguments of type TransportOrderModifier and TypeMethodDescriptionTransportOrderService.findAllEntities()Returns all transport order entities without pagination.TransportOrderService.findAllEntitiesForPlanning()Retrieves allTransportOrderentities with the object graph required by the Timefold solver.Method parameters in com.v1rex.liftnexus.transportorder.service with type arguments of type TransportOrderModifier and TypeMethodDescriptionvoidTransportOrderService.updateForkliftAssignments(List<TransportOrder> orders) Assigns forklifts to a list of transport orders and transitions them to theTransportOrderStatus.ASSIGNEDstate.