├── .gitignore
├── CHANGELOG
├── COPYING
├── LICENSE
├── README.md
├── config
├── appserver.properties
├── context.properties
├── rich.client
│ └── bobrowser
│ │ ├── AddressDescriptor.xml
│ │ ├── AdviceLineDescriptor.xml
│ │ ├── AreaDescriptor.xml
│ │ ├── BasicClientAssignedEntity.xml
│ │ ├── BasicClientAssignedEntityDescriptor.xml
│ │ ├── BasicEntityDescriptor.xml
│ │ ├── ClientDescriptor.xml
│ │ ├── DeliveryOrderDescriptor.xml
│ │ ├── DeliveryOrderLineDescriptor.xml
│ │ ├── DocumentDescriptor.xml
│ │ ├── FixAssignmentDescriptor.xml
│ │ ├── GoodsReceiptDescriptor.xml
│ │ ├── GoodsReceiptLineDescriptor.xml
│ │ ├── InventoryJournalDescriptor.xml
│ │ ├── ItemDataDescriptor.xml
│ │ ├── ItemDataNumberDescriptor.xml
│ │ ├── ItemUnitDescriptor.xml
│ │ ├── LOSBomDescriptor.xml
│ │ ├── LOSJasperReportDescriptor.xml
│ │ ├── LOSStocktakingOrderDescriptor.xml
│ │ ├── LOSStocktakingRecordDescriptor.xml
│ │ ├── LOSWorkingAreaDescriptor.xml
│ │ ├── LOSWorkingAreaPositionDescriptor.xml
│ │ ├── LocationClusterDescriptor.xml
│ │ ├── LocationTypeDescriptor.xml
│ │ ├── LotDescriptor.xml
│ │ ├── OrderStrategyDescriptor.xml
│ │ ├── PackagingUnitDescriptor.xml
│ │ ├── PacketDescriptor.xml
│ │ ├── PickingOrderDescriptor.xml
│ │ ├── PickingOrderLineDescriptor.xml
│ │ ├── ReplenishOrderDescriptor.xml
│ │ ├── ReportDescriptor.xml
│ │ ├── SequenceNumberDescriptor.xml
│ │ ├── ShippingOrderDescriptor.xml
│ │ ├── ShippingOrderLineDescriptor.xml
│ │ ├── StockUnitDescriptor.xml
│ │ ├── StorageLocationDescriptor.xml
│ │ ├── StorageStrategyDescriptor.xml
│ │ ├── SystemPropertyDescriptor.xml
│ │ ├── TransportOrderDescriptor.xml
│ │ ├── TypeCapacityConstraintDescriptor.xml
│ │ ├── UnitLoadDescriptor.xml
│ │ ├── UnitLoadTypeDescriptor.xml
│ │ ├── UserDescriptor.xml
│ │ └── ZoneDescriptor.xml
├── wildfly-16
│ ├── standalone-postgres.xml
│ └── standalone.xml
├── wildfly-17
│ ├── standalone-postgres.xml
│ └── standalone.xml
├── wildfly-18
│ ├── standalone-postgres.xml
│ └── standalone.xml
├── wildfly-19
│ └── standalone.xml
├── wildfly-21
│ └── standalone.xml
└── wildfly-22
│ ├── standalone-postgres.xml
│ └── standalone.xml
├── db
├── upgrade-v2.0.0-1.sql
├── upgrade-v2.0.0-2.sql
├── upgrade-v2.0.0-3.sql
├── upgrade-v2.0.0-4.sql
└── upgrade-v2.0.0-5.sql
├── dev
├── los-ejb
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── de
│ │ │ │ └── linogistix
│ │ │ │ ├── annotation
│ │ │ │ ├── PropertyDescriptor.java
│ │ │ │ ├── PropertyGroup.java
│ │ │ │ └── PropertyGroups.java
│ │ │ │ └── los
│ │ │ │ ├── common
│ │ │ │ ├── businessservice
│ │ │ │ │ ├── CommonBasicDataService.java
│ │ │ │ │ ├── CommonBasicDataServiceBean.java
│ │ │ │ │ ├── LOSHostReportGenerator.java
│ │ │ │ │ ├── LOSHostReportGeneratorBean.java
│ │ │ │ │ ├── LOSMailService.java
│ │ │ │ │ ├── LOSMailServiceBean.java
│ │ │ │ │ ├── LOSPrintService.java
│ │ │ │ │ └── LOSPrintServiceBean.java
│ │ │ │ ├── exception
│ │ │ │ │ ├── LOSExceptionRB.java
│ │ │ │ │ ├── OutOfRangeException.java
│ │ │ │ │ └── UnAuthorizedException.java
│ │ │ │ ├── facade
│ │ │ │ │ ├── LOSClientFacade.java
│ │ │ │ │ ├── LOSClientFacadeBean.java
│ │ │ │ │ ├── LOSJasperReportFacade.java
│ │ │ │ │ ├── LOSJasperReportFacadeBean.java
│ │ │ │ │ └── VersionFacade.java
│ │ │ │ └── service
│ │ │ │ │ ├── LOSJasperReportService.java
│ │ │ │ │ ├── LOSJasperReportServiceBean.java
│ │ │ │ │ ├── QueryClientService.java
│ │ │ │ │ └── QueryClientServiceBean.java
│ │ │ │ ├── crud
│ │ │ │ ├── BasicEntityMergeException.java
│ │ │ │ ├── BasicEntityMerger.java
│ │ │ │ ├── BusinessObjectCRUDBean.java
│ │ │ │ ├── BusinessObjectCRUDRemote.java
│ │ │ │ ├── BusinessObjectCreationException.java
│ │ │ │ ├── BusinessObjectDeleteException.java
│ │ │ │ ├── BusinessObjectExistsException.java
│ │ │ │ ├── BusinessObjectMergeException.java
│ │ │ │ ├── BusinessObjectModifiedException.java
│ │ │ │ ├── ClientCRUDBean.java
│ │ │ │ ├── ClientCRUDRemote.java
│ │ │ │ ├── LOSJasperReportCRUDBean.java
│ │ │ │ ├── LOSJasperReportCRUDRemote.java
│ │ │ │ ├── LOSSystemPropertyCRUDBean.java
│ │ │ │ ├── LOSSystemPropertyCRUDRemote.java
│ │ │ │ ├── SequenceNumberCRUDBean.java
│ │ │ │ └── SequenceNumberCRUDRemote.java
│ │ │ │ ├── customization
│ │ │ │ ├── EntityGenerator.java
│ │ │ │ └── ImportDataServiceDispatcher.java
│ │ │ │ ├── entityservice
│ │ │ │ ├── BusinessObjectLock.java
│ │ │ │ ├── BusinessObjectLockState.java
│ │ │ │ ├── SequenceNumberService.java
│ │ │ │ └── SequenceNumberServiceBean.java
│ │ │ │ ├── inventory
│ │ │ │ ├── businessservice
│ │ │ │ │ ├── InventoryBasicDataService.java
│ │ │ │ │ ├── InventoryBasicDataServiceBean.java
│ │ │ │ │ ├── LOSGoodsReceiptComponent.java
│ │ │ │ │ ├── LOSGoodsReceiptComponentBean.java
│ │ │ │ │ ├── LOSOrderBusiness.java
│ │ │ │ │ ├── LOSOrderBusinessBean.java
│ │ │ │ │ ├── QueryInventoryBusiness.java
│ │ │ │ │ ├── QueryInventoryBusinessBean.java
│ │ │ │ │ └── QueryInventoryTO.java
│ │ │ │ ├── crud
│ │ │ │ │ ├── AddressCRUDBean.java
│ │ │ │ │ ├── AddressCRUDRemote.java
│ │ │ │ │ ├── ItemDataCRUDBean.java
│ │ │ │ │ ├── ItemDataCRUDRemote.java
│ │ │ │ │ ├── ItemDataNumberCRUDBean.java
│ │ │ │ │ ├── ItemDataNumberCRUDRemote.java
│ │ │ │ │ ├── ItemUnitCRUDBean.java
│ │ │ │ │ ├── ItemUnitCRUDRemote.java
│ │ │ │ │ ├── LOSAdviceCRUDBean.java
│ │ │ │ │ ├── LOSAdviceCRUDRemote.java
│ │ │ │ │ ├── LOSBomCRUDBean.java
│ │ │ │ │ ├── LOSBomCRUDRemote.java
│ │ │ │ │ ├── LOSCustomerOrderCRUDBean.java
│ │ │ │ │ ├── LOSCustomerOrderCRUDRemote.java
│ │ │ │ │ ├── LOSCustomerOrderPositionCRUDBean.java
│ │ │ │ │ ├── LOSCustomerOrderPositionCRUDRemote.java
│ │ │ │ │ ├── LOSGoodsOutRequestCRUDBean.java
│ │ │ │ │ ├── LOSGoodsOutRequestCRUDRemote.java
│ │ │ │ │ ├── LOSGoodsOutRequestPositionCRUDBean.java
│ │ │ │ │ ├── LOSGoodsOutRequestPositionCRUDRemote.java
│ │ │ │ │ ├── LOSGoodsReceiptCRUDBean.java
│ │ │ │ │ ├── LOSGoodsReceiptCRUDRemote.java
│ │ │ │ │ ├── LOSGoodsReceiptPositionCRUDBean.java
│ │ │ │ │ ├── LOSGoodsReceiptPositionCRUDRemote.java
│ │ │ │ │ ├── LOSOrderStrategyCRUDBean.java
│ │ │ │ │ ├── LOSOrderStrategyCRUDRemote.java
│ │ │ │ │ ├── LOSPickingOrderCRUDBean.java
│ │ │ │ │ ├── LOSPickingOrderCRUDRemote.java
│ │ │ │ │ ├── LOSPickingPositionCRUDBean.java
│ │ │ │ │ ├── LOSPickingPositionCRUDRemote.java
│ │ │ │ │ ├── LOSPickingUnitLoadCRUDBean.java
│ │ │ │ │ ├── LOSPickingUnitLoadCRUDRemote.java
│ │ │ │ │ ├── LOSReplenishOrderCRUDBean.java
│ │ │ │ │ ├── LOSReplenishOrderCRUDRemote.java
│ │ │ │ │ ├── LOSStorageRequestCRUDBean.java
│ │ │ │ │ ├── LOSStorageRequestCRUDRemote.java
│ │ │ │ │ ├── LOSStorageStrategyCRUDBean.java
│ │ │ │ │ ├── LOSStorageStrategyCRUDRemote.java
│ │ │ │ │ ├── LOSUnitLoadAdviceCRUDBean.java
│ │ │ │ │ ├── LOSUnitLoadAdviceCRUDRemote.java
│ │ │ │ │ ├── LOSUnitLoadAdvicePositionCRUDBean.java
│ │ │ │ │ ├── LOSUnitLoadAdvicePositionCRUDRemote.java
│ │ │ │ │ ├── PackagingUnitCRUDBean.java
│ │ │ │ │ ├── PackagingUnitCRUDRemote.java
│ │ │ │ │ ├── StockUnitCRUDBean.java
│ │ │ │ │ └── StockUnitCRUDRemote.java
│ │ │ │ ├── customization
│ │ │ │ │ ├── ManageItemDataService.java
│ │ │ │ │ ├── ManageItemDataServiceBean.java
│ │ │ │ │ ├── ManageOrderService.java
│ │ │ │ │ ├── ManageOrderServiceBean.java
│ │ │ │ │ ├── ManageUnitLoadAdviceService.java
│ │ │ │ │ └── ManageUnitLoadAdviceServiceBean.java
│ │ │ │ ├── exception
│ │ │ │ │ ├── InventoryException.java
│ │ │ │ │ ├── InventoryExceptionKey.java
│ │ │ │ │ ├── InventoryTransactionException.java
│ │ │ │ │ ├── InventoryTransferException.java
│ │ │ │ │ └── StockExistException.java
│ │ │ │ ├── facade
│ │ │ │ │ ├── AdviceFacade.java
│ │ │ │ │ ├── AdviceFacadeBean.java
│ │ │ │ │ ├── LOSCompatibilityFacade.java
│ │ │ │ │ ├── LOSCompatibilityFacadeBean.java
│ │ │ │ │ ├── LOSExtinguishFacade.java
│ │ │ │ │ ├── LOSExtinguishFacadeBean.java
│ │ │ │ │ ├── LOSGoodsOutFacade.java
│ │ │ │ │ ├── LOSGoodsOutFacadeBean.java
│ │ │ │ │ ├── LOSGoodsOutTO.java
│ │ │ │ │ ├── LOSGoodsReceiptFacade.java
│ │ │ │ │ ├── LOSGoodsReceiptFacadeBean.java
│ │ │ │ │ ├── LOSOrderFacade.java
│ │ │ │ │ ├── LOSOrderFacadeBean.java
│ │ │ │ │ ├── LOSPickingFacade.java
│ │ │ │ │ ├── LOSPickingFacadeBean.java
│ │ │ │ │ ├── LOSReplenishFacade.java
│ │ │ │ │ ├── LOSReplenishFacadeBean.java
│ │ │ │ │ ├── ManageInventoryFacade.java
│ │ │ │ │ ├── ManageInventoryFacadeBean.java
│ │ │ │ │ ├── OrderPositionTO.java
│ │ │ │ │ ├── QueryInventoryFacade.java
│ │ │ │ │ ├── QueryInventoryFacadeBean.java
│ │ │ │ │ ├── StorageFacade.java
│ │ │ │ │ └── StorageFacadeBean.java
│ │ │ │ ├── model
│ │ │ │ │ ├── LOSAdviceType.java
│ │ │ │ │ ├── LOSBom.java
│ │ │ │ │ ├── LOSInventoryPropertyKey.java
│ │ │ │ │ ├── LOSUnitLoadAdvice.java
│ │ │ │ │ ├── LOSUnitLoadAdvicePosition.java
│ │ │ │ │ ├── LOSUnitLoadAdviceState.java
│ │ │ │ │ └── StockUnitLabel.java
│ │ │ │ ├── pick
│ │ │ │ │ └── facade
│ │ │ │ │ │ └── CreatePickRequestPositionTO.java
│ │ │ │ ├── query
│ │ │ │ │ ├── AddressQueryBean.java
│ │ │ │ │ ├── AddressQueryRemote.java
│ │ │ │ │ ├── InventoryJournalQueryBean.java
│ │ │ │ │ ├── InventoryJournalQueryRemote.java
│ │ │ │ │ ├── ItemDataNumberQueryBean.java
│ │ │ │ │ ├── ItemDataNumberQueryRemote.java
│ │ │ │ │ ├── ItemDataQueryBean.java
│ │ │ │ │ ├── ItemDataQueryRemote.java
│ │ │ │ │ ├── ItemUnitQueryBean.java
│ │ │ │ │ ├── ItemUnitQueryRemote.java
│ │ │ │ │ ├── LOSAdviceQueryBean.java
│ │ │ │ │ ├── LOSAdviceQueryRemote.java
│ │ │ │ │ ├── LOSBomQueryBean.java
│ │ │ │ │ ├── LOSBomQueryRemote.java
│ │ │ │ │ ├── LOSCustomerOrderPositionQueryBean.java
│ │ │ │ │ ├── LOSCustomerOrderPositionQueryRemote.java
│ │ │ │ │ ├── LOSCustomerOrderQueryBean.java
│ │ │ │ │ ├── LOSCustomerOrderQueryRemote.java
│ │ │ │ │ ├── LOSGoodsOutRequestPositionQueryBean.java
│ │ │ │ │ ├── LOSGoodsOutRequestPositionQueryRemote.java
│ │ │ │ │ ├── LOSGoodsOutRequestQueryBean.java
│ │ │ │ │ ├── LOSGoodsOutRequestQueryRemote.java
│ │ │ │ │ ├── LOSGoodsReceiptPositionQueryBean.java
│ │ │ │ │ ├── LOSGoodsReceiptPositionQueryRemote.java
│ │ │ │ │ ├── LOSGoodsReceiptQueryBean.java
│ │ │ │ │ ├── LOSGoodsReceiptQueryRemote.java
│ │ │ │ │ ├── LOSOrderStrategyQueryBean.java
│ │ │ │ │ ├── LOSOrderStrategyQueryRemote.java
│ │ │ │ │ ├── LOSPickingOrderQueryBean.java
│ │ │ │ │ ├── LOSPickingOrderQueryRemote.java
│ │ │ │ │ ├── LOSPickingPositionQueryBean.java
│ │ │ │ │ ├── LOSPickingPositionQueryRemote.java
│ │ │ │ │ ├── LOSPickingUnitLoadQueryBean.java
│ │ │ │ │ ├── LOSPickingUnitLoadQueryRemote.java
│ │ │ │ │ ├── LOSStorageRequestQueryBean.java
│ │ │ │ │ ├── LOSStorageRequestQueryRemote.java
│ │ │ │ │ ├── LOSStorageStrategyQueryBean.java
│ │ │ │ │ ├── LOSStorageStrategyQueryRemote.java
│ │ │ │ │ ├── LOSUnitLoadAdvicePositionQueryBean.java
│ │ │ │ │ ├── LOSUnitLoadAdvicePositionQueryRemote.java
│ │ │ │ │ ├── LOSUnitLoadAdviceQueryBean.java
│ │ │ │ │ ├── LOSUnitLoadAdviceQueryRemote.java
│ │ │ │ │ ├── PackagingUnitQueryBean.java
│ │ │ │ │ ├── PackagingUnitQueryRemote.java
│ │ │ │ │ ├── StockUnitQueryBean.java
│ │ │ │ │ ├── StockUnitQueryRemote.java
│ │ │ │ │ └── dto
│ │ │ │ │ │ ├── AddressTO.java
│ │ │ │ │ │ ├── InventoryJournalTO.java
│ │ │ │ │ │ ├── ItemDataNumberTO.java
│ │ │ │ │ │ ├── ItemDataTO.java
│ │ │ │ │ │ ├── ItemMeasureTO.java
│ │ │ │ │ │ ├── LOSAdviceTO.java
│ │ │ │ │ │ ├── LOSBomTO.java
│ │ │ │ │ │ ├── LOSCustomerOrderPositionTO.java
│ │ │ │ │ │ ├── LOSCustomerOrderTO.java
│ │ │ │ │ │ ├── LOSGoodsOutPositionTO.java
│ │ │ │ │ │ ├── LOSGoodsOutRequestTO.java
│ │ │ │ │ │ ├── LOSGoodsReceiptPositionTO.java
│ │ │ │ │ │ ├── LOSGoodsReceiptTO.java
│ │ │ │ │ │ ├── LOSOrderStockUnitTO.java
│ │ │ │ │ │ ├── LOSPickingOrderTO.java
│ │ │ │ │ │ ├── LOSPickingPositionTO.java
│ │ │ │ │ │ ├── LOSPickingUnitLoadTO.java
│ │ │ │ │ │ ├── LOSStorageRequestTO.java
│ │ │ │ │ │ ├── LOSStorageStrategyTO.java
│ │ │ │ │ │ ├── LOSUnitLoadAdvicePositionTO.java
│ │ │ │ │ │ ├── LOSUnitLoadAdviceTO.java
│ │ │ │ │ │ ├── PackagingUnitTO.java
│ │ │ │ │ │ └── StockUnitTO.java
│ │ │ │ ├── res
│ │ │ │ │ └── InventoryBundleResolver.java
│ │ │ │ └── service
│ │ │ │ │ ├── AddressService.java
│ │ │ │ │ ├── AddressServiceBean.java
│ │ │ │ │ ├── ClientItemNumberTO.java
│ │ │ │ │ ├── InventoryGeneratorBean.java
│ │ │ │ │ ├── InventoryGeneratorService.java
│ │ │ │ │ ├── InventoryJournalService.java
│ │ │ │ │ ├── InventoryJournalServiceBean.java
│ │ │ │ │ ├── ItemDataNumberService.java
│ │ │ │ │ ├── ItemDataNumberServiceBean.java
│ │ │ │ │ ├── ItemDataService.java
│ │ │ │ │ ├── ItemDataServiceBean.java
│ │ │ │ │ ├── ItemUnitService.java
│ │ │ │ │ ├── ItemUnitServiceBean.java
│ │ │ │ │ ├── LOSBomService.java
│ │ │ │ │ ├── LOSBomServiceBean.java
│ │ │ │ │ ├── LOSCustomerOrderPositionService.java
│ │ │ │ │ ├── LOSCustomerOrderPositionServiceBean.java
│ │ │ │ │ ├── LOSCustomerOrderService.java
│ │ │ │ │ ├── LOSCustomerOrderServiceBean.java
│ │ │ │ │ ├── LOSGoodsOutRequestPositionService.java
│ │ │ │ │ ├── LOSGoodsOutRequestPositionServiceBean.java
│ │ │ │ │ ├── LOSGoodsOutRequestService.java
│ │ │ │ │ ├── LOSGoodsOutRequestServiceBean.java
│ │ │ │ │ ├── LOSGoodsReceiptPositionService.java
│ │ │ │ │ ├── LOSGoodsReceiptPositionServiceBean.java
│ │ │ │ │ ├── LOSGoodsReceiptService.java
│ │ │ │ │ ├── LOSGoodsReceiptServiceBean.java
│ │ │ │ │ ├── LOSOrderStrategyService.java
│ │ │ │ │ ├── LOSOrderStrategyServiceBean.java
│ │ │ │ │ ├── LOSPickingOrderService.java
│ │ │ │ │ ├── LOSPickingOrderServiceBean.java
│ │ │ │ │ ├── LOSPickingPositionService.java
│ │ │ │ │ ├── LOSPickingPositionServiceBean.java
│ │ │ │ │ ├── LOSPickingUnitLoadService.java
│ │ │ │ │ ├── LOSPickingUnitLoadServiceBean.java
│ │ │ │ │ ├── LOSReplenishOrderService.java
│ │ │ │ │ ├── LOSReplenishOrderServiceBean.java
│ │ │ │ │ ├── LOSStorageRequestService.java
│ │ │ │ │ ├── LOSStorageRequestServiceBean.java
│ │ │ │ │ ├── LOSStorageStrategyService.java
│ │ │ │ │ ├── LOSStorageStrategyServiceBean.java
│ │ │ │ │ ├── PackagingUnitService.java
│ │ │ │ │ ├── PackagingUnitServiceBean.java
│ │ │ │ │ ├── QueryAdviceService.java
│ │ │ │ │ ├── QueryAdviceServiceBean.java
│ │ │ │ │ ├── QueryAdviceServiceRemote.java
│ │ │ │ │ ├── QueryGoodsReceiptServiceBean.java
│ │ │ │ │ ├── QueryGoodsReceiptServiceRemote.java
│ │ │ │ │ ├── QueryItemDataService.java
│ │ │ │ │ ├── QueryItemDataServiceBean.java
│ │ │ │ │ ├── QueryItemDataServiceRemote.java
│ │ │ │ │ ├── QueryStockServiceBean.java
│ │ │ │ │ ├── QueryStockServiceRemote.java
│ │ │ │ │ ├── QueryUnitLoadAdvicePositionService.java
│ │ │ │ │ ├── QueryUnitLoadAdvicePositionServiceBean.java
│ │ │ │ │ ├── QueryUnitLoadAdviceService.java
│ │ │ │ │ ├── QueryUnitLoadAdviceServiceBean.java
│ │ │ │ │ ├── QueryUnitLoadAdviceServiceRemote.java
│ │ │ │ │ ├── StockUnitLockState.java
│ │ │ │ │ ├── StockUnitService.java
│ │ │ │ │ ├── StockUnitServiceBean.java
│ │ │ │ │ └── dto
│ │ │ │ │ └── GoodsReceiptTO.java
│ │ │ │ ├── location
│ │ │ │ ├── businessservice
│ │ │ │ │ ├── LOSRackLocationComparatorByName.java
│ │ │ │ │ └── LOSRackLocationNameUtil.java
│ │ │ │ ├── constants
│ │ │ │ │ ├── LOSStorageLocationLockState.java
│ │ │ │ │ └── LOSUnitLoadLockState.java
│ │ │ │ ├── crud
│ │ │ │ │ ├── LOSAreaCRUDBean.java
│ │ │ │ │ ├── LOSAreaCRUDRemote.java
│ │ │ │ │ ├── LOSFixedLocationAssignmentCRUDBean.java
│ │ │ │ │ ├── LOSFixedLocationAssignmentCRUDRemote.java
│ │ │ │ │ ├── LOSLocationClusterCRUDBean.java
│ │ │ │ │ ├── LOSLocationClusterCRUDRemote.java
│ │ │ │ │ ├── LOSStorageLocationCRUDBean.java
│ │ │ │ │ ├── LOSStorageLocationCRUDRemote.java
│ │ │ │ │ ├── LOSStorageLocationTypeCRUDBean.java
│ │ │ │ │ ├── LOSStorageLocationTypeCRUDRemote.java
│ │ │ │ │ ├── LOSTypeCapacityConstraintCRUDBean.java
│ │ │ │ │ ├── LOSTypeCapacityConstraintCRUDRemote.java
│ │ │ │ │ ├── LOSUnitLoadCRUDBean.java
│ │ │ │ │ ├── LOSUnitLoadCRUDRemote.java
│ │ │ │ │ ├── LOSWorkingAreaCRUDBean.java
│ │ │ │ │ ├── LOSWorkingAreaCRUDRemote.java
│ │ │ │ │ ├── LOSWorkingAreaPositionCRUDBean.java
│ │ │ │ │ ├── LOSWorkingAreaPositionCRUDRemote.java
│ │ │ │ │ ├── UnitLoadCRUDBean.java
│ │ │ │ │ ├── UnitLoadCRUDRemote.java
│ │ │ │ │ ├── UnitLoadTypeCRUDBean.java
│ │ │ │ │ ├── UnitLoadTypeCRUDRemote.java
│ │ │ │ │ ├── ZoneCRUDBean.java
│ │ │ │ │ └── ZoneCRUDRemote.java
│ │ │ │ ├── customization
│ │ │ │ │ ├── CustomLocationService.java
│ │ │ │ │ └── CustomLocationServiceBean.java
│ │ │ │ ├── entityservice
│ │ │ │ │ ├── LOSAreaService.java
│ │ │ │ │ ├── LOSAreaServiceBean.java
│ │ │ │ │ ├── LOSAreaServiceRemote.java
│ │ │ │ │ ├── LOSFixedLocationAssignmentService.java
│ │ │ │ │ ├── LOSFixedLocationAssignmentServiceBean.java
│ │ │ │ │ ├── LOSLocationClusterService.java
│ │ │ │ │ ├── LOSLocationClusterServiceBean.java
│ │ │ │ │ ├── LOSLocationClusterServiceRemote.java
│ │ │ │ │ ├── LOSStorageLocationService.java
│ │ │ │ │ ├── LOSStorageLocationServiceBean.java
│ │ │ │ │ ├── LOSStorageLocationTypeService.java
│ │ │ │ │ ├── LOSStorageLocationTypeServiceBean.java
│ │ │ │ │ ├── LOSStorageLocationTypeServiceRemote.java
│ │ │ │ │ ├── LOSTypeCapacityConstraintService.java
│ │ │ │ │ ├── LOSTypeCapacityConstraintServiceBean.java
│ │ │ │ │ ├── LOSUnitLoadService.java
│ │ │ │ │ ├── LOSUnitLoadServiceBean.java
│ │ │ │ │ ├── LOSWorkingAreaPositionService.java
│ │ │ │ │ ├── LOSWorkingAreaPositionServiceBean.java
│ │ │ │ │ ├── LOSWorkingAreaService.java
│ │ │ │ │ └── LOSWorkingAreaServiceBean.java
│ │ │ │ ├── exception
│ │ │ │ │ ├── LOSLocationAlreadyFullException.java
│ │ │ │ │ ├── LOSLocationException.java
│ │ │ │ │ ├── LOSLocationExceptionKey.java
│ │ │ │ │ ├── LOSLocationNotSuitableException.java
│ │ │ │ │ ├── LOSLocationReservedException.java
│ │ │ │ │ └── LOSLocationWrongClientException.java
│ │ │ │ ├── facade
│ │ │ │ │ ├── LOSStockListItem.java
│ │ │ │ │ ├── LOSStorageReportFacade.java
│ │ │ │ │ ├── LOSStorageReportFacadeBean.java
│ │ │ │ │ ├── ManageLocationFacade.java
│ │ │ │ │ ├── ManageLocationFacadeBean.java
│ │ │ │ │ ├── StorageLocationLabelReportFacade.java
│ │ │ │ │ └── StorageLocationLabelReportFacadeBean.java
│ │ │ │ ├── model
│ │ │ │ │ ├── LOSWorkingArea.java
│ │ │ │ │ └── LOSWorkingAreaPosition.java
│ │ │ │ ├── query
│ │ │ │ │ ├── LOSAreaQueryBean.java
│ │ │ │ │ ├── LOSAreaQueryRemote.java
│ │ │ │ │ ├── LOSFixedLocationAssignmentQueryBean.java
│ │ │ │ │ ├── LOSFixedLocationAssignmentQueryRemote.java
│ │ │ │ │ ├── LOSLocationClusterQueryBean.java
│ │ │ │ │ ├── LOSLocationClusterQueryRemote.java
│ │ │ │ │ ├── LOSStorageLocationQueryBean.java
│ │ │ │ │ ├── LOSStorageLocationQueryRemote.java
│ │ │ │ │ ├── LOSStorageLocationTypeQueryBean.java
│ │ │ │ │ ├── LOSStorageLocationTypeQueryRemote.java
│ │ │ │ │ ├── LOSTypeCapacityConstraintQueryBean.java
│ │ │ │ │ ├── LOSTypeCapacityConstraintQueryRemote.java
│ │ │ │ │ ├── LOSUnitLoadQueryBean.java
│ │ │ │ │ ├── LOSUnitLoadQueryRemote.java
│ │ │ │ │ ├── LOSWorkingAreaPositionQueryBean.java
│ │ │ │ │ ├── LOSWorkingAreaPositionQueryRemote.java
│ │ │ │ │ ├── LOSWorkingAreaQueryBean.java
│ │ │ │ │ ├── LOSWorkingAreaQueryRemote.java
│ │ │ │ │ ├── UnitLoadQueryBean.java
│ │ │ │ │ ├── UnitLoadQueryRemote.java
│ │ │ │ │ ├── UnitLoadTypeQueryBean.java
│ │ │ │ │ ├── UnitLoadTypeQueryRemote.java
│ │ │ │ │ ├── ZoneQueryBean.java
│ │ │ │ │ ├── ZoneQueryRemote.java
│ │ │ │ │ └── dto
│ │ │ │ │ │ ├── LOSFixedLocationAssignmentTO.java
│ │ │ │ │ │ ├── LOSRackTO.java
│ │ │ │ │ │ ├── LOSTypeCapacityConstraintTO.java
│ │ │ │ │ │ ├── LOSWorkingAreaPositionTO.java
│ │ │ │ │ │ ├── StorageLocationTO.java
│ │ │ │ │ │ └── UnitLoadTO.java
│ │ │ │ ├── report
│ │ │ │ │ ├── StorageLocationLabelReport.java
│ │ │ │ │ ├── StorageLocationLabelReportBean.java
│ │ │ │ │ └── StorageLocationLabelTO.java
│ │ │ │ ├── res
│ │ │ │ │ └── BundleResolver.java
│ │ │ │ └── service
│ │ │ │ │ ├── QueryFixedAssignmentServiceBean.java
│ │ │ │ │ ├── QueryFixedAssignmentServiceRemote.java
│ │ │ │ │ ├── QueryStorageLocationServiceBean.java
│ │ │ │ │ ├── QueryStorageLocationServiceRemote.java
│ │ │ │ │ ├── QueryTypeCapacityConstraintService.java
│ │ │ │ │ ├── QueryTypeCapacityConstraintServiceBean.java
│ │ │ │ │ ├── QueryTypeCapacityConstraintServiceRemote.java
│ │ │ │ │ ├── QueryUnitLoadServiceBean.java
│ │ │ │ │ ├── QueryUnitLoadServiceRemote.java
│ │ │ │ │ ├── QueryUnitLoadTypeServiceBean.java
│ │ │ │ │ ├── QueryUnitLoadTypeServiceRemote.java
│ │ │ │ │ ├── UnitLoadService.java
│ │ │ │ │ ├── UnitLoadServiceBean.java
│ │ │ │ │ ├── UnitLoadTypeService.java
│ │ │ │ │ ├── UnitLoadTypeServiceBean.java
│ │ │ │ │ ├── ZoneService.java
│ │ │ │ │ └── ZoneServiceBean.java
│ │ │ │ ├── model
│ │ │ │ ├── LOSCommonPropertyKey.java
│ │ │ │ ├── Prio.java
│ │ │ │ └── State.java
│ │ │ │ ├── module
│ │ │ │ └── LOSRuntimeService.java
│ │ │ │ ├── query
│ │ │ │ ├── BODTO.java
│ │ │ │ ├── BODTOConstructorProperty.java
│ │ │ │ ├── BusinessObjectQueryBean.java
│ │ │ │ ├── BusinessObjectQueryRemote.java
│ │ │ │ ├── ClientQueryBean.java
│ │ │ │ ├── ClientQueryRemote.java
│ │ │ │ ├── LOSJasperReportQueryBean.java
│ │ │ │ ├── LOSJasperReportQueryRemote.java
│ │ │ │ ├── LOSResultList.java
│ │ │ │ ├── LOSSystemPropertyQueryBean.java
│ │ │ │ ├── LOSSystemPropertyQueryRemote.java
│ │ │ │ ├── ListOrderByTokenAdapter.java
│ │ │ │ ├── OrderByToken.java
│ │ │ │ ├── QueryDetail.java
│ │ │ │ ├── SequenceNumberQueryBean.java
│ │ │ │ ├── SequenceNumberQueryRemote.java
│ │ │ │ ├── TemplateQuery.java
│ │ │ │ ├── TemplateQueryFilter.java
│ │ │ │ ├── TemplateQueryWhereToken.java
│ │ │ │ ├── dto
│ │ │ │ │ ├── LOSJasperReportTO.java
│ │ │ │ │ ├── LOSSystemPropertyTO.java
│ │ │ │ │ └── SequenceNumberTO.java
│ │ │ │ └── exception
│ │ │ │ │ ├── BusinessObjectNotFoundException.java
│ │ │ │ │ ├── BusinessObjectNotUniqueException.java
│ │ │ │ │ ├── BusinessObjectQueryException.java
│ │ │ │ │ └── BusinessObjectQueryExceptionKey.java
│ │ │ │ ├── report
│ │ │ │ ├── BarcodeLabelReport.java
│ │ │ │ ├── BarcodeLabelReportBean.java
│ │ │ │ ├── BarcodeLabelTO.java
│ │ │ │ ├── GenericExcelExporter.java
│ │ │ │ ├── ReportException.java
│ │ │ │ └── ReportExceptionKey.java
│ │ │ │ ├── res
│ │ │ │ └── BundleResolver.java
│ │ │ │ ├── runtime
│ │ │ │ ├── BusinessObjectSecurityException.java
│ │ │ │ ├── RuntimeServicesBean.java
│ │ │ │ └── RuntimeServicesRemote.java
│ │ │ │ ├── stocktaking
│ │ │ │ ├── component
│ │ │ │ │ ├── LOSStockTakingProcessComp.java
│ │ │ │ │ └── LOSStockTakingProcessCompBean.java
│ │ │ │ ├── crud
│ │ │ │ │ ├── LOSStockTakingCRUDBean.java
│ │ │ │ │ ├── LOSStockTakingCRUDRemote.java
│ │ │ │ │ ├── LOSStocktakingOrderCRUDBean.java
│ │ │ │ │ ├── LOSStocktakingOrderCRUDRemote.java
│ │ │ │ │ ├── LOSStocktakingRecordCRUDBean.java
│ │ │ │ │ └── LOSStocktakingRecordCRUDRemote.java
│ │ │ │ ├── customization
│ │ │ │ │ ├── LOSManageStocktakingService.java
│ │ │ │ │ └── LOSManageStocktakingServiceBean.java
│ │ │ │ ├── exception
│ │ │ │ │ ├── BundleResolver.java
│ │ │ │ │ ├── LOSStockTakingException.java
│ │ │ │ │ └── LOSStockTakingExceptionKey.java
│ │ │ │ ├── facade
│ │ │ │ │ ├── LOSStocktakingFacade.java
│ │ │ │ │ └── LOSStocktakingFacadeBean.java
│ │ │ │ ├── model
│ │ │ │ │ ├── LOSStockTaking.java
│ │ │ │ │ ├── LOSStockTakingType.java
│ │ │ │ │ ├── LOSStocktakingEvent.java
│ │ │ │ │ ├── LOSStocktakingOrder.java
│ │ │ │ │ ├── LOSStocktakingRecord.java
│ │ │ │ │ └── LOSStocktakingState.java
│ │ │ │ ├── query
│ │ │ │ │ ├── LOSStockTakingQueryBean.java
│ │ │ │ │ ├── LOSStockTakingQueryRemote.java
│ │ │ │ │ ├── LOSStocktakingOrderQueryBean.java
│ │ │ │ │ ├── LOSStocktakingOrderQueryRemote.java
│ │ │ │ │ ├── LOSStocktakingRecordQueryBean.java
│ │ │ │ │ ├── LOSStocktakingRecordQueryRemote.java
│ │ │ │ │ └── dto
│ │ │ │ │ │ ├── StockTakingOrderTO.java
│ │ │ │ │ │ └── StockTakingRecordTO.java
│ │ │ │ └── service
│ │ │ │ │ ├── LOSStockTakingService.java
│ │ │ │ │ ├── LOSStockTakingServiceBean.java
│ │ │ │ │ ├── LOSStocktakingOrderService.java
│ │ │ │ │ ├── LOSStocktakingOrderServiceBean.java
│ │ │ │ │ ├── LOSStocktakingRecordService.java
│ │ │ │ │ ├── LOSStocktakingRecordServiceBean.java
│ │ │ │ │ ├── QueryStockTakingOrderService.java
│ │ │ │ │ └── QueryStockTakingOrderServiceBean.java
│ │ │ │ ├── user
│ │ │ │ ├── LoginServiceBean.java
│ │ │ │ ├── LoginServiceRemote.java
│ │ │ │ ├── crud
│ │ │ │ │ ├── RoleCRUDBean.java
│ │ │ │ │ ├── RoleCRUDRemote.java
│ │ │ │ │ ├── UserCRUDBean.java
│ │ │ │ │ └── UserCRUDRemote.java
│ │ │ │ └── query
│ │ │ │ │ ├── RoleQueryBean.java
│ │ │ │ │ ├── RoleQueryRemote.java
│ │ │ │ │ ├── UserQueryBean.java
│ │ │ │ │ └── UserQueryRemote.java
│ │ │ │ └── util
│ │ │ │ ├── BusinessObjectHelper.java
│ │ │ │ ├── DateHelper.java
│ │ │ │ ├── GenericTypeResolver.java
│ │ │ │ ├── StringTools.java
│ │ │ │ ├── TypeResolver.java
│ │ │ │ ├── businessservice
│ │ │ │ ├── ContextService.java
│ │ │ │ ├── ContextServiceBean.java
│ │ │ │ ├── ImportDataException.java
│ │ │ │ ├── ImportDataService.java
│ │ │ │ └── ImportDataServiceBean.java
│ │ │ │ └── entityservice
│ │ │ │ ├── LOSSystemPropertyService.java
│ │ │ │ ├── LOSSystemPropertyServiceBean.java
│ │ │ │ └── LOSSystemPropertyServiceRemote.java
│ │ ├── resources-filtered
│ │ │ └── de
│ │ │ │ └── linogistix
│ │ │ │ └── los
│ │ │ │ └── res
│ │ │ │ └── VersionBundle.properties
│ │ └── resources
│ │ │ ├── META-INF
│ │ │ ├── beans.xml
│ │ │ └── jboss-ejb3.xml
│ │ │ └── de
│ │ │ └── linogistix
│ │ │ └── los
│ │ │ ├── inventory
│ │ │ └── res
│ │ │ │ ├── Bundle.properties
│ │ │ │ ├── Bundle_de.properties
│ │ │ │ ├── Bundle_en.properties
│ │ │ │ ├── Bundle_es.properties
│ │ │ │ ├── Bundle_fr.properties
│ │ │ │ ├── Bundle_hu.properties
│ │ │ │ └── Bundle_ru.properties
│ │ │ ├── location
│ │ │ └── res
│ │ │ │ ├── Bundle.properties
│ │ │ │ ├── Bundle_de.properties
│ │ │ │ ├── Bundle_en.properties
│ │ │ │ ├── Bundle_es.properties
│ │ │ │ ├── Bundle_fr.properties
│ │ │ │ ├── Bundle_hu.properties
│ │ │ │ ├── Bundle_ru.properties
│ │ │ │ ├── StorageLocationLabels.jrxml
│ │ │ │ ├── downarrow.png
│ │ │ │ ├── test.png
│ │ │ │ └── uparrow.png
│ │ │ ├── res
│ │ │ ├── Bundle.properties
│ │ │ ├── Bundle_de.properties
│ │ │ ├── Bundle_en.properties
│ │ │ ├── Bundle_es.properties
│ │ │ ├── Bundle_fr.properties
│ │ │ ├── Bundle_hu.properties
│ │ │ ├── Bundle_ru.properties
│ │ │ └── GenericBarcodeLabels.jrxml
│ │ │ └── stocktaking
│ │ │ └── exception
│ │ │ ├── LOSStockTakingExceptionBundle.properties
│ │ │ ├── LOSStockTakingExceptionBundle_de.properties
│ │ │ ├── LOSStockTakingExceptionBundle_en.properties
│ │ │ ├── LOSStockTakingExceptionBundle_es.properties
│ │ │ ├── LOSStockTakingExceptionBundle_fr.properties
│ │ │ ├── LOSStockTakingExceptionBundle_hu.properties
│ │ │ └── LOSStockTakingExceptionBundle_ru.properties
│ │ └── test
│ │ └── java
│ │ ├── de
│ │ └── linogistix
│ │ │ └── los
│ │ │ ├── admin
│ │ │ └── GenericServiceCaller.java
│ │ │ ├── example
│ │ │ ├── CommonTestTopologyBean.java
│ │ │ ├── CommonTestTopologyRemote.java
│ │ │ ├── CommonTopologyException.java
│ │ │ ├── InventoryTestTopologyBean.java
│ │ │ ├── InventoryTestTopologyRemote.java
│ │ │ ├── InventoryTopologyException.java
│ │ │ ├── LocationTestTopologyBean.java
│ │ │ ├── LocationTestTopologyRemote.java
│ │ │ ├── LocationTopologyException.java
│ │ │ ├── TopologyBeanCleanupTest.java
│ │ │ └── TopologyBeanTest.java
│ │ │ ├── inventory
│ │ │ ├── example
│ │ │ │ ├── TopologyBeanCleanupTest.java
│ │ │ │ └── TopologyBeanTest.java
│ │ │ ├── facade
│ │ │ │ ├── ManageInventoryFacadeBeanTest.java
│ │ │ │ └── OrderFacadeBeanTest.java
│ │ │ ├── pick
│ │ │ │ ├── facade
│ │ │ │ │ └── PickOrderFacadeBeanTest.java
│ │ │ │ └── report
│ │ │ │ │ └── PickReportBeanTest.java
│ │ │ ├── query
│ │ │ │ └── StockUnitQueryBeanTest.java
│ │ │ ├── report
│ │ │ │ └── StockUnitLabelReportBeanTest.java
│ │ │ └── test
│ │ │ │ ├── InventoryFacadeCleanUpTestSuite.java
│ │ │ │ ├── InventoryFacadeTestSuite.java
│ │ │ │ └── TestRackLocationComparator.java
│ │ │ ├── location
│ │ │ ├── businessservice
│ │ │ │ └── LOSRackLocationComparatorByNameTest.java
│ │ │ └── report
│ │ │ │ └── StorageLocationLabelReportBeanTest.java
│ │ │ ├── query
│ │ │ ├── BOQueryMDATEST.java
│ │ │ ├── TemplateQueryWhereTokenTest.java
│ │ │ └── UserQueryBeanTest.java
│ │ │ ├── report
│ │ │ └── businessservice
│ │ │ │ ├── ReportServiceBeanTest.java
│ │ │ │ └── ReportServiceBeanTest3.java
│ │ │ ├── test
│ │ │ ├── CommonTestSuite.java
│ │ │ └── TestUtilities.java
│ │ │ ├── user
│ │ │ └── UserCRUDBeanTest.java
│ │ │ └── util
│ │ │ └── BusinessObjectHelperTest.java
│ │ └── log4j.xml
├── los.mobile-ejb
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java
│ │ └── de
│ │ │ └── linogistix
│ │ │ └── mobileserver
│ │ │ ├── module
│ │ │ ├── MobileRuntimeService.java
│ │ │ └── MobileSetupService.java
│ │ │ ├── processes
│ │ │ ├── controller
│ │ │ │ ├── ControllerFacade.java
│ │ │ │ ├── ControllerFacadeBean.java
│ │ │ │ ├── ManageMobile.java
│ │ │ │ ├── ManageMobileBean.java
│ │ │ │ └── MobileFunction.java
│ │ │ ├── info
│ │ │ │ ├── InfoFacade.java
│ │ │ │ ├── InfoFacadeBean.java
│ │ │ │ ├── InfoItemDataTO.java
│ │ │ │ ├── InfoLocationTO.java
│ │ │ │ ├── InfoOrderTO.java
│ │ │ │ ├── InfoStockUnitTO.java
│ │ │ │ └── InfoUnitLoadTO.java
│ │ │ ├── picking
│ │ │ │ ├── PickingMobileComparator.java
│ │ │ │ ├── PickingMobileFacade.java
│ │ │ │ ├── PickingMobileFacadeBean.java
│ │ │ │ ├── PickingMobileOrder.java
│ │ │ │ ├── PickingMobilePos.java
│ │ │ │ └── PickingMobileUnitLoad.java
│ │ │ └── replenish
│ │ │ │ ├── ReplenishMobileFacade.java
│ │ │ │ ├── ReplenishMobileFacadeBean.java
│ │ │ │ └── ReplenishMobileOrder.java
│ │ │ ├── res
│ │ │ └── MobileBundleResolver.java
│ │ │ └── util
│ │ │ └── MobileProperties.java
│ │ ├── resources-filtered
│ │ └── de
│ │ │ └── linogistix
│ │ │ └── mobileserver
│ │ │ └── res
│ │ │ └── VersionBundle.properties
│ │ └── resources
│ │ ├── META-INF
│ │ ├── beans.xml
│ │ └── jboss-ejb3.xml
│ │ ├── de
│ │ └── linogistix
│ │ │ └── mobileserver
│ │ │ ├── processes
│ │ │ ├── picking
│ │ │ │ ├── Bundle.properties
│ │ │ │ ├── Bundle_de.properties
│ │ │ │ ├── Bundle_en.properties
│ │ │ │ └── Bundle_es.properties
│ │ │ └── replenish
│ │ │ │ ├── Bundle.properties
│ │ │ │ ├── Bundle_de.properties
│ │ │ │ ├── Bundle_en.properties
│ │ │ │ └── Bundle_es.properties
│ │ │ └── res
│ │ │ └── MobileBundle.properties
│ │ └── translation
│ │ ├── Bundle.properties
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ └── Bundle_es.properties
├── los.mobile-web
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java
│ │ └── de
│ │ │ └── linogistix
│ │ │ └── mobile
│ │ │ ├── common
│ │ │ ├── filter
│ │ │ │ └── SessionExpiredFilter.java
│ │ │ ├── gui
│ │ │ │ ├── bean
│ │ │ │ │ ├── BasicBackingBean.java
│ │ │ │ │ ├── BasicDialogBean.java
│ │ │ │ │ ├── NotifyDescriptorExt.java
│ │ │ │ │ └── NotifyDescriptorExtBean.java
│ │ │ │ └── jsp
│ │ │ │ │ ├── JSPLoginBean.java
│ │ │ │ │ └── JSPLogoutBean.java
│ │ │ ├── listener
│ │ │ │ ├── ButtonListener.java
│ │ │ │ └── SessionPhaseListener.java
│ │ │ ├── object
│ │ │ │ └── Constants.java
│ │ │ └── system
│ │ │ │ └── JSFHelper.java
│ │ │ ├── processes
│ │ │ ├── controller
│ │ │ │ └── MenuBean.java
│ │ │ ├── goodsreceipt
│ │ │ │ ├── GoodsReceiptBean.java
│ │ │ │ └── GoodsReceiptNavigationEnum.java
│ │ │ ├── gr_direct
│ │ │ │ ├── GRDirectBean.java
│ │ │ │ └── GRDirectNavigationEnum.java
│ │ │ ├── info
│ │ │ │ ├── InfoBean.java
│ │ │ │ └── InfoNavigation.java
│ │ │ ├── login
│ │ │ │ ├── NavigationEnum.java
│ │ │ │ └── gui
│ │ │ │ │ └── bean
│ │ │ │ │ └── CenterBean.java
│ │ │ ├── picking
│ │ │ │ ├── PickingMobileBean.java
│ │ │ │ ├── PickingMobileData.java
│ │ │ │ └── PickingMobileNavigation.java
│ │ │ ├── replenish
│ │ │ │ ├── ReplenishMobileBean.java
│ │ │ │ └── ReplenishNavigation.java
│ │ │ ├── shipping
│ │ │ │ ├── ShippingBean.java
│ │ │ │ └── ShippingNavigation.java
│ │ │ ├── stocktaking
│ │ │ │ ├── StockTakingBean.java
│ │ │ │ └── StockTakingNavigation.java
│ │ │ └── storage
│ │ │ │ ├── NavigationEnum.java
│ │ │ │ ├── StorageBackingBean.java
│ │ │ │ ├── scan_destination
│ │ │ │ └── gui
│ │ │ │ │ └── bean
│ │ │ │ │ └── CenterBean.java
│ │ │ │ ├── scan_stockunit
│ │ │ │ ├── NavigationEnum.java
│ │ │ │ └── gui
│ │ │ │ │ └── bean
│ │ │ │ │ ├── CenterBean.java
│ │ │ │ │ └── TableBean.java
│ │ │ │ └── scan_unitload
│ │ │ │ ├── NavigationEnum.java
│ │ │ │ └── gui
│ │ │ │ └── bean
│ │ │ │ └── CenterBean.java
│ │ │ └── res
│ │ │ └── BundleResolver.java
│ │ ├── resources
│ │ └── de
│ │ │ └── linogistix
│ │ │ └── mobile
│ │ │ ├── processes
│ │ │ ├── gr_direct
│ │ │ │ ├── GRDirectBundle.properties
│ │ │ │ ├── GRDirectBundle_de.properties
│ │ │ │ ├── GRDirectBundle_en.properties
│ │ │ │ └── GRDirectBundle_hu.properties
│ │ │ ├── info
│ │ │ │ ├── InfoBundle.properties
│ │ │ │ ├── InfoBundle_de.properties
│ │ │ │ ├── InfoBundle_en.properties
│ │ │ │ ├── InfoBundle_fr.properties
│ │ │ │ ├── InfoBundle_hu.properties
│ │ │ │ └── InfoBundle_ru.properties
│ │ │ ├── picking
│ │ │ │ ├── PickingMobileBundle.properties
│ │ │ │ ├── PickingMobileBundle_de.properties
│ │ │ │ └── PickingMobileBundle_en.properties
│ │ │ ├── replenish
│ │ │ │ ├── ReplenishBundle.properties
│ │ │ │ ├── ReplenishBundle_de.properties
│ │ │ │ ├── ReplenishBundle_en.properties
│ │ │ │ └── ReplenishBundle_fr.properties
│ │ │ ├── shipping
│ │ │ │ ├── ShippingBundle.properties
│ │ │ │ ├── ShippingBundle_de.properties
│ │ │ │ ├── ShippingBundle_en.properties
│ │ │ │ ├── ShippingBundle_fr.properties
│ │ │ │ ├── ShippingBundle_hu.properties
│ │ │ │ └── ShippingBundle_ru.properties
│ │ │ └── stocktaking
│ │ │ │ ├── StockTakingBundle.properties
│ │ │ │ ├── StockTakingBundle_de.properties
│ │ │ │ ├── StockTakingBundle_en.properties
│ │ │ │ ├── StockTakingBundle_fr.properties
│ │ │ │ ├── StockTakingBundle_hu.properties
│ │ │ │ └── StockTakingBundle_ru.properties
│ │ │ └── res
│ │ │ ├── Bundle.properties
│ │ │ ├── Bundle_de.properties
│ │ │ ├── Bundle_en.properties
│ │ │ ├── Bundle_es.properties
│ │ │ ├── Bundle_fr.properties
│ │ │ ├── Bundle_hu.properties
│ │ │ ├── Bundle_ru.properties
│ │ │ └── pics
│ │ │ └── warning.png
│ │ └── webapp
│ │ ├── META-INF
│ │ ├── MANIFEST.MF
│ │ └── appserver.properties
│ │ ├── WEB-INF
│ │ ├── faces-config.xml
│ │ ├── jboss-web.xml
│ │ ├── sun-web.xml
│ │ └── web.xml
│ │ ├── error.jsp
│ │ ├── index.jsp
│ │ ├── login.jsp
│ │ ├── login_redirect.jsp
│ │ ├── logout.jsp
│ │ ├── pages
│ │ ├── common
│ │ │ └── gui
│ │ │ │ └── component
│ │ │ │ ├── NotifyDescriptorExtPanel.jsp
│ │ │ │ ├── NotifyDescriptorPanel.jsp
│ │ │ │ ├── cancelOrderDialog.jsp
│ │ │ │ ├── differenceAmountDialog.jsp
│ │ │ │ └── successOrderDialog.jsp
│ │ ├── processes
│ │ │ ├── controller
│ │ │ │ └── MainMenu.jsp
│ │ │ ├── goodsreceipt
│ │ │ │ ├── ChooseAdvice.jsp
│ │ │ │ ├── ChooseGoodsReceipt.jsp
│ │ │ │ ├── CollectStockData.jsp
│ │ │ │ ├── ConfirmNewLot.jsp
│ │ │ │ ├── GoodsReceiptSummary.jsp
│ │ │ │ ├── ProcessStock.jsp
│ │ │ │ └── ProcessUnitLoad.jsp
│ │ │ ├── gr_direct
│ │ │ │ ├── ChooseOrder.jsp
│ │ │ │ ├── ChoosePos.jsp
│ │ │ │ ├── ConfirmAmount.jsp
│ │ │ │ ├── EnterAmount.jsp
│ │ │ │ ├── EnterLot.jsp
│ │ │ │ ├── EnterLotDate.jsp
│ │ │ │ ├── EnterMat.jsp
│ │ │ │ ├── EnterSerial.jsp
│ │ │ │ ├── EnterTargetLoc.jsp
│ │ │ │ ├── EnterTargetUl.jsp
│ │ │ │ ├── EnterUlNo.jsp
│ │ │ │ └── EnterUlType.jsp
│ │ │ ├── info
│ │ │ │ ├── EnterCode.jsp
│ │ │ │ ├── SelectType.jsp
│ │ │ │ ├── ShowItemData.jsp
│ │ │ │ ├── ShowItemDataDescr.jsp
│ │ │ │ ├── ShowLocation.jsp
│ │ │ │ ├── ShowOrder.jsp
│ │ │ │ ├── ShowStockUnit.jsp
│ │ │ │ ├── ShowUnitLoad.jsp
│ │ │ │ └── ShowUnitLoadStock.jsp
│ │ │ ├── login
│ │ │ │ ├── logout_redirect.jsp
│ │ │ │ └── session_refresh.jsp
│ │ │ ├── picking
│ │ │ │ ├── OrderDone.jsp
│ │ │ │ ├── OrderInfo.jsp
│ │ │ │ ├── OrderSelect.jsp
│ │ │ │ ├── OrderSummary.jsp
│ │ │ │ ├── Pick.jsp
│ │ │ │ ├── PickComplete.jsp
│ │ │ │ ├── PickCompleteTarget.jsp
│ │ │ │ ├── PickDone.jsp
│ │ │ │ ├── PickEmpty.jsp
│ │ │ │ ├── PickFrom.jsp
│ │ │ │ ├── PickFromFunction.jsp
│ │ │ │ ├── PickFunction.jsp
│ │ │ │ ├── PickMissing.jsp
│ │ │ │ ├── PickRemaining.jsp
│ │ │ │ ├── PickSerial.jsp
│ │ │ │ ├── PickToCompleted.jsp
│ │ │ │ ├── PickToLabelPostpick.jsp
│ │ │ │ ├── PickToPrint.jsp
│ │ │ │ ├── PickToTarget.jsp
│ │ │ │ └── StartPicking.jsp
│ │ │ ├── replenish
│ │ │ │ ├── DestinationConfirm.jsp
│ │ │ │ ├── DestinationLocation.jsp
│ │ │ │ ├── OrderCanceled.jsp
│ │ │ │ ├── OrderDone.jsp
│ │ │ │ ├── OrderSelect.jsp
│ │ │ │ ├── ReplenishMenu.jsp
│ │ │ │ ├── RequestAmount.jsp
│ │ │ │ ├── RequestInfo.jsp
│ │ │ │ ├── RequestLocation.jsp
│ │ │ │ ├── SourceAmount.jsp
│ │ │ │ ├── SourceConfirm.jsp
│ │ │ │ ├── SourceLocation.jsp
│ │ │ │ ├── StartProcess.jsp
│ │ │ │ └── StartRequest.jsp
│ │ │ ├── shipping
│ │ │ │ ├── ScanDestination.jsp
│ │ │ │ ├── ScanUnitLoad.jsp
│ │ │ │ ├── SelectOrder.jsp
│ │ │ │ ├── ShowInfo.jsp
│ │ │ │ └── ShowSummary.jsp
│ │ │ ├── stocktaking
│ │ │ │ ├── ConfirmLocationEmpty.jsp
│ │ │ │ ├── ConfirmStockMissing.jsp
│ │ │ │ ├── ConfirmUnexpectedUnitLoad.jsp
│ │ │ │ ├── ConfirmUnitLoadMissing.jsp
│ │ │ │ ├── CountStock.jsp
│ │ │ │ ├── EnterClient.jsp
│ │ │ │ ├── NewItemData.jsp
│ │ │ │ ├── NewLot.jsp
│ │ │ │ ├── NewSerial.jsp
│ │ │ │ ├── NewUnitloadType.jsp
│ │ │ │ ├── ScanStorageLocation.jsp
│ │ │ │ └── ScanUnitLoad.jsp
│ │ │ └── storage
│ │ │ │ ├── scan_destination
│ │ │ │ └── gui
│ │ │ │ │ └── component
│ │ │ │ │ └── CenterPanel.jsp
│ │ │ │ ├── scan_stockunit
│ │ │ │ └── gui
│ │ │ │ │ └── component
│ │ │ │ │ └── CenterPanel.jsp
│ │ │ │ └── scan_unitload
│ │ │ │ └── gui
│ │ │ │ └── component
│ │ │ │ └── CenterPanel.jsp
│ │ └── stylesheet.css
│ │ ├── pics
│ │ ├── error.gif
│ │ ├── help.gif
│ │ ├── information.gif
│ │ ├── logo.gif
│ │ ├── question.gif
│ │ └── warning.gif
│ │ └── sessiontimeout.jsp
├── los.ws-ejb
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── de
│ │ │ │ └── linogistix
│ │ │ │ └── los
│ │ │ │ └── inventory
│ │ │ │ └── ws
│ │ │ │ ├── ManageInventory.java
│ │ │ │ ├── ManageInventoryBean.java
│ │ │ │ ├── Order.java
│ │ │ │ ├── OrderBean.java
│ │ │ │ ├── QueryInventory.java
│ │ │ │ ├── QueryInventoryBean.java
│ │ │ │ └── manage_itemdata
│ │ │ │ ├── ClientNumberElement.java
│ │ │ │ ├── DeleteItemDataRequest.java
│ │ │ │ ├── ManageItemDataErrorCodes.java
│ │ │ │ ├── ManageItemDataWS.java
│ │ │ │ ├── ManageItemDataWSBean.java
│ │ │ │ ├── ManageItemDataWSFault.java
│ │ │ │ ├── UpdateBomRequest.java
│ │ │ │ └── UpdateItemDataRequest.java
│ │ └── resources
│ │ │ └── META-INF
│ │ │ ├── beans.xml
│ │ │ └── jboss-ejb3.xml
│ │ └── test
│ │ └── java
│ │ └── de
│ │ └── linogistix
│ │ └── los
│ │ └── inventory
│ │ └── ws
│ │ ├── QueryInventoryBeanTest.java
│ │ └── jaxwsgen
│ │ ├── InventoryException.java
│ │ ├── InventoryExceptionKey.java
│ │ ├── InventoryException_Exception.java
│ │ ├── InventoryTO.java
│ │ ├── InventoryTOArray.java
│ │ ├── ObjectFactory.java
│ │ ├── QueryInventory.java
│ │ ├── QueryInventoryBeanService.java
│ │ └── queryinventory.wsdl
├── mywms.as-ejb
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ ├── java
│ │ └── org
│ │ │ └── mywms
│ │ │ ├── ejb
│ │ │ ├── BeanLocator.java
│ │ │ └── BeanLocatorException.java
│ │ │ ├── facade
│ │ │ ├── Authentication.java
│ │ │ ├── AuthenticationBean.java
│ │ │ ├── AuthenticationInfoTO.java
│ │ │ └── FacadeException.java
│ │ │ ├── globals
│ │ │ ├── Role.java
│ │ │ ├── SerialNoRecordType.java
│ │ │ └── ServiceExceptionKey.java
│ │ │ ├── model
│ │ │ ├── BasicClientAssignedEntity.java
│ │ │ ├── BasicEntity.java
│ │ │ ├── Client.java
│ │ │ ├── ItemUnitType.java
│ │ │ ├── Role.java
│ │ │ └── User.java
│ │ │ ├── res
│ │ │ └── BundleResolver.java
│ │ │ ├── service
│ │ │ ├── BasicService.java
│ │ │ ├── BasicServiceBean.java
│ │ │ ├── ClientService.java
│ │ │ ├── ClientServiceBean.java
│ │ │ ├── ConstraintViolatedException.java
│ │ │ ├── EntityNotFoundException.java
│ │ │ ├── RoleService.java
│ │ │ ├── RoleServiceBean.java
│ │ │ ├── ServiceException.java
│ │ │ ├── StockUnitInfoTO.java
│ │ │ ├── UniqueConstraintViolatedException.java
│ │ │ ├── UserService.java
│ │ │ └── UserServiceBean.java
│ │ │ └── util
│ │ │ └── BundleHelper.java
│ │ └── resources
│ │ ├── META-INF
│ │ ├── beans.xml
│ │ └── jboss-ejb3.xml
│ │ └── org
│ │ └── mywms
│ │ └── res
│ │ ├── ServiceExceptionKeyBundle.properties
│ │ ├── ServiceExceptionKeyBundle_de.properties
│ │ ├── ServiceExceptionKeyBundle_hu.properties
│ │ ├── ServiceExceptionKeyBundle_ru.properties
│ │ └── mywms-messages.properties
├── pom.xml
├── project-ear
│ └── pom.xml
├── project-ejb
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ ├── java
│ │ │ └── de
│ │ │ │ ├── linogistix
│ │ │ │ └── los
│ │ │ │ │ └── reference
│ │ │ │ │ ├── customization
│ │ │ │ │ ├── inventory
│ │ │ │ │ │ ├── Ref_DataServiceDispatcherBean.java
│ │ │ │ │ │ ├── Ref_ManageItemDataServiceBean.java
│ │ │ │ │ │ ├── Ref_ManageOrderServiceBean.java
│ │ │ │ │ │ └── Ref_ManageUnitLoadAdviceServiceBean.java
│ │ │ │ │ ├── location
│ │ │ │ │ │ └── Ref_LocationServiceBean.java
│ │ │ │ │ ├── mobile
│ │ │ │ │ │ └── Ref_ManageMobileBean.java
│ │ │ │ │ └── stocktaking
│ │ │ │ │ │ └── Ref_ManageStocktakingServiceBean.java
│ │ │ │ │ ├── facade
│ │ │ │ │ ├── RefTopologyFacade.java
│ │ │ │ │ └── RefTopologyFacadeBean.java
│ │ │ │ │ └── model
│ │ │ │ │ └── ProjectPropertyKey.java
│ │ │ │ └── wms2
│ │ │ │ └── mywms
│ │ │ │ └── project
│ │ │ │ ├── DeliveryEventObserver.java
│ │ │ │ ├── EntityGeneratorBean.java
│ │ │ │ ├── VersionFacadeBean.java
│ │ │ │ └── module
│ │ │ │ ├── ProjectRuntimeService.java
│ │ │ │ └── ProjectSetupService.java
│ │ ├── resources-filtered
│ │ │ └── translation
│ │ │ │ └── VersionBundle.properties
│ │ └── resources
│ │ │ └── META-INF
│ │ │ ├── beans.xml
│ │ │ └── jboss-ejb3.xml
│ │ └── test
│ │ └── java
│ │ └── de
│ │ └── linogistix
│ │ └── los
│ │ └── reference
│ │ └── CreateRefTopology.java
├── project-persistence
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── META-INF
│ │ └── persistence.xml
└── wms2-ejb
│ ├── pom.xml
│ └── src
│ └── main
│ ├── java
│ └── de
│ │ └── wms2
│ │ └── mywms
│ │ ├── address
│ │ ├── Address.java
│ │ └── AddressEntityService.java
│ │ ├── advice
│ │ ├── Advice.java
│ │ ├── AdviceBusiness.java
│ │ ├── AdviceEntityService.java
│ │ ├── AdviceEventObserver.java
│ │ ├── AdviceLine.java
│ │ ├── AdviceLineAssignEvent.java
│ │ ├── AdviceLineEntityService.java
│ │ ├── AdviceLineStateChangeEvent.java
│ │ ├── AdviceLineValidator.java
│ │ ├── AdviceStateChangeEvent.java
│ │ └── AdviceValidator.java
│ │ ├── client
│ │ ├── ClientBusiness.java
│ │ ├── ClientState.java
│ │ └── ClientValidator.java
│ │ ├── delivery
│ │ ├── DeliveryBusiness.java
│ │ ├── DeliveryOrder.java
│ │ ├── DeliveryOrderEntityService.java
│ │ ├── DeliveryOrderLine.java
│ │ ├── DeliveryOrderLineEntityService.java
│ │ ├── DeliveryOrderLineStateChangeEvent.java
│ │ ├── DeliveryOrderStateChangeEvent.java
│ │ ├── DeliveryOrderValidator.java
│ │ ├── DeliveryReportDto.java
│ │ └── DeliveryReportGenerator.java
│ │ ├── document
│ │ ├── Document.java
│ │ ├── DocumentBusiness.java
│ │ ├── DocumentEntityService.java
│ │ ├── DocumentType.java
│ │ └── DocumentValidator.java
│ │ ├── entity
│ │ ├── EntityValidator.java
│ │ ├── GenericEntityService.java
│ │ └── PersistenceManager.java
│ │ ├── exception
│ │ ├── BusinessException.java
│ │ └── WrappedFacadeException.java
│ │ ├── goodsreceipt
│ │ ├── GoodsReceipt.java
│ │ ├── GoodsReceiptBusiness.java
│ │ ├── GoodsReceiptEntityService.java
│ │ ├── GoodsReceiptLine.java
│ │ ├── GoodsReceiptLineCollectEvent.java
│ │ ├── GoodsReceiptLineDeletedEvent.java
│ │ ├── GoodsReceiptLineEntityService.java
│ │ ├── GoodsReceiptStateChangeEvent.java
│ │ ├── GoodsReceiptType.java
│ │ └── GoodsReceiptValidator.java
│ │ ├── inventory
│ │ ├── InventoryBusiness.java
│ │ ├── InventoryEventObserver.java
│ │ ├── InventoryJournal.java
│ │ ├── InventoryJournalRecordType.java
│ │ ├── JournalHandler.java
│ │ ├── LockChangeEvent.java
│ │ ├── LockType.java
│ │ ├── StockState.java
│ │ ├── StockUnit.java
│ │ ├── StockUnitChangeAmountEvent.java
│ │ ├── StockUnitEntityService.java
│ │ ├── StockUnitReportDto.java
│ │ ├── StockUnitReportGenerator.java
│ │ ├── StockUnitStateChangeEvent.java
│ │ ├── StockUnitTrashEvent.java
│ │ ├── StockUnitValidator.java
│ │ ├── TrashHandler.java
│ │ ├── UnitLoad.java
│ │ ├── UnitLoadEntityService.java
│ │ ├── UnitLoadTransferCarrierEvent.java
│ │ ├── UnitLoadTransferLocationEvent.java
│ │ ├── UnitLoadTrashEvent.java
│ │ ├── UnitLoadType.java
│ │ ├── UnitLoadTypeEntityService.java
│ │ ├── UnitLoadTypeUsages.java
│ │ ├── UnitLoadTypeValidator.java
│ │ └── UnitLoadValidator.java
│ │ ├── location
│ │ ├── Area.java
│ │ ├── AreaEntityService.java
│ │ ├── AreaUsages.java
│ │ ├── AreaValidator.java
│ │ ├── LocationCluster.java
│ │ ├── LocationClusterEntityService.java
│ │ ├── LocationClusterValidator.java
│ │ ├── LocationType.java
│ │ ├── LocationTypeEntityService.java
│ │ ├── LocationTypeValidator.java
│ │ ├── StorageLocation.java
│ │ ├── StorageLocationEntityService.java
│ │ └── StorageLocationValidator.java
│ │ ├── module
│ │ ├── DemoDataGenerator.java
│ │ ├── ModuleRuntime.java
│ │ ├── ModuleRuntimeBusiness.java
│ │ ├── ModuleSetup.java
│ │ ├── Wms2RuntimeService.java
│ │ └── Wms2SetupService.java
│ │ ├── picking
│ │ ├── ExtinguishOrderGenerator.java
│ │ ├── Optimizer.java
│ │ ├── Packet.java
│ │ ├── PacketEntityService.java
│ │ ├── PacketStateChangeEvent.java
│ │ ├── PacketValidator.java
│ │ ├── PickingBusiness.java
│ │ ├── PickingOrder.java
│ │ ├── PickingOrderEntityService.java
│ │ ├── PickingOrderGenerator.java
│ │ ├── PickingOrderLine.java
│ │ ├── PickingOrderLineEntityService.java
│ │ ├── PickingOrderLineGenerator.java
│ │ ├── PickingOrderLineStateChangeEvent.java
│ │ ├── PickingOrderPrepareEvent.java
│ │ ├── PickingOrderPrioChangeEvent.java
│ │ ├── PickingOrderStateChangeEvent.java
│ │ ├── PickingStockFinder.java
│ │ └── PickingType.java
│ │ ├── product
│ │ ├── ItemData.java
│ │ ├── ItemDataEntityService.java
│ │ ├── ItemDataNumber.java
│ │ ├── ItemDataNumberEntityService.java
│ │ ├── ItemDataNumberValidator.java
│ │ ├── ItemDataState.java
│ │ ├── ItemDataValidator.java
│ │ ├── ItemUnit.java
│ │ ├── ItemUnitEntityService.java
│ │ ├── ItemUnitValidator.java
│ │ ├── PackagingUnit.java
│ │ ├── PackagingUnitEntityService.java
│ │ └── PackagingUnitValidator.java
│ │ ├── property
│ │ ├── SystemProperty.java
│ │ ├── SystemPropertyBusiness.java
│ │ └── SystemPropertyValidator.java
│ │ ├── replenish
│ │ ├── ReplenishBusiness.java
│ │ ├── ReplenishEventObserver.java
│ │ ├── ReplenishOrder.java
│ │ ├── ReplenishOrderEntityService.java
│ │ ├── ReplenishOrderStateChangeEvent.java
│ │ └── ReplenishOrderValidator.java
│ │ ├── report
│ │ ├── Report.java
│ │ ├── ReportBusiness.java
│ │ ├── ReportEntityService.java
│ │ └── ReportValidator.java
│ │ ├── sequence
│ │ ├── CheckDigitService.java
│ │ ├── SequenceBusiness.java
│ │ ├── SequenceNumber.java
│ │ └── SequenceTransactionService.java
│ │ ├── shipping
│ │ ├── ShippingBusiness.java
│ │ ├── ShippingOrder.java
│ │ ├── ShippingOrderEntityService.java
│ │ ├── ShippingOrderLine.java
│ │ ├── ShippingOrderLineEntityService.java
│ │ ├── ShippingOrderLineStateChangeEvent.java
│ │ └── ShippingOrderStateChangeEvent.java
│ │ ├── strategy
│ │ ├── FixAssignment.java
│ │ ├── FixAssignmentEntityService.java
│ │ ├── FixAssignmentValidator.java
│ │ ├── ItemDataArea.java
│ │ ├── ItemDataAreaValidator.java
│ │ ├── LocationFinder.java
│ │ ├── LocationFinderBean.java
│ │ ├── LocationReservation.java
│ │ ├── LocationReservationEntityService.java
│ │ ├── LocationReserver.java
│ │ ├── OrderPrio.java
│ │ ├── OrderState.java
│ │ ├── OrderStateCalculator.java
│ │ ├── OrderStrategy.java
│ │ ├── OrderStrategyCompleteHandling.java
│ │ ├── OrderStrategyEntityService.java
│ │ ├── OrderStrategyValidator.java
│ │ ├── StorageArea.java
│ │ ├── StorageAreaEntityService.java
│ │ ├── StorageStrategy.java
│ │ ├── StorageStrategyArea.java
│ │ ├── StorageStrategyEntityService.java
│ │ ├── StorageStrategyRichClientConverter.java
│ │ ├── StorageStrategySortType.java
│ │ ├── StorageStrategyValidator.java
│ │ ├── TypeCapacityConstraint.java
│ │ ├── TypeCapacityEntityService.java
│ │ ├── TypeCapacityValidator.java
│ │ ├── Zone.java
│ │ ├── ZoneEntityService.java
│ │ └── ZoneValidator.java
│ │ ├── transport
│ │ ├── TransportBusiness.java
│ │ ├── TransportEventObserver.java
│ │ ├── TransportOrder.java
│ │ ├── TransportOrderEntityService.java
│ │ ├── TransportOrderPartialProcessEvent.java
│ │ ├── TransportOrderStateChangeEvent.java
│ │ └── TransportOrderType.java
│ │ ├── user
│ │ ├── PasswordValidator.java
│ │ ├── PatternPasswordValidator.java
│ │ ├── RoleValidator.java
│ │ ├── UserBusiness.java
│ │ ├── UserEntityService.java
│ │ ├── UserLoginEvent.java
│ │ ├── UserLogoutEvent.java
│ │ └── UserValidator.java
│ │ └── util
│ │ ├── DocumentUtils.java
│ │ ├── ImageUtils.java
│ │ ├── ListUtils.java
│ │ ├── NumberUtils.java
│ │ ├── Translator.java
│ │ ├── Wms2BundleResolver.java
│ │ ├── Wms2Constants.java
│ │ └── Wms2Properties.java
│ └── resources
│ ├── META-INF
│ ├── beans.xml
│ └── jboss-ejb3.xml
│ ├── reports
│ ├── Contentlist.jrxml
│ ├── DeliveryPacketlist.jrxml
│ ├── Deliverynote.jrxml
│ ├── PickingPacketlist.jrxml
│ ├── ShippingPacketlist.jrxml
│ ├── StockUnitLabel.jrxml
│ └── default-image.png
│ └── translation
│ ├── Bundle.properties
│ └── Bundle_de.properties
├── doc
├── GettingStarted.pdf
├── LOSRollen.pdf
├── artikel_de.xml
├── lagerplatz_de.xml
├── los-doku-webservices_en.pdf
├── myWMS-GUI_de.pdf
├── myWMS-GUI_en.pdf
├── myWMS-GoodsIn_de.pdf
├── myWMS-GoodsIn_en.pdf
├── myWMS-GoodsOut_de.pdf
├── myWMS-GoodsOut_en.pdf
├── myWMS-Internal_de.pdf
├── myWMS-Internal_en.pdf
├── myWMS-Inventory_de.pdf
├── myWMS-Inventory_en.pdf
├── myWMS-Journal_de.pdf
├── myWMS-Journal_en.pdf
├── myWMS-Masterdata_de.pdf
└── myWMS-Masterdata_en.pdf
└── rich.client
├── los.clientsuite
├── Apache Library
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ ├── release
│ │ └── modules
│ │ │ └── ext
│ │ │ ├── apache-LICENSE.txt
│ │ │ ├── commons-digester-1.8.jar
│ │ │ ├── commons-lang3.jar
│ │ │ └── log4j.jar
│ └── src
│ │ └── org
│ │ └── apache
│ │ └── commons
│ │ └── logging
│ │ └── Bundle.properties
├── JAXB Library
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ ├── release
│ │ └── modules
│ │ │ └── ext
│ │ │ ├── JBossORG-Copyright.txt
│ │ │ ├── JBossORG-EULA.txt
│ │ │ ├── activation.jar
│ │ │ ├── jaxb-LICENSE.txt
│ │ │ ├── jaxb-api.jar
│ │ │ ├── jaxb-impl.jar
│ │ │ ├── jaxb-jing-copying.html
│ │ │ ├── jaxb-xjc.jar
│ │ │ ├── stax-api.jar
│ │ │ ├── wstx-LGPL2.1
│ │ │ ├── wstx-LICENSE
│ │ │ └── wstx.jar
│ └── src
│ │ └── javax
│ │ └── jaxb
│ │ └── Bundle.properties
├── JBoss EJB3 Library
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ ├── release
│ │ └── modules
│ │ │ └── ext
│ │ │ ├── JBossORG-Copyright.txt
│ │ │ ├── JBossORG-EULA.txt
│ │ │ ├── byte-buddy-1.9.5.jar
│ │ │ ├── hibernate-core-5.3.12.Final.jar
│ │ │ ├── javax.persistence-api-2.2.jar
│ │ │ └── jboss-client.jar
│ └── src
│ │ └── org
│ │ └── jboss
│ │ └── Bundle.properties
├── LOS Common
│ ├── TempWmicBatchFile.bat
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ ├── META-INF
│ │ └── services
│ │ │ ├── de.linogistix.common.bobrowser.api.BOLookup
│ │ │ ├── de.linogistix.common.bobrowser.api.BOQueryTopComponentLookup
│ │ │ ├── de.linogistix.common.services.J2EEServiceLocator
│ │ │ ├── de.linogistix.common.userlogin.LoginService
│ │ │ ├── de.linogistix.common.util.StatusLineServer
│ │ │ ├── org.netbeans.spi.sendopts.OptionProcessor
│ │ │ ├── org.openide.ErrorManager_disable
│ │ │ ├── org.openide.awt.StatusLineElementProvider
│ │ │ └── org.openide.filesystems.FileSystem
│ │ └── de
│ │ └── linogistix
│ │ └── common
│ │ ├── Installer.java
│ │ ├── action
│ │ ├── OnlineHelpAction.java
│ │ └── OpenDocumentTask.java
│ │ ├── bobrowser
│ │ ├── action
│ │ │ ├── BOCopyToClipBoardAction.java
│ │ │ ├── BODocumentOpenAction.java
│ │ │ ├── BOJasperReportCompileAction.java
│ │ │ ├── BOJasperReportLoadSourceAction.java
│ │ │ ├── BOJasperReportSaveSourceAction.java
│ │ │ ├── BOLockAction.java
│ │ │ ├── BOMasterNodeServiceAction.java
│ │ │ ├── BOServiceAction.java
│ │ │ ├── OpenDocumentAction.java
│ │ │ └── RefreshBOBeanNodeAction.java
│ │ ├── api
│ │ │ ├── BOBrowserAPI.java
│ │ │ ├── BOLookup.java
│ │ │ └── BOQueryTopComponentLookup.java
│ │ ├── bo
│ │ │ ├── BO.java
│ │ │ ├── BOBasicEntityNode.java
│ │ │ ├── BOBeanNode.java
│ │ │ ├── BOClient.java
│ │ │ ├── BODTONode.java
│ │ │ ├── BOEntityNode.java
│ │ │ ├── BOEntityNodeReadOnly.java
│ │ │ ├── BOEntityQueryNode.java
│ │ │ ├── BOJasperReport.java
│ │ │ ├── BOLOSSystemProperty.java
│ │ │ ├── BOLookupImpl.java
│ │ │ ├── BOMasterNode.java
│ │ │ ├── BONode.java
│ │ │ ├── BORole.java
│ │ │ ├── BOSequenceNumber.java
│ │ │ ├── BOSequenceNumberMasterNode.java
│ │ │ ├── BOUser.java
│ │ │ ├── JasperExporterNode.java
│ │ │ ├── binding
│ │ │ │ ├── BOBeanNodeDescriptor.java
│ │ │ │ ├── BasicEntityDescriptor.xml
│ │ │ │ ├── DescriptionTree.java
│ │ │ │ ├── DescriptorBinder.java
│ │ │ │ ├── PropertyDescriptorElement.java
│ │ │ │ ├── PropertyGroupElement.java
│ │ │ │ ├── l8x-bobeandescriptor-ns.xsd
│ │ │ │ ├── l8x-bobeandescriptor.xsd
│ │ │ │ └── schema1.xsd
│ │ │ ├── detailview
│ │ │ │ ├── AbstractDetailViewPanel.java
│ │ │ │ ├── BOAdminDetailViewPanel.java
│ │ │ │ ├── BOCommentDetailEditPanel.form
│ │ │ │ ├── BOCommentDetailEditPanel.java
│ │ │ │ ├── BOCommentDetailViewPanel.form
│ │ │ │ ├── BOCommentDetailViewPanel.java
│ │ │ │ └── PropertyDetailViewPanel.java
│ │ │ └── editor
│ │ │ │ ├── BOCollectionEditor.java
│ │ │ │ ├── BOCollectionEditorPanel.form
│ │ │ │ ├── BOCollectionEditorPanel.java
│ │ │ │ ├── BOCollectionEditorReadOnly.java
│ │ │ │ ├── BOCollectionEditorReadOnlyPanel.form
│ │ │ │ ├── BOCollectionEditorReadOnlyPanel.java
│ │ │ │ ├── BOCollectionEditorSelectionListener.java
│ │ │ │ ├── BOCollectionInplaceEditor.java
│ │ │ │ ├── BOCollectionInplaceEditorPanel.form
│ │ │ │ ├── BOCollectionInplaceEditorPanel.java
│ │ │ │ ├── BODTOEditor.java
│ │ │ │ ├── BOEditorButtons.form
│ │ │ │ ├── BOEditorButtons.java
│ │ │ │ ├── BOEditorChoose.java
│ │ │ │ ├── BOEditorChooseFromService.java
│ │ │ │ ├── BOEditorChooseFromServicePanel.java
│ │ │ │ ├── BOEditorChoosePanel.form
│ │ │ │ ├── BOEditorChoosePanel.java
│ │ │ │ ├── BOEditorHeader.form
│ │ │ │ ├── BOEditorHeader.java
│ │ │ │ ├── BOEditorPanel.form
│ │ │ │ ├── BOEditorPanel.java
│ │ │ │ ├── BOEditorPanelReadWrite.form
│ │ │ │ ├── BOEditorPanelReadWrite.java
│ │ │ │ ├── BOEditorReadOnly.java
│ │ │ │ ├── BOEditorReadWrite.java
│ │ │ │ ├── BOEditorTypeChooser.form
│ │ │ │ ├── BOEditorTypeChooser.java
│ │ │ │ ├── BOEditorTypeException.java
│ │ │ │ ├── BOInplaceEditor.java
│ │ │ │ ├── BOInplaceEditorAutoFiltering.java
│ │ │ │ ├── BOInplaceEditorPanel.form
│ │ │ │ ├── BOInplaceEditorPanel.java
│ │ │ │ ├── BOLockEditorI18N.java
│ │ │ │ ├── BOLockEntry.java
│ │ │ │ ├── BOMasterDetailView.form
│ │ │ │ ├── BOMasterDetailView.java
│ │ │ │ ├── BasicEntityPropertyRO.java
│ │ │ │ ├── BasicEntityPropertyRW.java
│ │ │ │ ├── BooleanEditorReadOnly.java
│ │ │ │ ├── ComboPropertyEditor.java
│ │ │ │ ├── EnumPropertyEditorI18N.java
│ │ │ │ ├── NoValueMessage.form
│ │ │ │ ├── NoValueMessage.java
│ │ │ │ ├── PasswordReadOnlyEditor.java
│ │ │ │ ├── PlainObjectReadOnlyEditor.java
│ │ │ │ ├── PropertiesComboBoxModel.java
│ │ │ │ └── PropertyRW.java
│ │ ├── browse
│ │ │ ├── BOBrowserAction.java
│ │ │ ├── BOBrowserNode.java
│ │ │ ├── BOBrowserTopComponent.form
│ │ │ ├── BOBrowserTopComponent.java
│ │ │ ├── BOBrowserTopComponentSettings.xml
│ │ │ ├── BOBrowserTopComponentWstcref.xml
│ │ │ ├── BOConfigureAction.java
│ │ │ ├── ServiceCallerTopComponentSettings.xml
│ │ │ ├── ServiceCallerTopComponentWstcref.xml
│ │ │ ├── bobrowser-helpset.xml
│ │ │ └── bolookup.properties
│ │ ├── crud
│ │ │ ├── BOCreateAction.java
│ │ │ ├── BODeleteAction.java
│ │ │ ├── BOEditAction.java
│ │ │ └── gui
│ │ │ │ ├── component
│ │ │ │ ├── BOAdditionalContentPanel1.java
│ │ │ │ ├── BOAdditionalContentWizard.java
│ │ │ │ ├── BOCreateJPanel1.form
│ │ │ │ ├── BOCreateJPanel1.java
│ │ │ │ ├── BOCreatePanel1.java
│ │ │ │ ├── BOCreateWizard.java
│ │ │ │ ├── BOEditJPanel1.form
│ │ │ │ ├── BOEditJPanel1.java
│ │ │ │ ├── BOEditPanel.java
│ │ │ │ ├── BOEditWizard.java
│ │ │ │ ├── BOLockJPanel1.java
│ │ │ │ ├── BOLockPanel1.java
│ │ │ │ └── BOLockWizard.java
│ │ │ │ ├── gui_builder
│ │ │ │ ├── AbstractBOLockPanel.form
│ │ │ │ └── AbstractBOLockPanel.java
│ │ │ │ └── object
│ │ │ │ ├── BOCreateNode.java
│ │ │ │ └── BOEditNode.java
│ │ ├── masternode
│ │ │ ├── BOLOSJasperReportMasterNode.java
│ │ │ └── BOLOSSystemPropertyMasterNode.java
│ │ ├── query
│ │ │ ├── AbstractWorkerChildren.java
│ │ │ ├── BOQueryByTemplateException.java
│ │ │ ├── BOQueryByTemplateNode.java
│ │ │ ├── BOQueryEntityListModel.java
│ │ │ ├── BOQueryEvent.java
│ │ │ ├── BOQueryEventListener.java
│ │ │ ├── BOQueryMasterDetailController.java
│ │ │ ├── BOQueryMasterDetailView.java
│ │ │ ├── BOQueryModel.java
│ │ │ ├── BOQueryNoResultException.java
│ │ │ ├── BOQueryNode.java
│ │ │ ├── BOQueryPanel.form
│ │ │ ├── BOQueryPanel.java
│ │ │ ├── BOQueryTopComponent.form
│ │ │ ├── BOQueryTopComponent.java
│ │ │ ├── BOQueryTopComponentFactory.java
│ │ │ ├── BOQueryUpdateEvent.java
│ │ │ ├── BOQueryUpdateListener.java
│ │ │ ├── BusinessObjectRemovedException.java
│ │ │ ├── OpenBOQueryTopComponentAction.java
│ │ │ └── gui
│ │ │ │ ├── component
│ │ │ │ ├── AutoCompletionQueryClientFilterProvider.java
│ │ │ │ ├── AutoCompletionQueryFilterProvider.java
│ │ │ │ ├── AutoCompletionQueryProvider.java
│ │ │ │ ├── BOQueryByEditor.java
│ │ │ │ ├── BOQueryByInplaceEditor.java
│ │ │ │ ├── BOQueryByInplacePanel.form
│ │ │ │ ├── BOQueryByInplacePanel.java
│ │ │ │ ├── BOQueryComponentProvider.java
│ │ │ │ ├── BOQueryHeaderPanel.java
│ │ │ │ ├── DefaultBOQueryComponentProvider.java
│ │ │ │ ├── DockingMode.java
│ │ │ │ ├── ProviderChangeEventListener.java
│ │ │ │ ├── QueryByTemplateJPanel1.form
│ │ │ │ ├── QueryByTemplateJPanel1.java
│ │ │ │ ├── QueryByTemplatePanel1.java
│ │ │ │ ├── QueryByTemplateWizard.java
│ │ │ │ ├── QueryCombobox.java
│ │ │ │ ├── SingleResultQueryProvider.java
│ │ │ │ └── TemplateQueryWizardProvider.java
│ │ │ │ ├── gui_builder
│ │ │ │ ├── AbstractBOQueryHeaderPanel.form
│ │ │ │ ├── AbstractBOQueryHeaderPanel.java
│ │ │ │ ├── AbstractBOQueryQuickSearchPanel.form
│ │ │ │ ├── AbstractBOQueryQuickSearchPanel.java
│ │ │ │ ├── BOQueryQuickClientFilterPanel.java
│ │ │ │ └── BOQueryQuickFilterPanel.java
│ │ │ │ └── object
│ │ │ │ ├── BOQueryByTemplateProperty.java
│ │ │ │ ├── BOQueryByTemplateWrapper.java
│ │ │ │ ├── QueryOperator.java
│ │ │ │ ├── QueryOperatorBO.java
│ │ │ │ ├── QueryOperatorBool.java
│ │ │ │ ├── QueryOperatorCollection.java
│ │ │ │ ├── QueryOperatorDate.java
│ │ │ │ ├── QueryOperatorEnum.java
│ │ │ │ ├── QueryOperatorNop.java
│ │ │ │ ├── QueryOperatorNumeric.java
│ │ │ │ └── QueryOperatorString.java
│ │ └── util
│ │ │ └── TypeResolver.java
│ │ ├── common-helpset.xml
│ │ ├── exception
│ │ ├── AuthentificationException.java
│ │ ├── ErrorOccurredException.java
│ │ ├── InternalErrorException.java
│ │ ├── NoViewerException.java
│ │ └── VetoException.java
│ │ ├── gui
│ │ ├── component
│ │ │ ├── controls
│ │ │ │ ├── AutoCompletionComboBox.java
│ │ │ │ ├── AutoFilteringComboBox.java
│ │ │ │ ├── AutoFilteringComboBoxListener.java
│ │ │ │ ├── BOAutoFilteringComboBox.form
│ │ │ │ ├── BOAutoFilteringComboBox.java
│ │ │ │ ├── BOAutoFilteringComboBoxModel.java
│ │ │ │ ├── BOChooser.java
│ │ │ │ ├── BOMultiSelectionChoosePanel.form
│ │ │ │ ├── BOMultiSelectionChoosePanel.java
│ │ │ │ ├── BOMultiSelectionChooser.java
│ │ │ │ ├── ClientComboBoxModel.java
│ │ │ │ ├── DateFormattedTextField.java
│ │ │ │ ├── FlatButton.java
│ │ │ │ ├── IconAutoFilteringComboBox_test.java
│ │ │ │ ├── LOSComboBox.java
│ │ │ │ ├── LOSComponentEvent.java
│ │ │ │ ├── LOSDateFormattedTextField.java
│ │ │ │ ├── LOSDatePickerDialog.java
│ │ │ │ ├── LOSIconButton.java
│ │ │ │ ├── LOSImagePanel.form
│ │ │ │ ├── LOSImagePanel.java
│ │ │ │ ├── LOSImagePreview.java
│ │ │ │ ├── LOSImageSource.java
│ │ │ │ ├── LOSNumericDocument.java
│ │ │ │ ├── LOSNumericDocumentListener.java
│ │ │ │ ├── LOSNumericFormattedTextField.java
│ │ │ │ ├── LOSTextField.java
│ │ │ │ ├── LOSTextFieldListener.java
│ │ │ │ ├── LosLabel.java
│ │ │ │ ├── QueryAutoFilteringComboBox.form
│ │ │ │ ├── QueryAutoFilteringComboBox.java
│ │ │ │ ├── WithoutArrowComboBox.java
│ │ │ │ ├── suggestioncombobox
│ │ │ │ │ ├── CommonObject.java
│ │ │ │ │ ├── SuggestionComboBox.java
│ │ │ │ │ ├── UI.java
│ │ │ │ │ ├── UIComboBoxEditor.java
│ │ │ │ │ ├── UIPanel.java
│ │ │ │ │ ├── UIPopup.java
│ │ │ │ │ └── UITextField.java
│ │ │ │ └── table
│ │ │ │ │ ├── JComboBoxCellRenderer.java
│ │ │ │ │ ├── JTableExt.java
│ │ │ │ │ ├── comboBox
│ │ │ │ │ ├── CanEnable.java
│ │ │ │ │ ├── ComboItem.java
│ │ │ │ │ ├── EachRowEditor.java
│ │ │ │ │ └── JComboBoxExt.java
│ │ │ │ │ ├── multiLineTable
│ │ │ │ │ ├── CalculateWarp.java
│ │ │ │ │ ├── CustomTextField.java
│ │ │ │ │ └── CustomTextFieldRenderer.java
│ │ │ │ │ └── radioButton
│ │ │ │ │ ├── RadioButtonRenderer.java
│ │ │ │ │ ├── RadioButtonTable.java
│ │ │ │ │ └── RadioButtonTableModel.java
│ │ │ ├── gui_builder
│ │ │ │ ├── AbstractBOChooser.form
│ │ │ │ ├── AbstractBOChooser.java
│ │ │ │ ├── AbstractListChooserView.form
│ │ │ │ └── AbstractListChooserView.java
│ │ │ ├── other
│ │ │ │ ├── BigDecimalEditor.java
│ │ │ │ ├── DatePropertyEditor.java
│ │ │ │ ├── FocusTraversalPolicyInitial.java
│ │ │ │ ├── LOSExplorerProviderPanel.java
│ │ │ │ ├── LiveHelp.java
│ │ │ │ ├── Menubar.java
│ │ │ │ ├── MultiIcon.java
│ │ │ │ ├── NumericDocument.java
│ │ │ │ ├── Tab.java
│ │ │ │ ├── TabUI.java
│ │ │ │ └── TopComponentExt.java
│ │ │ ├── view
│ │ │ │ ├── DefaultLOSListViewModel.java
│ │ │ │ ├── LOSListChooserView.java
│ │ │ │ ├── LOSListChooserViewModel.java
│ │ │ │ ├── LOSListView.java
│ │ │ │ ├── LOSListViewModel.java
│ │ │ │ ├── LOSListViewModelListener.java
│ │ │ │ ├── LOSListViewRootNode.java
│ │ │ │ └── LOSListViewSelectionListener.java
│ │ │ └── windows
│ │ │ │ ├── AppModalDialog.java
│ │ │ │ ├── JSaveDialog.java
│ │ │ │ ├── TipPanel.java
│ │ │ │ └── TipPanelCanvas.java
│ │ ├── gui_builder
│ │ │ ├── AbstractFooterPanel.form
│ │ │ ├── AbstractFooterPanel.java
│ │ │ ├── AbstractHeaderPanel.form
│ │ │ ├── AbstractHeaderPanel.java
│ │ │ └── windows
│ │ │ │ ├── AbstractAppModalDialog.form
│ │ │ │ ├── AbstractAppModalDialog.java
│ │ │ │ ├── AbstractTipPanel.form
│ │ │ │ └── AbstractTipPanel.java
│ │ ├── layout
│ │ │ └── WrapFlowLayout.java
│ │ ├── listener
│ │ │ ├── DocumentChangeImpl.java
│ │ │ ├── DocumentChangeListener.java
│ │ │ ├── JMSListener.java
│ │ │ ├── JMSListenerAdapter.java
│ │ │ ├── JMSListenerImpl.java
│ │ │ ├── MinimumSizeComponentListener.java
│ │ │ ├── TopComponentListener.java
│ │ │ ├── TopComponentListenerAdapter.java
│ │ │ └── TopComponentListenerImpl.java
│ │ ├── object
│ │ │ ├── Constants.java
│ │ │ ├── DecoratedIcon.java
│ │ │ ├── IconType.java
│ │ │ └── LOSAutoFilteringComboBoxNode.java
│ │ └── wizard
│ │ │ ├── component
│ │ │ └── WizardSummaryPanel.java
│ │ │ └── gui_builder
│ │ │ ├── AbstractWizardSummaryPanel.form
│ │ │ └── AbstractWizardSummaryPanel.java
│ │ ├── layer.xml
│ │ ├── onlinehelp.url
│ │ ├── preferences
│ │ ├── AppPreferences.java
│ │ ├── AppPreferencesController.java
│ │ ├── AppPreferencesNode.java
│ │ ├── AppPreferencesPanel.form
│ │ ├── AppPreferencesPanel.java
│ │ ├── AppPreferenecesSheetView.java
│ │ ├── AppServerOptionsCategory.java
│ │ ├── ConfigurationFileNotFound.java
│ │ └── JNDIOptionsCategory.java
│ │ ├── res
│ │ ├── Bundle.properties
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ ├── Bundle_es.properties
│ │ ├── Bundle_fr.properties
│ │ ├── Bundle_hu.properties
│ │ ├── Bundle_ru.properties
│ │ ├── CommonBundleResolver.java
│ │ ├── icon
│ │ │ ├── Action.png
│ │ │ ├── Action22.png
│ │ │ ├── Action32.png
│ │ │ ├── Add.png
│ │ │ ├── Add22.png
│ │ │ ├── Add32.png
│ │ │ ├── BOBrowser.png
│ │ │ ├── BOBrowser22.png
│ │ │ ├── BOBrowser32.png
│ │ │ ├── Client.png
│ │ │ ├── Client22.png
│ │ │ ├── Client32.png
│ │ │ ├── Create.png
│ │ │ ├── Create22.png
│ │ │ ├── Create32.png
│ │ │ ├── Delete.png
│ │ │ ├── Delete22.png
│ │ │ ├── Delete32.png
│ │ │ ├── Document.png
│ │ │ ├── Document22.png
│ │ │ ├── Document32.png
│ │ │ ├── Edit.png
│ │ │ ├── Edit22.png
│ │ │ ├── Edit32.png
│ │ │ ├── Erase.png
│ │ │ ├── Erase22.png
│ │ │ ├── Erase32.png
│ │ │ ├── Excel.gif
│ │ │ ├── Excel32.gif
│ │ │ ├── Excel48.gif
│ │ │ ├── Exception.png
│ │ │ ├── Exception22.png
│ │ │ ├── Exception32.png
│ │ │ ├── IconResolver.java
│ │ │ ├── Info.png
│ │ │ ├── Info22.png
│ │ │ ├── Info32.png
│ │ │ ├── Lorry-icon.png
│ │ │ ├── Lorry-icon22.png
│ │ │ ├── Lorry-icon32.png
│ │ │ ├── Pdf.gif
│ │ │ ├── Pdf32.gif
│ │ │ ├── Pdf48.gif
│ │ │ ├── Question.png
│ │ │ ├── Question22.png
│ │ │ ├── Question32.png
│ │ │ ├── Redo.png
│ │ │ ├── Redo22.png
│ │ │ ├── Redo32.png
│ │ │ ├── Reload.png
│ │ │ ├── Reload22.png
│ │ │ ├── Reload32.png
│ │ │ ├── Remove.png
│ │ │ ├── Remove22.png
│ │ │ ├── Remove32.png
│ │ │ ├── Role.png
│ │ │ ├── Role22.png
│ │ │ ├── Role32.png
│ │ │ ├── Save.png
│ │ │ ├── Save22.png
│ │ │ ├── Save32.png
│ │ │ ├── Search.png
│ │ │ ├── Search22.png
│ │ │ ├── Search32.png
│ │ │ ├── Undo.png
│ │ │ ├── Undo22.png
│ │ │ ├── Undo32.png
│ │ │ ├── User.png
│ │ │ ├── User22.png
│ │ │ ├── User32.png
│ │ │ ├── UserLogin.gif
│ │ │ ├── UserLogin.png
│ │ │ ├── UserLogin32.gif
│ │ │ ├── UserLogin32.png
│ │ │ ├── Warning16.png
│ │ │ ├── Warning22.png
│ │ │ ├── Warning32.png
│ │ │ ├── Zone.png
│ │ │ ├── Zone22.png
│ │ │ ├── Zone32.png
│ │ │ ├── down.png
│ │ │ ├── down22.png
│ │ │ ├── down32.png
│ │ │ ├── go-first.png
│ │ │ ├── go-last.png
│ │ │ ├── go-next.png
│ │ │ ├── go-previous.png
│ │ │ ├── help-browser.png
│ │ │ ├── help-browser22.png
│ │ │ ├── help-browser32.png
│ │ │ ├── lockedstate.gif
│ │ │ ├── login.png
│ │ │ ├── los.gif
│ │ │ ├── network-error.png
│ │ │ ├── network-idle.png
│ │ │ ├── network-transmit.png
│ │ │ ├── showDetail16.png
│ │ │ ├── shutdown.gif
│ │ │ ├── sort-asc.png
│ │ │ ├── sort-asc16.png
│ │ │ ├── sort-desc.png
│ │ │ ├── sort-desc16.png
│ │ │ ├── splash.gif
│ │ │ ├── up.png
│ │ │ ├── up22.png
│ │ │ ├── up32.png
│ │ │ └── warning.png
│ │ └── img
│ │ │ └── no-photo.png
│ │ ├── services
│ │ ├── CustomErrorManager.java
│ │ ├── CustomErrorManagerImpl.java
│ │ ├── J2EEServiceLocator.java
│ │ ├── J2EEServiceLocatorException.java
│ │ ├── J2EEServiceLocatorImpl.java
│ │ ├── J2EEServiceNotAvailable.java
│ │ ├── LoginFileSystem.java
│ │ ├── MutableMultiFileSystem.java
│ │ └── ServiceParameterWizard.java
│ │ ├── system
│ │ ├── AuthorizedResolver.java
│ │ ├── BundleHelper.java
│ │ ├── HelpResolver.java
│ │ ├── ModulInstallExtSingleton.java
│ │ ├── ModuleInstallExt.java
│ │ ├── OSInfo.java
│ │ ├── Ping.java
│ │ ├── PingException.java
│ │ ├── Registry.java
│ │ ├── ServerDown.java
│ │ ├── SystemUtil.java
│ │ └── UniqueMessageDialog.java
│ │ ├── userlogin
│ │ ├── LoginException.java
│ │ ├── LoginPanel.form
│ │ ├── LoginPanel.java
│ │ ├── LoginPanelImpl.java
│ │ ├── LoginService.java
│ │ ├── LoginServiceImpl.java
│ │ ├── LoginState.java
│ │ └── SecurityManager.java
│ │ └── util
│ │ ├── BundleResolve.java
│ │ ├── BusinessExceptionResolver.java
│ │ ├── CursorControl.java
│ │ ├── ExceptionAnnotator.java
│ │ ├── GIFEncoderGalileo.java
│ │ ├── GraphicUtil.java
│ │ ├── ImageEncoder.java
│ │ ├── LinogistiXTheme.java
│ │ ├── RGB2GIF.java
│ │ ├── StatusLineServer.form
│ │ ├── StatusLineServer.java
│ │ ├── TransparentPicture.java
│ │ └── gif
│ │ ├── GifEncoder.java
│ │ ├── ImageEncoder.java
│ │ ├── IntHashtable.java
│ │ └── PpmEncoder.java
├── LOS Data Importer
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ └── de
│ │ └── linogistix
│ │ └── losdataimporter
│ │ ├── Installer.java
│ │ ├── itemdata
│ │ ├── ImportItemDataAction.java
│ │ ├── ImportItemDataFilePanel.java
│ │ ├── ImportItemDataHintPanel.java
│ │ └── ImportItemDataWizard.java
│ │ ├── res
│ │ ├── Bundle.properties
│ │ ├── BundleResolver.java
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ ├── Bundle_es.properties
│ │ ├── Bundle_fr.properties
│ │ ├── Bundle_hu.properties
│ │ ├── Bundle_ru.properties
│ │ ├── layer.xml
│ │ ├── layer_ext.xml
│ │ └── losdataimporter-helpset.xml
│ │ └── storagelocation
│ │ ├── ImportLocationAction.java
│ │ ├── ImportLocationFilePanel.java
│ │ ├── ImportLocationHintPanel.java
│ │ ├── ImportLocationLabelPanel.java
│ │ ├── ImportLocationWizard.java
│ │ ├── component
│ │ ├── CreateLabelsPanel.java
│ │ ├── FileChooserPanel.java
│ │ └── HintPanel.java
│ │ └── gui_builder
│ │ ├── AbstractCreateLabelsPanel.form
│ │ ├── AbstractCreateLabelsPanel.java
│ │ ├── AbstractFileChooserPanel.form
│ │ ├── AbstractFileChooserPanel.java
│ │ ├── AbstractHintPanel.form
│ │ └── AbstractHintPanel.java
├── LOS Inventory Browser
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ └── de
│ │ └── linogistix
│ │ └── inventory
│ │ ├── Installer.java
│ │ ├── browser
│ │ ├── action
│ │ │ ├── BOAdviceFinishAction.java
│ │ │ ├── BOAdviceRemoveAction.java
│ │ │ ├── BOCustomerOrderFinishAction.java
│ │ │ ├── BOCustomerOrderPickedAction.java
│ │ │ ├── BOCustomerOrderPrintAction.java
│ │ │ ├── BOCustomerOrderRemoveAction.java
│ │ │ ├── BOCustomerOrderStartAction.java
│ │ │ ├── BOGoodsOutConfirmAction.java
│ │ │ ├── BOGoodsOutFinishAction.java
│ │ │ ├── BOGoodsOutPositionCancelAction.java
│ │ │ ├── BOGoodsOutRemoveAction.java
│ │ │ ├── BOGoodsReceiptFinishAction.java
│ │ │ ├── BOPickingOrderEditAction.java
│ │ │ ├── BOPickingOrderFinishAction.java
│ │ │ ├── BOPickingOrderReleaseAction.java
│ │ │ ├── BOPickingOrderRemoveAction.java
│ │ │ ├── BOPickingUnitLoadFinishAction.java
│ │ │ ├── BOPickingUnitLoadGoodsOutAction.java
│ │ │ ├── BOStockUnitExtinguishAction.java
│ │ │ ├── BOStockUnitNirwanaAction.java
│ │ │ ├── BOStorageLocationEmptyAction.java
│ │ │ ├── BOStorageRequestCancelAction.java
│ │ │ ├── BOStorageRequestRemoveAction.java
│ │ │ ├── BOUnitLoadEmptyAction.java
│ │ │ ├── BOUnitLoadExtinguishAction.java
│ │ │ ├── BOUnitLoadNirwanaAction.java
│ │ │ ├── BOUnitLoadPrintAction.java
│ │ │ ├── PacketListPrintAction.java
│ │ │ └── ReplenishIfNeededAction.java
│ │ ├── bo
│ │ │ ├── BOAddress.java
│ │ │ ├── BOBom.java
│ │ │ ├── BOCustomerOrder.java
│ │ │ ├── BOCustomerOrderPosition.java
│ │ │ ├── BOInventoryJournal.java
│ │ │ ├── BOInventoryJournalMasterNode.java
│ │ │ ├── BOItemData.java
│ │ │ ├── BOItemDataNumber.java
│ │ │ ├── BOItemUnit.java
│ │ │ ├── BOLOSAdvice.java
│ │ │ ├── BOLOSAdviceSelection.java
│ │ │ ├── BOLOSGoodsOutRequest.java
│ │ │ ├── BOLOSGoodsOutRequestPosition.java
│ │ │ ├── BOLOSGoodsReceipt.java
│ │ │ ├── BOLOSGoodsReceiptPosition.java
│ │ │ ├── BOLOSStorageRequest.java
│ │ │ ├── BOLOSStorageStrategy.java
│ │ │ ├── BOLOSUnitLoadAdvice.java
│ │ │ ├── BOLOSUnitLoadAdvicePosition.java
│ │ │ ├── BOOrderStrategy.java
│ │ │ ├── BOPackagingUnit.java
│ │ │ ├── BOPickingOrder.java
│ │ │ ├── BOPickingPosition.java
│ │ │ ├── BOPickingUnitLoad.java
│ │ │ └── BOStockUnit.java
│ │ ├── dialog
│ │ │ ├── AddressEditDialog.form
│ │ │ ├── AddressEditDialog.java
│ │ │ ├── AddressTextField.java
│ │ │ ├── CustomerOrderPrintDialog.form
│ │ │ ├── CustomerOrderPrintDialog.java
│ │ │ ├── CustomerOrderStartDataPage.java
│ │ │ ├── CustomerOrderStartDataPanel.form
│ │ │ ├── CustomerOrderStartDataPanel.java
│ │ │ ├── CustomerOrderStartHintPage.java
│ │ │ ├── CustomerOrderStartHintPanel.form
│ │ │ ├── CustomerOrderStartHintPanel.java
│ │ │ ├── CustomerOrderStartWizard.java
│ │ │ ├── PickingOrderEditDialog.form
│ │ │ ├── PickingOrderEditDialog.java
│ │ │ ├── UnitLoadPrintDialog.form
│ │ │ └── UnitLoadPrintDialog.java
│ │ ├── masternode
│ │ │ ├── BOAddressMasterNode.java
│ │ │ ├── BOBomMasterNode.java
│ │ │ ├── BOCustomerOrderMasterNode.java
│ │ │ ├── BOCustomerOrderPositionMasterNode.java
│ │ │ ├── BOItemDataMasterNode.java
│ │ │ ├── BOItemDataNumberMasterNode.java
│ │ │ ├── BOLOSAdviceMasterNode.java
│ │ │ ├── BOLOSGoodsOutPositionMasterNode.java
│ │ │ ├── BOLOSGoodsOutRequestMasterNode.java
│ │ │ ├── BOLOSGoodsReceiptMasterNode.java
│ │ │ ├── BOLOSGoodsReceiptPositionMasterNode.java
│ │ │ ├── BOLOSStorageRequestMasterNode.java
│ │ │ ├── BOLOSStorageStrategyMasterNode.java
│ │ │ ├── BOLOSUnitLoadAdviceMasterNode.java
│ │ │ ├── BOLOSUnitLoadAdvicePositionMasterNode.java
│ │ │ ├── BOPackagingUnitMasterNode.java
│ │ │ ├── BOPickingOrderMasterNode.java
│ │ │ ├── BOPickingPositionMasterNode.java
│ │ │ ├── BOPickingUnitLoadMasterNode.java
│ │ │ └── BOStockUnitMasterNode.java
│ │ └── query
│ │ │ └── gui
│ │ │ └── component
│ │ │ ├── BomDefaultQueryProvider.java
│ │ │ └── StockUnitDefaultQueryProvider.java
│ │ ├── gui
│ │ └── component
│ │ │ └── controls
│ │ │ ├── ClientItemDataLotFilteringComponent.java
│ │ │ ├── CustomerOrderComboBoxModel.java
│ │ │ ├── CustomerOrderPositionComboBoxModel.java
│ │ │ └── ItemDataComboBoxModel.java
│ │ ├── layer.xml
│ │ ├── report
│ │ └── queryinventory
│ │ │ ├── QueryInventoryAction.java
│ │ │ ├── QueryInventoryTopComponent.form
│ │ │ ├── QueryInventoryTopComponent.java
│ │ │ └── gui
│ │ │ ├── component
│ │ │ ├── CenterPanel.java
│ │ │ ├── HeaderPanel.java
│ │ │ ├── TopComponentPanel.form
│ │ │ ├── TopComponentPanel.java
│ │ │ └── TreeTableViewPanel.java
│ │ │ └── gui_builder
│ │ │ ├── AbstractCenterPanel.form
│ │ │ ├── AbstractCenterPanel.java
│ │ │ ├── AbstractTreeTableViewPanel.form
│ │ │ └── AbstractTreeTableViewPanel.java
│ │ └── res
│ │ ├── Bundle.properties
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ ├── Bundle_es.properties
│ │ ├── Bundle_fr.properties
│ │ ├── Bundle_hu.properties
│ │ ├── Bundle_ru.properties
│ │ ├── InventoryBundleResolver.java
│ │ └── icon
│ │ ├── Action.png
│ │ ├── Action22.png
│ │ ├── Action32.png
│ │ ├── ItemData.png
│ │ ├── ItemData22.png
│ │ ├── ItemData32.png
│ │ ├── ItemUnit.png
│ │ ├── ItemUnit22.png
│ │ ├── ItemUnit32.png
│ │ ├── LOSAdvice.png
│ │ ├── LOSAdvice22.png
│ │ ├── LOSAdvice32.png
│ │ ├── OrderRequest.png
│ │ ├── OrderRequest22.png
│ │ ├── OrderRequest32.png
│ │ ├── StockUnit.png
│ │ ├── StockUnit22.png
│ │ └── StockUnit32.png
├── LOS Location Browser
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ └── de
│ │ └── linogistix
│ │ └── location
│ │ ├── Installer.java
│ │ ├── bobrowser
│ │ ├── action
│ │ │ ├── BOStorageLocationReleaseAction.java
│ │ │ └── BOUnitLoadNirwanaAction.java
│ │ ├── bo
│ │ │ ├── BOArea.java
│ │ │ ├── BOLOSFixedAssignment.java
│ │ │ ├── BOLOSLocationCluster.java
│ │ │ ├── BOLOSStorageLocationType.java
│ │ │ ├── BOLOSTypeCapacityConstraint.java
│ │ │ ├── BOLOSUnitLoad.java
│ │ │ ├── BOLOSWorkingArea.java
│ │ │ ├── BOLOSWorkingAreaPosition.java
│ │ │ ├── BOStorageLocation.java
│ │ │ ├── BOStorageRequest.java
│ │ │ ├── BOUnitLoad.java
│ │ │ ├── BOUnitLoadType.java
│ │ │ └── BOZone.java
│ │ └── masternode
│ │ │ ├── BOFixedAssignmentMasterNode.java
│ │ │ ├── BOLOSTypeCapacityConstraintMasterNode.java
│ │ │ ├── BOLOSUnitLoadMasterNode.java
│ │ │ ├── BOLOSWorkingAreaPositionMasterNode.java
│ │ │ └── BOLOStorageLocationMasterNode.java
│ │ ├── dialog
│ │ ├── BORackLocationOrderAction.java
│ │ ├── LocationOrderDataPage.java
│ │ ├── LocationOrderDataPanel.form
│ │ ├── LocationOrderDataPanel.java
│ │ └── LocationOrderWizard.java
│ │ ├── gui
│ │ └── component
│ │ │ └── controls
│ │ │ └── LOSStorageLocationComboBoxModel.java
│ │ ├── layer.xml
│ │ └── res
│ │ ├── Bundle.properties
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ ├── Bundle_es.properties
│ │ ├── Bundle_fr.properties
│ │ ├── Bundle_hu.properties
│ │ ├── Bundle_ru.properties
│ │ ├── LocationBundleResolver.java
│ │ ├── icon
│ │ ├── Action.png
│ │ ├── Action22.png
│ │ ├── Action32.png
│ │ ├── Area.png
│ │ ├── Area22.png
│ │ ├── Area32.png
│ │ ├── LocationIconResolver.java
│ │ ├── StorageLocation.png
│ │ ├── StorageLocation22.png
│ │ ├── StorageLocation32.png
│ │ ├── UnitLoad.png
│ │ ├── UnitLoad22.png
│ │ ├── UnitLoad32.png
│ │ ├── UnitLoadType.png
│ │ ├── UnitLoadType22.png
│ │ ├── UnitLoadType32.png
│ │ ├── Zone.png
│ │ ├── Zone22.png
│ │ └── Zone32.png
│ │ └── img
│ │ └── UnitLoad.png
├── LOS Processes
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ └── de
│ │ └── linogistix
│ │ └── wmsprocesses
│ │ ├── Installer.java
│ │ ├── carriertransfer
│ │ ├── BOCarrierTransferAction.java
│ │ ├── CarrierTransferAction.java
│ │ ├── CarrierTransferDataPage.java
│ │ ├── CarrierTransferDataPanel.form
│ │ ├── CarrierTransferDataPanel.java
│ │ ├── CarrierTransferHintPage.java
│ │ ├── CarrierTransferHintPanel.form
│ │ ├── CarrierTransferHintPanel.java
│ │ └── CarrierTransferWizard.java
│ │ ├── changeamount
│ │ ├── BOStockUnitChangeAmountAction.java
│ │ ├── ChangeAmountDataPage.java
│ │ ├── ChangeAmountDataPanel.form
│ │ ├── ChangeAmountDataPanel.java
│ │ ├── ChangeAmountInfoPage.java
│ │ ├── ChangeAmountInfoPanel.form
│ │ ├── ChangeAmountInfoPanel.java
│ │ ├── ChangeAmountWizard.java
│ │ └── StockUnitChangeAmountAction.java
│ │ ├── layer.xml
│ │ ├── logipedia.url
│ │ ├── processes
│ │ ├── create_avis
│ │ │ ├── CreateAvisAction.java
│ │ │ ├── CreateAvisTopComponent.form
│ │ │ ├── CreateAvisTopComponent.java
│ │ │ └── gui
│ │ │ │ ├── component
│ │ │ │ ├── CenterPanel.java
│ │ │ │ ├── FooterPanel.java
│ │ │ │ ├── HeaderPanel.java
│ │ │ │ ├── TopComponentPanel.form
│ │ │ │ └── TopComponentPanel.java
│ │ │ │ └── gui_builder
│ │ │ │ ├── AbstractCenterPanel.form
│ │ │ │ └── AbstractCenterPanel.java
│ │ ├── goodsreceipt
│ │ │ ├── GoodsReceiptAction.java
│ │ │ ├── GoodsReceiptTopComponent.form
│ │ │ ├── GoodsReceiptTopComponent.java
│ │ │ └── gui
│ │ │ │ ├── component
│ │ │ │ ├── CenterPanel.java
│ │ │ │ ├── CreateWizard.java
│ │ │ │ ├── CreateWizardDetailPanel.java
│ │ │ │ ├── CreateWizardDetailPanelUI.java
│ │ │ │ ├── CreateWizardInfoPanel.java
│ │ │ │ ├── CreateWizardInfoPanelUI.java
│ │ │ │ ├── FooterPanel.java
│ │ │ │ ├── GoodsReceiptController.java
│ │ │ │ ├── GoodsReceiptNode.java
│ │ │ │ ├── GoodsReceiptPositiontNode.java
│ │ │ │ ├── HeaderPanel.java
│ │ │ │ ├── PositionWizard.java
│ │ │ │ ├── PositionWizardLastPanel.java
│ │ │ │ ├── PositionWizardLastPanelUI.java
│ │ │ │ ├── PositionWizardLotPanel.java
│ │ │ │ ├── PositionWizardLotPanelUI.java
│ │ │ │ ├── PositionWizardModel.java
│ │ │ │ ├── PositionWizardQMPanel.java
│ │ │ │ ├── PositionWizardQMPanelUI.java
│ │ │ │ ├── PositionWizardSUPanel.java
│ │ │ │ ├── PositionWizardSUPanelUI.java
│ │ │ │ ├── PositionWizardULPanel.java
│ │ │ │ ├── PositionWizardULPanelUI.java
│ │ │ │ ├── QuickAdviceDialog.java
│ │ │ │ ├── QuickAdvicePanel.java
│ │ │ │ ├── TopComponentPanel.form
│ │ │ │ └── TopComponentPanel.java
│ │ │ │ └── gui_builder
│ │ │ │ ├── AbstractCenterPanel.form
│ │ │ │ ├── AbstractCenterPanel.java
│ │ │ │ ├── AbstractCreateWizardDetailPanel.form
│ │ │ │ ├── AbstractCreateWizardDetailPanel.java
│ │ │ │ ├── AbstractCreateWizardInfoPanel.form
│ │ │ │ ├── AbstractCreateWizardInfoPanel.java
│ │ │ │ ├── AbstractPositionWizardLastPanelUI.form
│ │ │ │ ├── AbstractPositionWizardLastPanelUI.java
│ │ │ │ ├── AbstractPositionWizardLotPanelUI.form
│ │ │ │ ├── AbstractPositionWizardLotPanelUI.java
│ │ │ │ ├── AbstractPositionWizardQMPanelUI.form
│ │ │ │ ├── AbstractPositionWizardQMPanelUI.java
│ │ │ │ ├── AbstractPositionWizardSUPanelUI.form
│ │ │ │ ├── AbstractPositionWizardSUPanelUI.java
│ │ │ │ ├── AbstractPositionWizardULPanelUI.form
│ │ │ │ ├── AbstractPositionWizardULPanelUI.java
│ │ │ │ ├── AbstractQuickAdvicePanel.form
│ │ │ │ └── AbstractQuickAdvicePanel.java
│ │ ├── order
│ │ │ ├── OrderAction.java
│ │ │ ├── OrderTopComponent.form
│ │ │ ├── OrderTopComponent.java
│ │ │ └── gui
│ │ │ │ ├── component
│ │ │ │ ├── CenterPanel.java
│ │ │ │ ├── FooterPanel.java
│ │ │ │ ├── HeaderPanel.java
│ │ │ │ ├── OrderTreeTableView.java
│ │ │ │ ├── TopComponentPanel.form
│ │ │ │ └── TopComponentPanel.java
│ │ │ │ ├── gui_builder
│ │ │ │ ├── AbstractCenterPanel.form
│ │ │ │ ├── AbstractCenterPanel.java
│ │ │ │ └── AbstractTreeTable_sample.java
│ │ │ │ └── object
│ │ │ │ ├── OrderItem.java
│ │ │ │ └── OrderItemNode.java
│ │ └── treat_order
│ │ │ ├── TreatOrderAction.java
│ │ │ ├── TreatOrderStockUnitBO.java
│ │ │ ├── TreatOrderStockUnitMasterNode.java
│ │ │ ├── TreatOrderTopComponent.form
│ │ │ ├── TreatOrderTopComponent.java
│ │ │ └── gui
│ │ │ ├── component
│ │ │ ├── TreatOrderCenterPanel.java
│ │ │ ├── TreatOrderFooterPanel.java
│ │ │ ├── TreatOrderHeaderPanel.java
│ │ │ ├── TreatOrderTopComponentPanel.form
│ │ │ └── TreatOrderTopComponentPanel.java
│ │ │ ├── control
│ │ │ ├── ItemMeasure.java
│ │ │ ├── TreatOrderDialogController.java
│ │ │ └── TreatOrderStockQueryProvider.java
│ │ │ ├── gui_builder
│ │ │ ├── AbstractTreatOrderCenterPanel.form
│ │ │ └── AbstractTreatOrderCenterPanel.java
│ │ │ └── model
│ │ │ ├── TreatOrderDialogModel.java
│ │ │ ├── TreatOrderPickRequestListModel.java
│ │ │ ├── TreatOrderPickRequestTO.java
│ │ │ └── TreatOrderStockSelectionModel.java
│ │ ├── res
│ │ ├── Bundle.properties
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ ├── Bundle_es.properties
│ │ ├── Bundle_fr.properties
│ │ ├── Bundle_hu.properties
│ │ ├── Bundle_ru.properties
│ │ ├── CreateAvisTopComponentSettings.xml
│ │ ├── CreateAvisTopComponentWstcref.xml
│ │ ├── GoodsReceiptTopComponentSettings.xml
│ │ ├── GoodsReceiptTopComponentWstcref.xml
│ │ ├── OrderTopComponentSettings.xml
│ │ ├── OrderTopComponentWstcref.xml
│ │ ├── WMSProcessesBundleResolver.java
│ │ └── img
│ │ │ ├── ChangeAmountStockUnit.png
│ │ │ ├── ChangeAmountStockUnit.svg
│ │ │ ├── StockUnit.gif
│ │ │ ├── StockUnit.png
│ │ │ ├── TransferCarrier.png
│ │ │ ├── TransferStockUnit.png
│ │ │ ├── TransferUnitLoad.png
│ │ │ ├── TransferUnitLoad.svg
│ │ │ └── UnitLoad.png
│ │ ├── stockunittransfer
│ │ ├── BOStockUnitTransferAction.java
│ │ ├── StockUnitTransferAction.java
│ │ ├── StockUnitTransferDataPage.java
│ │ ├── StockUnitTransferDataPanel.form
│ │ ├── StockUnitTransferDataPanel.java
│ │ ├── StockUnitTransferInfoPage.java
│ │ ├── StockUnitTransferInfoPanel.form
│ │ ├── StockUnitTransferInfoPanel.java
│ │ └── StockUnitTransferWizard.java
│ │ ├── unitloadtransfer
│ │ ├── BOUnitLoadTransferAction.java
│ │ ├── UnitLoadTransferAction.java
│ │ ├── UnitLoadTransferDataPage.java
│ │ ├── UnitLoadTransferDataPanel.form
│ │ ├── UnitLoadTransferDataPanel.java
│ │ ├── UnitLoadTransferHintPage.java
│ │ ├── UnitLoadTransferHintPanel.form
│ │ ├── UnitLoadTransferHintPanel.java
│ │ └── UnitLoadTransferWizard.java
│ │ └── wmsprocesses-helpset.xml
├── LOS Report
│ ├── TempWmicBatchFile.bat
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ ├── META-INF
│ │ └── services
│ │ │ └── de.linogistix.los.report.businessservice.ReportService
│ │ └── de
│ │ └── linogistix
│ │ └── reports
│ │ ├── Installer.java
│ │ ├── action
│ │ ├── BOExportCsvAction.java
│ │ ├── BOExportExcelAction.java
│ │ ├── BOMasterNodeReportAction.java
│ │ ├── ExportCsvMasterNodeAction.java
│ │ └── SavePDFAction.java
│ │ ├── export
│ │ └── ExportExcelAction.java
│ │ ├── gui
│ │ └── component
│ │ │ ├── BOExportWizard.java
│ │ │ ├── BOExportWizardFileJPanel.form
│ │ │ ├── BOExportWizardFileJPanel.java
│ │ │ ├── BOExportWizardFilePanel.java
│ │ │ ├── BOExportWizardSelectionJPanel.form
│ │ │ ├── BOExportWizardSelectionJPanel.java
│ │ │ └── BOExportWizardSelectionPanel.java
│ │ ├── layer.xml
│ │ ├── layer_default.xml
│ │ ├── overview
│ │ ├── OverviewAction.java
│ │ ├── OverviewTopComponent.form
│ │ └── OverviewTopComponent.java
│ │ └── res
│ │ ├── Bundle.properties
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ ├── Bundle_es.properties
│ │ ├── Bundle_fr.properties
│ │ ├── Bundle_hu.properties
│ │ ├── Bundle_ru.properties
│ │ ├── OverviewTopComponentSettings.xml
│ │ ├── OverviewTopComponentWstcref.xml
│ │ ├── QueryStockUnitTopComponentSettings.xml
│ │ ├── QueryStockUnitTopComponentWstcref.xml
│ │ ├── ReportsBundleResolver.java
│ │ ├── icon
│ │ ├── Excel.gif
│ │ ├── Excel32.gif
│ │ ├── Excel48.gif
│ │ ├── Pdf.gif
│ │ ├── Pdf32.gif
│ │ ├── Pdf48.gif
│ │ ├── csv.gif
│ │ ├── stock_chart-toggle-title.png
│ │ └── stock_chart-toggle-title32.png
│ │ └── jasperreports.properties
├── LOS Stocktaking Browser
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ └── de
│ │ └── linogistix
│ │ └── stocktaking
│ │ ├── Installer.java
│ │ ├── browser
│ │ ├── action
│ │ │ ├── StocktakingConfirmAction.java
│ │ │ ├── StocktakingLocationAction.java
│ │ │ ├── StocktakingRecountAction.java
│ │ │ └── StocktakingRemoveAction.java
│ │ ├── bo
│ │ │ ├── BOLOSStockTaking.java
│ │ │ ├── BOStocktakingOrder.java
│ │ │ └── BOStocktakingRecord.java
│ │ └── masternode
│ │ │ ├── BOLOSStockTakingOrderMasterNode.java
│ │ │ └── BOLOSStockTakingRecordMasterNode.java
│ │ ├── layer.xml
│ │ ├── process
│ │ ├── OpenStockTakingAction.java
│ │ ├── StockTakingCreateAction.java
│ │ ├── StockTakingProcessController.java
│ │ ├── StockTakingQueryTopComponent.java
│ │ └── gui
│ │ │ ├── LOSStockTakingRecordNode.java
│ │ │ ├── StockTakingCreateFooterPanel.java
│ │ │ ├── StockTakingRecordAbstractPanel.form
│ │ │ ├── StockTakingRecordAbstractPanel.java
│ │ │ ├── StockTakingRecordPanel.java
│ │ │ ├── StocktakingCreatePanel.java
│ │ │ ├── StocktakingCreateTopComponent.form
│ │ │ └── StocktakingCreateTopComponent.java
│ │ ├── res
│ │ ├── Bundle.properties
│ │ ├── Bundle_de.properties
│ │ ├── Bundle_en.properties
│ │ ├── Bundle_es.properties
│ │ ├── Bundle_fr.properties
│ │ ├── Bundle_hu.properties
│ │ ├── Bundle_ru.properties
│ │ └── StocktakingBundleResolver.java
│ │ └── stocktaking-helpset.xml
├── TempWmicBatchFile.bat
├── branding.jnlp
├── branding
│ ├── core
│ │ └── core.jar
│ │ │ └── org
│ │ │ └── netbeans
│ │ │ └── core
│ │ │ └── startup
│ │ │ ├── Bundle.properties
│ │ │ ├── frame.gif
│ │ │ ├── frame32.gif
│ │ │ ├── frame48.gif
│ │ │ └── splash.gif
│ └── modules
│ │ ├── org-netbeans-core-windows.jar
│ │ └── org
│ │ │ └── netbeans
│ │ │ └── core
│ │ │ └── windows
│ │ │ └── view
│ │ │ └── ui
│ │ │ └── Bundle.properties
│ │ └── org-netbeans-core.jar
│ │ └── org
│ │ └── netbeans
│ │ └── core
│ │ └── ui
│ │ └── Bundle.properties
├── build.xml
├── iReport Library
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ ├── release
│ │ └── modules
│ │ │ └── ext
│ │ │ ├── barbecue-1.5-beta1.jar
│ │ │ ├── barbecue-license.txt
│ │ │ ├── iText-2.1.7-LICENSE.txt
│ │ │ ├── iText-2.1.7.jar
│ │ │ ├── jasperreports-4.6.0.jar
│ │ │ ├── jasperreports-4.6.0.txt
│ │ │ ├── jdt-compiler-3.1.1.jar
│ │ │ ├── jdt-epl-v10.html
│ │ │ ├── poi-3.7-20101029.jar
│ │ │ └── poi-license.txt
│ └── src
│ │ └── de
│ │ └── linogistix
│ │ └── ireport
│ │ ├── Bundle.properties
│ │ └── jasperreports.properties
├── master.jnlp
├── myWMS EJB-Library
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── platform.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ └── src
│ │ └── org
│ │ └── mywms
│ │ └── Bundle.properties
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── platform.properties
│ ├── platform.xml
│ ├── project.properties
│ └── project.xml
├── swinglayout
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── project.properties
│ │ ├── project.xml
│ │ └── suite.properties
│ ├── release
│ │ └── modules
│ │ │ └── ext
│ │ │ └── swing-layout-1.0.4.jar
│ └── src
│ │ └── org
│ │ └── jdesktop
│ │ └── layout
│ │ └── Bundle.properties
└── swingx Library
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── platform.properties
│ ├── project.properties
│ ├── project.xml
│ └── suite.properties
│ ├── release
│ └── modules
│ │ └── ext
│ │ └── swingx-0.8.0.jar
│ └── src
│ └── org
│ └── jdesktop
│ └── swingx
│ └── Bundle.properties
└── los.reference
├── Project EJB-Library
├── build.xml
├── manifest.mf
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── platform.properties
│ ├── project.properties
│ ├── project.xml
│ └── suite.properties
└── src
│ └── de
│ └── linogistix
│ └── los
│ └── reference
│ └── ejb
│ └── Bundle.properties
├── branding.jnlp
├── branding
├── core
│ └── core.jar
│ │ └── org
│ │ └── netbeans
│ │ └── core
│ │ └── startup
│ │ ├── Bundle.properties
│ │ ├── frame.gif
│ │ ├── frame32.gif
│ │ ├── frame48.gif
│ │ └── splash.gif
└── modules
│ └── org-netbeans-core-windows.jar
│ └── org
│ └── netbeans
│ └── core
│ └── windows
│ └── view
│ └── ui
│ └── Bundle.properties
├── build.xml
├── los.reference
├── build.xml
├── manifest.mf
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── platform.properties
│ ├── project.properties
│ ├── project.xml
│ └── suite.properties
└── src
│ └── de
│ └── linogistix
│ └── reference
│ ├── Installer.java
│ ├── about
│ ├── AboutBox.java
│ ├── AboutBoxAction.java
│ ├── Bundle.properties
│ └── about.jpg
│ ├── layer.xml
│ └── res
│ ├── Bundle.properties
│ ├── Bundle_de.properties
│ ├── Bundle_en.properties
│ ├── Bundle_es.properties
│ └── ReferenceBundleResolver.java
├── master.jnlp
├── nbproject
├── build-impl.xml
├── genfiles.properties
├── platform.properties
├── platform.xml
├── project.properties
└── project.xml
└── welcome
├── build.xml
├── l10n.list
├── manifest.mf
├── nbproject
├── build-impl.xml
├── genfiles.properties
├── platform.properties
├── project.properties
└── project.xml
├── release
└── docs
│ ├── GUIExamplesDescription.html
│ ├── SwingInteropDescription.html
│ ├── images
│ ├── background.png
│ ├── banner-left.png
│ ├── banner-right.png
│ ├── blue.png
│ ├── circle1.gif
│ ├── circle2.gif
│ ├── circle3.gif
│ ├── circle4.gif
│ ├── circle5.gif
│ ├── circle6.gif
│ ├── down-left.png
│ ├── down-right.png
│ ├── spacer.png
│ ├── up-left.png
│ └── up-right.png
│ └── netbeans.css
└── src
└── de
└── linogistix
└── reference
└── welcome
├── Bundle.properties
├── Bundle_de.properties
├── Bundle_en.properties
├── Bundle_es.properties
├── Installer.java
├── WelcomeComponent.java
├── WelcomeOptions.java
├── WelcomePageAction.java
├── content
├── AbstractContent.java
├── AbstractTab.java
├── Community.java
├── ContactTab.java
├── Documentation.java
├── DocumentationTab.java
├── Enterprise.java
├── LinogistixContact.java
└── LinogistixNews.java
├── resources
├── Welcome.settings
├── Welcome.wstcref
├── broken_image.gif
├── btn_center.png
├── btn_left.png
├── btn_right.png
├── content_banner.png
├── content_banner_dark.png
├── layer.xml
├── linogistix_logo.jpg
├── mail.gif
├── mywms_logo.png
├── sel_btn_center.png
├── sel_btn_left.png
├── sel_btn_right.png
├── tab_rollover.png
├── tab_rollover_dark.png
├── tab_selected.png
└── tab_selected_dark.png
└── ui
├── ActionButton.java
├── BottomBar.java
├── BundleSupport.java
├── ButtonBorder.java
├── Constants.java
├── ContentHeader.java
├── ContentSection.java
├── LinkButton.java
├── Logo.java
├── ShowNextTime.java
├── StartPageContent.java
├── TabContentPane.java
├── TabbedPane.java
├── Utils.java
└── WebLink.java
/config/context.properties:
--------------------------------------------------------------------------------
1 | org.mywms.env.defaultUser=
2 | org.mywms.env.defaultPassword=
3 | java.naming.factory.initial=org.wildfly.naming.client.WildFlyInitialContextFactory
4 | java.naming.provider.url=http-remoting://localhost:8080
5 |
--------------------------------------------------------------------------------
/config/rich.client/bobrowser/BasicClientAssignedEntityDescriptor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | client
6 |
7 |
8 | basic
9 |
10 | false
11 | 1
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/common/businessservice/CommonBasicDataService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.common.businessservice;
9 |
10 | import java.util.Locale;
11 |
12 | import javax.ejb.Local;
13 |
14 | /**
15 | * Generation of basic data to use the application
16 | *
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface CommonBasicDataService {
22 | public void createBasicData(Locale locale);
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/common/facade/VersionFacade.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.common.facade;
9 |
10 | import javax.ejb.Remote;
11 |
12 | @Remote
13 | public interface VersionFacade {
14 |
15 | public String getInfo();
16 |
17 | public String getTitle();
18 |
19 | public String getVersion();
20 | }
21 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/common/service/LOSJasperReportService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.common.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.report.Report;
15 | /**
16 | * @author krane
17 | *
18 | */
19 | @Local
20 | public interface LOSJasperReportService extends BasicService{
21 | }
22 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/common/service/LOSJasperReportServiceBean.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.common.service;
9 |
10 | import javax.ejb.Stateless;
11 |
12 | import org.mywms.service.BasicServiceBean;
13 |
14 | import de.wms2.mywms.report.Report;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Stateless
21 | public class LOSJasperReportServiceBean extends BasicServiceBean implements LOSJasperReportService {
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/crud/LOSJasperReportCRUDRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.crud;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.wms2.mywms.report.Report;
13 |
14 | /**
15 | * @author krane
16 | *
17 | */
18 | @Remote
19 | public interface LOSJasperReportCRUDRemote extends BusinessObjectCRUDRemote{
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/crud/SequenceNumberCRUDRemote.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.los.crud;
2 |
3 | import javax.ejb.Remote;
4 |
5 | import de.wms2.mywms.sequence.SequenceNumber;
6 |
7 | /**
8 | * @author krane
9 | *
10 | */
11 | @Remote
12 | public interface SequenceNumberCRUDRemote extends BusinessObjectCRUDRemote {
13 | }
14 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/customization/EntityGenerator.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.customization;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.model.BasicEntity;
13 |
14 | /**
15 | * @author krane
16 | *
17 | */
18 | @Local
19 | public interface EntityGenerator {
20 | public E generateEntity( Class clazz );
21 | }
22 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/entityservice/BusinessObjectLock.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.entityservice;
9 |
10 | import java.io.Serializable;
11 |
12 | public interface BusinessObjectLock extends Serializable{
13 |
14 | int getLock();
15 |
16 | String getMessage();
17 |
18 | @SuppressWarnings("unchecked")
19 | Class getBundleResolver();
20 |
21 | String getMessageKey();
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/entityservice/SequenceNumberService.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.los.entityservice;
2 |
3 | import javax.ejb.Local;
4 |
5 | import org.mywms.service.BasicService;
6 |
7 | import de.wms2.mywms.sequence.SequenceNumber;
8 |
9 | /**
10 | * @author krane
11 | *
12 | */
13 | @Local
14 | public interface SequenceNumberService extends BasicService {
15 | }
16 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/entityservice/SequenceNumberServiceBean.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.los.entityservice;
2 |
3 | import javax.ejb.Stateless;
4 |
5 | import org.mywms.service.BasicServiceBean;
6 |
7 | import de.wms2.mywms.sequence.SequenceNumber;
8 |
9 | /**
10 | * @author krane
11 | *
12 | */
13 | @Stateless
14 | public class SequenceNumberServiceBean extends BasicServiceBean implements SequenceNumberService {
15 | }
16 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/businessservice/InventoryBasicDataService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.businessservice;
9 |
10 | import java.util.Locale;
11 |
12 | import javax.ejb.Local;
13 |
14 | /**
15 | * Generation of basic data to use the application
16 | *
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface InventoryBasicDataService {
22 | public void createBasicData(Locale locale);
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/crud/LOSBomCRUDRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 |
9 | package de.linogistix.los.inventory.crud;
10 |
11 | import javax.ejb.Remote;
12 |
13 | import de.linogistix.los.crud.BusinessObjectCRUDRemote;
14 | import de.linogistix.los.inventory.model.LOSBom;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Remote
21 | public interface LOSBomCRUDRemote extends BusinessObjectCRUDRemote{
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/crud/LOSPickingOrderCRUDRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 |
9 | package de.linogistix.los.inventory.crud;
10 |
11 | import javax.ejb.Remote;
12 |
13 | import de.linogistix.los.crud.BusinessObjectCRUDRemote;
14 | import de.wms2.mywms.picking.PickingOrder;
15 |
16 |
17 | /**
18 | * @author krane
19 | *
20 | */
21 | @Remote
22 | public interface LOSPickingOrderCRUDRemote extends BusinessObjectCRUDRemote{
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/crud/LOSPickingUnitLoadCRUDRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 |
9 | package de.linogistix.los.inventory.crud;
10 |
11 | import javax.ejb.Remote;
12 |
13 | import de.linogistix.los.crud.BusinessObjectCRUDRemote;
14 | import de.wms2.mywms.picking.Packet;
15 |
16 |
17 | /**
18 | * @author krane
19 | *
20 | */
21 | @Remote
22 | public interface LOSPickingUnitLoadCRUDRemote extends BusinessObjectCRUDRemote{
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/crud/LOSUnitLoadAdviceCRUDRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.crud;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.linogistix.los.crud.BusinessObjectCRUDRemote;
13 | import de.linogistix.los.inventory.model.LOSUnitLoadAdvice;
14 |
15 | @Remote
16 | public interface LOSUnitLoadAdviceCRUDRemote extends
17 | BusinessObjectCRUDRemote {
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/customization/ManageOrderServiceBean.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.customization;
9 |
10 | import org.mywms.facade.FacadeException;
11 |
12 | import de.wms2.mywms.picking.PickingOrder;
13 |
14 | public class ManageOrderServiceBean implements ManageOrderService {
15 |
16 | public boolean isPickingOrderReleasable(PickingOrder pickingOrder) throws FacadeException {
17 | return true;
18 | }
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/facade/LOSReplenishFacade.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.facade;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import org.mywms.facade.FacadeException;
13 |
14 |
15 | /**
16 | * @author krane
17 | *
18 | */
19 | @Remote
20 | public interface LOSReplenishFacade {
21 |
22 | public void refillFixedLocations() throws FacadeException;
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/model/LOSAdviceType.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.model;
9 |
10 | public enum LOSAdviceType {
11 |
12 | GOODS_IN,
13 | GOODS_IN_RETURNS,
14 | GOODS_OUT,
15 | GOODS_OUT_RETURNS
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/model/LOSUnitLoadAdviceState.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.model;
9 |
10 | public enum LOSUnitLoadAdviceState {
11 |
12 | CREATED,
13 | TRANSMITTED,
14 | REJECTED,
15 | FINISHED
16 | }
17 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/query/ItemDataNumberQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.query;
9 |
10 |
11 | import javax.ejb.Remote;
12 |
13 | import de.linogistix.los.query.BusinessObjectQueryRemote;
14 | import de.wms2.mywms.product.ItemDataNumber;
15 |
16 | /**
17 | *
18 | * @author krane
19 | */
20 | @Remote
21 | public interface ItemDataNumberQueryRemote extends BusinessObjectQueryRemote{
22 |
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/query/LOSGoodsOutRequestPositionQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.query;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.linogistix.los.query.BusinessObjectQueryRemote;
13 | import de.wms2.mywms.shipping.ShippingOrderLine;
14 |
15 | @Remote
16 | public interface LOSGoodsOutRequestPositionQueryRemote extends BusinessObjectQueryRemote{
17 |
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/query/LOSGoodsOutRequestQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.query;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.linogistix.los.query.BusinessObjectQueryRemote;
13 | import de.wms2.mywms.shipping.ShippingOrder;
14 |
15 | @Remote
16 | public interface LOSGoodsOutRequestQueryRemote extends BusinessObjectQueryRemote{
17 |
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/query/LOSUnitLoadAdviceQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.query;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.linogistix.los.inventory.model.LOSUnitLoadAdvice;
13 | import de.linogistix.los.query.BusinessObjectQueryRemote;
14 |
15 | @Remote
16 | public interface LOSUnitLoadAdviceQueryRemote extends
17 | BusinessObjectQueryRemote {
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/ItemDataNumberService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.product.ItemDataNumber;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface ItemDataNumberService extends BasicService {
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSCustomerOrderPositionService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.delivery.DeliveryOrderLine;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface LOSCustomerOrderPositionService extends BasicService {
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSCustomerOrderService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.delivery.DeliveryOrder;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface LOSCustomerOrderService extends BasicService {
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSGoodsOutRequestPositionService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.shipping.ShippingOrderLine;
15 |
16 | @Local
17 | public interface LOSGoodsOutRequestPositionService extends
18 | BasicService {
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSGoodsOutRequestService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.shipping.ShippingOrder;
15 |
16 | @Local
17 | public interface LOSGoodsOutRequestService extends
18 | BasicService {
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSGoodsOutRequestServiceBean.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Stateless;
11 |
12 | import org.mywms.service.BasicServiceBean;
13 |
14 | import de.wms2.mywms.shipping.ShippingOrder;
15 |
16 |
17 | @Stateless
18 | public class LOSGoodsOutRequestServiceBean extends
19 | BasicServiceBean implements
20 | LOSGoodsOutRequestService {
21 | }
22 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSGoodsReceiptPositionService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.goodsreceipt.GoodsReceiptLine;
15 |
16 | @Local
17 | public interface LOSGoodsReceiptPositionService extends BasicService {
18 | }
19 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSGoodsReceiptService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.goodsreceipt.GoodsReceipt;
15 |
16 | @Local
17 | public interface LOSGoodsReceiptService extends BasicService {
18 | }
19 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSGoodsReceiptServiceBean.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Stateless;
11 |
12 | import org.mywms.service.BasicServiceBean;
13 |
14 | import de.wms2.mywms.goodsreceipt.GoodsReceipt;
15 |
16 | @Stateless
17 | public class LOSGoodsReceiptServiceBean
18 | extends BasicServiceBean
19 | implements LOSGoodsReceiptService {
20 | }
21 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSOrderStrategyService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.strategy.OrderStrategy;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface LOSOrderStrategyService extends BasicService {
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSPickingOrderService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2013 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.picking.PickingOrder;
15 | /**
16 | * @author krane
17 | *
18 | */
19 | @Local
20 | public interface LOSPickingOrderService extends BasicService{
21 | }
22 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSPickingPositionService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.picking.PickingOrderLine;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface LOSPickingPositionService extends BasicService{
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSPickingUnitLoadService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.picking.Packet;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface LOSPickingUnitLoadService extends BasicService{
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSReplenishOrderService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.replenish.ReplenishOrder;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface LOSReplenishOrderService extends BasicService {
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSStorageRequestService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 by Fraunhofer IML, Dortmund.
3 | * All rights reserved.
4 | *
5 | * Project: myWMS
6 | */
7 | package de.linogistix.los.inventory.service;
8 |
9 | import javax.ejb.Local;
10 |
11 | import org.mywms.service.BasicService;
12 |
13 | import de.wms2.mywms.transport.TransportOrder;
14 |
15 |
16 | @Local
17 | public interface LOSStorageRequestService extends BasicService
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/LOSStorageStrategyService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2010 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-3PL
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.strategy.StorageStrategy;
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Local
21 | public interface LOSStorageStrategyService extends BasicService {
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/QueryAdviceService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.advice.AdviceLine;
15 |
16 | @Local
17 | public interface QueryAdviceService extends BasicService {
18 | }
19 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/inventory/service/QueryUnitLoadAdvicePositionService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.inventory.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.linogistix.los.inventory.model.LOSUnitLoadAdvicePosition;
15 |
16 | @Local
17 | public interface QueryUnitLoadAdvicePositionService extends BasicService {
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/crud/LOSUnitLoadCRUDRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.location.crud;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.linogistix.los.crud.BusinessObjectCRUDRemote;
13 | import de.wms2.mywms.inventory.UnitLoad;
14 |
15 | @Remote
16 | public interface LOSUnitLoadCRUDRemote
17 | extends BusinessObjectCRUDRemote
18 |
19 | {
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/entityservice/LOSAreaServiceRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.location.entityservice;
9 |
10 |
11 | import javax.ejb.Remote;
12 |
13 | import de.wms2.mywms.location.Area;
14 |
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Remote
21 | public interface LOSAreaServiceRemote {
22 | public Area getDefault();
23 | }
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/entityservice/LOSFixedLocationAssignmentService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.location.entityservice;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.strategy.FixAssignment;
15 |
16 | @Local
17 | public interface LOSFixedLocationAssignmentService
18 | extends BasicService
19 | {
20 | }
21 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/entityservice/LOSLocationClusterServiceRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.location.entityservice;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.wms2.mywms.location.LocationCluster;
13 |
14 | /**
15 | *
16 | * @author krane
17 | */
18 | @Remote
19 | public interface LOSLocationClusterServiceRemote {
20 |
21 | public LocationCluster getDefault();
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/entityservice/LOSUnitLoadService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.location.entityservice;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.wms2.mywms.inventory.UnitLoad;
15 |
16 | /**
17 | *
18 | * @author Jordan
19 | */
20 | @Local
21 | public interface LOSUnitLoadService extends BasicService{
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/query/LOSWorkingAreaQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.location.query;
9 |
10 |
11 | import javax.ejb.Remote;
12 |
13 | import de.linogistix.los.location.model.LOSWorkingArea;
14 | import de.linogistix.los.query.BusinessObjectQueryRemote;
15 |
16 |
17 | @Remote
18 | public interface LOSWorkingAreaQueryRemote extends BusinessObjectQueryRemote{
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/res/BundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | /*
9 | * To change this template, choose Tools | Templates
10 | * and open the template in the editor.
11 | */
12 |
13 | package de.linogistix.los.location.res;
14 |
15 | /**
16 | *
17 | * @author trautm
18 | */
19 | public class BundleResolver {
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/location/service/QueryFixedAssignmentServiceRemote.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.los.location.service;
2 |
3 | import java.util.List;
4 |
5 | import javax.ejb.Remote;
6 |
7 | import de.wms2.mywms.product.ItemData;
8 | import de.wms2.mywms.strategy.FixAssignment;
9 |
10 | @Remote
11 | public interface QueryFixedAssignmentServiceRemote {
12 | public List getByItemData(ItemData item);
13 | }
14 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/model/Prio.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009-2013 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 |
9 | package de.linogistix.los.model;
10 |
11 |
12 | /**
13 | * @author krane
14 | *
15 | */
16 | public class Prio {
17 | public static final int HIGHEST = 0;
18 | public static final int HIGH = 25;
19 | public static final int NORMAL = 50;
20 | public static final int LOW = 75;
21 | public static final int LOWEST = 100;
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/query/LOSJasperReportQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.query;
9 |
10 |
11 | import javax.ejb.Remote;
12 |
13 | import de.wms2.mywms.report.Report;
14 |
15 |
16 | /**
17 | * @author krane
18 | *
19 | */
20 | @Remote
21 | public interface LOSJasperReportQueryRemote extends BusinessObjectQueryRemote{
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/query/LOSSystemPropertyQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | /*
3 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
4 | *
5 | * www.linogistix.com
6 | *
7 | * Project myWMS-LOS
8 | */
9 |
10 | package de.linogistix.los.query;
11 |
12 |
13 | import javax.ejb.Remote;
14 |
15 | import de.wms2.mywms.property.SystemProperty;
16 |
17 |
18 | /**
19 | * @author krane
20 | *
21 | */
22 | @Remote
23 | public interface LOSSystemPropertyQueryRemote extends BusinessObjectQueryRemote{
24 | }
25 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/query/SequenceNumberQueryRemote.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.los.query;
2 |
3 | import javax.ejb.Remote;
4 |
5 | import de.wms2.mywms.sequence.SequenceNumber;
6 |
7 | /**
8 | * @author krane
9 | *
10 | */
11 | @Remote
12 | public interface SequenceNumberQueryRemote extends BusinessObjectQueryRemote {
13 | }
14 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/query/exception/BusinessObjectQueryExceptionKey.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.query.exception;
9 |
10 | public enum BusinessObjectQueryExceptionKey {
11 |
12 | CLIENT_PERMISSION_DENIED
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/report/ReportExceptionKey.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.report;
9 |
10 | /**
11 | *
12 | * @author trautm
13 | */
14 | public enum ReportExceptionKey {
15 | ENTITY_NOT_LONGER_PERTINENT,
16 | CREATION_FAILED,
17 | PRINT_FAILED,
18 | REPORT_CREATION_FAILED_CAUSE,
19 | REPORT_DOCUMENT_MISSING,
20 | PRINTER_UNDEFINED
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/res/BundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.res;
9 |
10 | public class BundleResolver {
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/runtime/RuntimeServicesRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 |
9 | package de.linogistix.los.runtime;
10 |
11 | import javax.ejb.Remote;
12 |
13 |
14 | /**
15 | * This is the business interface for RuntimeServices enterprise bean.
16 | */
17 | @Remote
18 | public interface RuntimeServicesRemote {
19 | /**
20 | * To test whether the application server can be connected.
21 | */
22 | void ping();
23 | }
24 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/stocktaking/crud/LOSStockTakingCRUDRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.stocktaking.crud;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.linogistix.los.crud.BusinessObjectCRUDRemote;
13 | import de.linogistix.los.stocktaking.model.LOSStockTaking;
14 |
15 | @Remote
16 | public interface LOSStockTakingCRUDRemote extends
17 | BusinessObjectCRUDRemote {
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/stocktaking/exception/BundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.stocktaking.exception;
9 |
10 | public class BundleResolver {
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/stocktaking/model/LOSStockTakingType.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.stocktaking.model;
9 |
10 | public enum LOSStockTakingType {
11 |
12 | END_OF_PERIOD_INVENTORY,
13 | PERMANENT_INVENTORY
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/stocktaking/model/LOSStocktakingEvent.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.stocktaking.model;
9 |
10 | public enum LOSStocktakingEvent {
11 |
12 | NEW,
13 | DEL,
14 | DIFF_PLUS,
15 | DIFF_MINUS,
16 | COUNT,
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/stocktaking/query/LOSStockTakingQueryRemote.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.stocktaking.query;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import de.linogistix.los.query.BusinessObjectQueryRemote;
13 | import de.linogistix.los.stocktaking.model.LOSStockTaking;
14 |
15 | @Remote
16 | public interface LOSStockTakingQueryRemote extends
17 | BusinessObjectQueryRemote {
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/stocktaking/service/LOSStockTakingService.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.stocktaking.service;
9 |
10 | import javax.ejb.Local;
11 |
12 | import org.mywms.service.BasicService;
13 |
14 | import de.linogistix.los.stocktaking.model.LOSStockTaking;
15 |
16 | @Local
17 | public interface LOSStockTakingService extends BasicService {
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/java/de/linogistix/los/util/businessservice/ImportDataException.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.util.businessservice;
9 |
10 | import javax.ejb.ApplicationException;
11 |
12 | @ApplicationException(rollback = true)
13 | public class ImportDataException extends Exception {
14 |
15 | private static final long serialVersionUID = 1L;
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/resources-filtered/de/linogistix/los/res/VersionBundle.properties:
--------------------------------------------------------------------------------
1 |
2 | version=${pom.version}
3 | build.date=${timestamp}
4 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/resources/META-INF/beans.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/resources/de/linogistix/los/location/res/downarrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los-ejb/src/main/resources/de/linogistix/los/location/res/downarrow.png
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/resources/de/linogistix/los/location/res/test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los-ejb/src/main/resources/de/linogistix/los/location/res/test.png
--------------------------------------------------------------------------------
/dev/los-ejb/src/main/resources/de/linogistix/los/location/res/uparrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los-ejb/src/main/resources/de/linogistix/los/location/res/uparrow.png
--------------------------------------------------------------------------------
/dev/los-ejb/src/test/java/de/linogistix/los/query/BOQueryMDATEST.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 |
9 | package de.linogistix.los.query;
10 |
11 |
12 | public class BOQueryMDATEST {
13 |
14 |
15 | public void queryById(Long id) {
16 | }
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/java/de/linogistix/mobileserver/processes/controller/ControllerFacade.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.mobileserver.processes.controller;
2 |
3 | import java.util.List;
4 |
5 | import javax.ejb.Remote;
6 |
7 | @Remote
8 | public interface ControllerFacade {
9 |
10 | public List getFunctions();
11 |
12 | public int getMenuPageSize();
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/java/de/linogistix/mobileserver/res/MobileBundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobileserver.res;
9 |
10 | public class MobileBundleResolver {
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/resources-filtered/de/linogistix/mobileserver/res/VersionBundle.properties:
--------------------------------------------------------------------------------
1 |
2 | version=${pom.version}
3 | build.date=${timestamp}
4 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/resources/META-INF/beans.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/resources/de/linogistix/mobileserver/res/MobileBundle.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-ejb/src/main/resources/de/linogistix/mobileserver/res/MobileBundle.properties
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/resources/translation/Bundle.properties:
--------------------------------------------------------------------------------
1 | BasicData.propertyPICKING_IDENTIFY_PACKET.desc = Identify the pick-to unit load in picking process in advance
2 | BasicData.propertySHIPPING_SCAN_DESTINATION.desc = Identify the target location in shipping process
3 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/resources/translation/Bundle_de.properties:
--------------------------------------------------------------------------------
1 | BasicData.propertyPICKING_IDENTIFY_PACKET.desc = Kommi-LHM im Komm-Prozess vorab identifizieren
2 | BasicData.propertySHIPPING_SCAN_DESTINATION.desc = Den Zielplatz beim Versand best\u00E4tigen
3 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/resources/translation/Bundle_en.properties:
--------------------------------------------------------------------------------
1 | BasicData.propertyPICKING_IDENTIFY_PACKET.desc = Identify the pick-to unit load in picking process in advance
2 | BasicData.propertySHIPPING_SCAN_DESTINATION.desc = Identify the target location in shipping process
3 |
--------------------------------------------------------------------------------
/dev/los.mobile-ejb/src/main/resources/translation/Bundle_es.properties:
--------------------------------------------------------------------------------
1 | BasicData.propertyPICKING_IDENTIFY_PACKET.desc = Por adelantado, identificar la unidad de carga a recoger en el proceso de picking
2 | BasicData.propertySHIPPING_SCAN_DESTINATION.desc = Identificar la localización objetivo en el proceso de envío
3 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/common/listener/ButtonListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.common.listener;
9 |
10 | import de.linogistix.mobile.common.gui.bean.NotifyDescriptorExtBean;
11 |
12 | /**
13 | *
14 | * @author artur
15 | */
16 | public abstract interface ButtonListener {
17 |
18 | public String buttonClicked(final int buttonId, final NotifyDescriptorExtBean notifyDescriptorBean);
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/processes/goodsreceipt/GoodsReceiptNavigationEnum.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.processes.goodsreceipt;
9 |
10 | public enum GoodsReceiptNavigationEnum {
11 |
12 | BACK_TO_MENU,
13 | CHOOSE_ADVICE,
14 | COLLECT_STOCK_DATA,
15 | PROCESS_UNITLOAD,
16 | SINGLE_STOCK,
17 | CONFIRM_NEW_LOT,
18 | GOODSRECEIPT_SUMMARY,
19 | GOODS_RECEIPT
20 | }
21 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/processes/info/InfoNavigation.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.mobile.processes.info;
2 |
3 | public enum InfoNavigation {
4 |
5 | INFO_BACK_TO_MENU,
6 | INFO_ENTER_CODE,
7 | INFO_SELECT_TYPE,
8 | INFO_SHOW_UNITLOAD,
9 | INFO_SHOW_UNITLOAD_STOCK,
10 | INFO_SHOW_ITEMDATA,
11 | INFO_SHOW_ITEMDATA_DESCR,
12 | INFO_SHOW_LOCATION,
13 | INFO_SHOW_STOCKUNIT,
14 | INFO_SHOW_ORDER
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/processes/login/NavigationEnum.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.processes.login;
9 |
10 | /**
11 | *
12 | * @author artur
13 | */
14 | public enum NavigationEnum {
15 | login_CenterPanel,
16 | controller_CenterPanel
17 | }
18 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/processes/shipping/ShippingNavigation.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.processes.shipping;
9 |
10 | public enum ShippingNavigation {
11 |
12 | SHIPPING_BACK_TO_MENU,
13 | SHIPPING_SELECT_ORDER,
14 | SHIPPING_SHOW_INFO,
15 | SHIPPING_SCAN_UNITLOAD,
16 | SHIPPING_SCAN_DESTINATION,
17 | SHIPPING_SHOW_SUMMARY
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/processes/storage/NavigationEnum.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.processes.storage;
9 |
10 | /**
11 | *
12 | * @author artur
13 | */
14 | public enum NavigationEnum {
15 | NotifyDescriptorExtPanel,
16 | controller_CenterPanel,
17 | storage_scanDestination_CenterPanel,
18 | storage_scanUnitLoad_CenterPanel
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/processes/storage/scan_stockunit/NavigationEnum.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.processes.storage.scan_stockunit;
9 |
10 |
11 | import java.io.Serializable;
12 |
13 |
14 | public enum NavigationEnum implements Serializable{
15 | controller_CenterPanel,
16 | storage_scanDestination_CenterPanel,
17 | NotifyDescriptorExtPanel,
18 | storage_scanStockunit_CenterPanel
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/processes/storage/scan_unitload/NavigationEnum.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.processes.storage.scan_unitload;
9 |
10 |
11 | import java.io.Serializable;
12 |
13 |
14 | public enum NavigationEnum implements Serializable{
15 | controller_CenterPanel,
16 | storage_scanDestination_CenterPanel,
17 | NotifyDescriptorExtPanel,
18 | storage_scanUnitLoad_CenterPanel
19 | }
20 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/java/de/linogistix/mobile/res/BundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.mobile.res;
9 |
10 | public class BundleResolver {
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/resources/de/linogistix/mobile/processes/info/InfoBundle_fr.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/resources/de/linogistix/mobile/processes/info/InfoBundle_fr.properties
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/resources/de/linogistix/mobile/res/pics/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/resources/de/linogistix/mobile/res/pics/warning.png
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Class-Path:
3 |
4 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/WEB-INF/jboss-web.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | los-login
6 | /los-mobile
7 |
8 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/WEB-INF/sun-web.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | /_LOS_Web
5 |
6 |
7 |
8 | Keep a copy of the generated servlet class' java code.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/pages/processes/login/logout_redirect.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Copyright (c) 2006 - 2010 LinogistiX GmbH
3 |
4 | www.linogistix.com
5 |
6 | Project: myWMS-LOS
7 | --%>
8 |
9 | <%@page contentType="text/html"%>
10 | <%@page pageEncoding="UTF-8"%>
11 | <% session.invalidate(); %>
12 | <% response.sendRedirect("/los-mobile/faces/logout.jsp"); %>
13 |
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/pics/error.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/webapp/pics/error.gif
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/pics/help.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/webapp/pics/help.gif
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/pics/information.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/webapp/pics/information.gif
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/pics/logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/webapp/pics/logo.gif
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/pics/question.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/webapp/pics/question.gif
--------------------------------------------------------------------------------
/dev/los.mobile-web/src/main/webapp/pics/warning.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/los.mobile-web/src/main/webapp/pics/warning.gif
--------------------------------------------------------------------------------
/dev/los.ws-ejb/src/main/resources/META-INF/beans.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/dev/mywms.as-ejb/src/main/java/org/mywms/globals/SerialNoRecordType.java:
--------------------------------------------------------------------------------
1 | package org.mywms.globals;
2 |
3 | public enum SerialNoRecordType {
4 |
5 | /**
6 | * Serial numbers will not be recorded during processes.
7 | */
8 | NO_RECORD,
9 | /**
10 | * Serial numbers will only be recorded during goods out process.
11 | */
12 | GOODS_OUT_RECORD,
13 | /**
14 | * Serial numbers will be recorded during all processes.
15 | */
16 | ALWAYS_RECORD
17 | }
18 |
--------------------------------------------------------------------------------
/dev/mywms.as-ejb/src/main/java/org/mywms/model/ItemUnitType.java:
--------------------------------------------------------------------------------
1 | package org.mywms.model;
2 |
3 | /**
4 | * Enum of types for ItemUnits.
5 | *
6 | * @author trautm
7 | *
8 | */
9 | public enum ItemUnitType {
10 | PIECE,
11 | LENGTH,
12 | WEIGHT,
13 | AREA,
14 | VOLUME;
15 |
16 |
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/dev/mywms.as-ejb/src/main/java/org/mywms/res/BundleResolver.java:
--------------------------------------------------------------------------------
1 | package org.mywms.res;
2 |
3 | /**
4 | * Just for finding the correct classloader
5 | *
6 | * @author trautm
7 | */
8 | public class BundleResolver {
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/dev/mywms.as-ejb/src/main/resources/META-INF/beans.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/dev/mywms.as-ejb/src/main/resources/org/mywms/res/ServiceExceptionKeyBundle.properties:
--------------------------------------------------------------------------------
1 | WEAK_PASSWORD=Passwords must contain a minimum of 6 to 10 characters and must contain at least one digit and character
2 |
--------------------------------------------------------------------------------
/dev/mywms.as-ejb/src/main/resources/org/mywms/res/ServiceExceptionKeyBundle_de.properties:
--------------------------------------------------------------------------------
1 | WEAK_PASSWORD=Das Passwort muss zwischen 6 und 10 Zeichen lang sein und Zeichen und Ziffern enthalten
--------------------------------------------------------------------------------
/dev/mywms.as-ejb/src/main/resources/org/mywms/res/ServiceExceptionKeyBundle_hu.properties:
--------------------------------------------------------------------------------
1 | WEAK_PASSWORD=A jelsz\u00f3 6 \u00e9s 10 k\u00f6z\u00f6tti jelb\u0151l \u00e1lljon, ami tartalmazzon jeleket \u00e9s sz\u00e1mokat
2 |
--------------------------------------------------------------------------------
/dev/project-ejb/src/main/java/de/linogistix/los/reference/customization/mobile/Ref_ManageMobileBean.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project: myWMS-LOS
7 | */
8 | package de.linogistix.los.reference.customization.mobile;
9 |
10 | import javax.ejb.Stateless;
11 |
12 | import de.linogistix.mobileserver.processes.controller.ManageMobile;
13 | import de.linogistix.mobileserver.processes.controller.ManageMobileBean;
14 |
15 |
16 | @Stateless
17 | public class Ref_ManageMobileBean extends ManageMobileBean implements ManageMobile {
18 |
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/dev/project-ejb/src/main/java/de/linogistix/los/reference/facade/RefTopologyFacade.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.los.reference.facade;
9 |
10 | import javax.ejb.Remote;
11 |
12 | import org.mywms.facade.FacadeException;
13 |
14 | @Remote
15 | public interface RefTopologyFacade {
16 |
17 | public void createDemoTopology() throws FacadeException;
18 |
19 | public boolean checkDemoData() throws FacadeException;
20 | }
21 |
--------------------------------------------------------------------------------
/dev/project-ejb/src/main/java/de/linogistix/los/reference/model/ProjectPropertyKey.java:
--------------------------------------------------------------------------------
1 | package de.linogistix.los.reference.model;
2 |
3 | public class ProjectPropertyKey {
4 |
5 | /**
6 | * Set this to true, if you want to see the button to create the demo topology
7 | */
8 | public static final String CREATE_DEMO_TOPOLOGY = "CREATE_DEMO_TOPOLOGY";
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/dev/project-ejb/src/main/resources-filtered/translation/VersionBundle.properties:
--------------------------------------------------------------------------------
1 |
2 | version=${pom.version}
3 | build.date=${timestamp}
4 |
--------------------------------------------------------------------------------
/dev/project-ejb/src/main/resources/META-INF/beans.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/dev/wms2-ejb/src/main/java/de/wms2/mywms/client/ClientState.java:
--------------------------------------------------------------------------------
1 | package de.wms2.mywms.client;
2 |
3 | public class ClientState {
4 |
5 | /**
6 | * Product is not ready to be handled. Used within creation processes.
7 | */
8 | public static final int UNDEFINED = 0;
9 |
10 | /**
11 | * Product can be used normally
12 | */
13 | public static final int ACTIVE = 100;
14 |
15 | /**
16 | * Product is marked as inactive. It can still be used and have stock
17 | */
18 | public static final int INACTIVE = 700;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/dev/wms2-ejb/src/main/java/de/wms2/mywms/product/ItemDataState.java:
--------------------------------------------------------------------------------
1 | package de.wms2.mywms.product;
2 |
3 | public class ItemDataState {
4 |
5 | /**
6 | * Product is not ready to be handled. Used within creation processes.
7 | */
8 | public static final int UNDEFINED = 0;
9 |
10 | /**
11 | * Product can be used normally
12 | */
13 | public static final int ACTIVE = 100;
14 |
15 | /**
16 | * Product is marked as inactive. It can still be used and have stock
17 | */
18 | public static final int INACTIVE = 700;
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/dev/wms2-ejb/src/main/java/de/wms2/mywms/util/Wms2BundleResolver.java:
--------------------------------------------------------------------------------
1 | package de.wms2.mywms.util;
2 |
3 | /**
4 | * Marker class to get package and ClassLoader information
5 | *
6 | * @author krane
7 | *
8 | */
9 | public class Wms2BundleResolver {
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/dev/wms2-ejb/src/main/resources/META-INF/beans.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/dev/wms2-ejb/src/main/resources/reports/default-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/dev/wms2-ejb/src/main/resources/reports/default-image.png
--------------------------------------------------------------------------------
/doc/GettingStarted.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/GettingStarted.pdf
--------------------------------------------------------------------------------
/doc/LOSRollen.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/LOSRollen.pdf
--------------------------------------------------------------------------------
/doc/los-doku-webservices_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/los-doku-webservices_en.pdf
--------------------------------------------------------------------------------
/doc/myWMS-GUI_de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-GUI_de.pdf
--------------------------------------------------------------------------------
/doc/myWMS-GUI_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-GUI_en.pdf
--------------------------------------------------------------------------------
/doc/myWMS-GoodsIn_de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-GoodsIn_de.pdf
--------------------------------------------------------------------------------
/doc/myWMS-GoodsIn_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-GoodsIn_en.pdf
--------------------------------------------------------------------------------
/doc/myWMS-GoodsOut_de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-GoodsOut_de.pdf
--------------------------------------------------------------------------------
/doc/myWMS-GoodsOut_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-GoodsOut_en.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Internal_de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Internal_de.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Internal_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Internal_en.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Inventory_de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Inventory_de.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Inventory_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Inventory_en.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Journal_de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Journal_de.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Journal_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Journal_en.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Masterdata_de.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Masterdata_de.pdf
--------------------------------------------------------------------------------
/doc/myWMS-Masterdata_en.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/doc/myWMS-Masterdata_en.pdf
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project org.apache.commons.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: org.apache.commons
3 | OpenIDE-Module-Localizing-Bundle: org/apache/commons/logging/Bundle.properties
4 | OpenIDE-Module-Specification-Version: 1.0
5 |
6 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=1f1da78f
2 | build.xml.script.CRC32=7c98f332
3 | build.xml.stylesheet.CRC32=15ca8a54@2.75.1
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=1f1da78f
7 | nbproject/build-impl.xml.script.CRC32=c200ecf2
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.75.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | is.autoload=true
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 | javac.source=1.5
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/release/modules/ext/commons-digester-1.8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/Apache Library/release/modules/ext/commons-digester-1.8.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/release/modules/ext/commons-lang3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/Apache Library/release/modules/ext/commons-lang3.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/release/modules/ext/log4j.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/Apache Library/release/modules/ext/log4j.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/Apache Library/src/org/apache/commons/logging/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=Apache Library
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project javax.jaxb.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: javax.jaxb
3 | OpenIDE-Module-Localizing-Bundle: javax/jaxb/Bundle.properties
4 | OpenIDE-Module-Specification-Version: 1.0
5 |
6 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | is.autoload=true
2 | javac.compilerargs=-Xlint:unchecked
3 | javac.source=1.5
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/JBossORG-Copyright.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JAXB Library/release/modules/ext/JBossORG-Copyright.txt
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/activation.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JAXB Library/release/modules/ext/activation.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/jaxb-api.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JAXB Library/release/modules/ext/jaxb-api.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/jaxb-impl.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JAXB Library/release/modules/ext/jaxb-impl.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/jaxb-xjc.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JAXB Library/release/modules/ext/jaxb-xjc.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/stax-api.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JAXB Library/release/modules/ext/stax-api.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/wstx-LICENSE:
--------------------------------------------------------------------------------
1 | This copy of Woodstox XML processor is licensed under the
2 | Lesser General Public License (LGPL), version 2.1 ("the License").
3 | See the License for details about distribution rights, and the
4 | specific rights regarding derivate works.
5 |
6 | You may obtain a copy of the License at:
7 |
8 | http://www.gnu.org/licenses/licenses.html
9 |
10 | A copy is also included in the downloadable source code package
11 | containing Woodstox, in file "LGPL2.1", under the same directory
12 | as this file.
13 |
14 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/release/modules/ext/wstx.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JAXB Library/release/modules/ext/wstx.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JAXB Library/src/javax/jaxb/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=JAXB Library
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project org.jboss.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: org.jboss
3 | OpenIDE-Module-Localizing-Bundle: org/jboss/Bundle.properties
4 | OpenIDE-Module-Specification-Version: 1.0
5 |
6 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | file.reference.byte-buddy-1.9.5.jar=release/modules/ext/byte-buddy-1.9.5.jar
2 | file.reference.hibernate-core-5.3.12.Final.jar=/home/krane/projekt/mywms/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/hibernate-core-5.3.12.Final.jar
3 | file.reference.javax.persistence-api-2.2.jar=release/modules/ext/javax.persistence-api-2.2.jar
4 | file.reference.jboss-client.jar=release/modules/ext/jboss-client.jar
5 | is.autoload=true
6 | javac.compilerargs=-Xlint:unchecked
7 | javac.source=1.6
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/byte-buddy-1.9.5.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/byte-buddy-1.9.5.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/hibernate-core-5.3.12.Final.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/hibernate-core-5.3.12.Final.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/javax.persistence-api-2.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/javax.persistence-api-2.2.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/jboss-client.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/JBoss EJB3 Library/release/modules/ext/jboss-client.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/JBoss EJB3 Library/src/org/jboss/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=JBoss EJB3 Library
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/TempWmicBatchFile.bat:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.common
3 | OpenIDE-Module-Layer: de/linogistix/common/layer.xml
4 | OpenIDE-Module-Install: de/linogistix/common/Installer.class
5 | OpenIDE-Module-Localizing-Bundle: de/linogistix/common/res/Bundle.properties
6 | OpenIDE-Module-Specification-Version: 2
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=252f04ef
2 | build.xml.script.CRC32=6c864a8b
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=252f04ef
7 | nbproject/build-impl.xml.script.CRC32=3424d227
8 | nbproject/build-impl.xml.stylesheet.CRC32=deb65f65
9 |
10 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.8
2 | javahelp.hs=common-hs.xml
3 | nbm.homepage=http://www.linogistix.com
4 | nbm.is.global=true
5 | nbm.module.author=Andreas Trautmann
6 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/de.linogistix.common.bobrowser.api.BOLookup:
--------------------------------------------------------------------------------
1 | de.linogistix.common.bobrowser.bo.BOLookupImpl
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/de.linogistix.common.bobrowser.api.BOQueryTopComponentLookup:
--------------------------------------------------------------------------------
1 | de.linogistix.common.bobrowser.query.BOQueryTopComponentFactory
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/de.linogistix.common.services.J2EEServiceLocator:
--------------------------------------------------------------------------------
1 | de.linogistix.common.services.J2EEServiceLocatorImpl
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/de.linogistix.common.userlogin.LoginService:
--------------------------------------------------------------------------------
1 | de.linogistix.common.userlogin.LoginServiceImpl
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/de.linogistix.common.util.StatusLineServer:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/META-INF/services/de.linogistix.common.util.StatusLineServer
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/org.netbeans.spi.sendopts.OptionProcessor:
--------------------------------------------------------------------------------
1 | de.linogistix.common.system.CommonOptions
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/org.openide.ErrorManager_disable:
--------------------------------------------------------------------------------
1 | de.linogistix.common.services.CustomErrorManagerImpl
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/org.openide.awt.StatusLineElementProvider:
--------------------------------------------------------------------------------
1 | de.linogistix.common.util.StatusLineServer
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/META-INF/services/org.openide.filesystems.FileSystem:
--------------------------------------------------------------------------------
1 | de.linogistix.common.services.MutableMultiFileSystem
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/bobrowser/browse/BOBrowserTopComponentWstcref.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/bobrowser/browse/ServiceCallerTopComponentWstcref.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/bobrowser/browse/bobrowser-helpset.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/bobrowser/browse/bolookup.properties:
--------------------------------------------------------------------------------
1 | # Sample ResourceBundle properties file
2 | org.mywms.model.User=de.linogistix.bobrowser.browse.BOUser
3 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/bobrowser/query/gui/object/QueryOperator.java:
--------------------------------------------------------------------------------
1 | /*
2 | *
3 | * Copyright (c) 2006 LinogistiX GmbH. All rights reserved.
4 | *
5 | *browse for licence information
6 | */
7 |
8 | package de.linogistix.common.bobrowser.query.gui.object;
9 |
10 | /**
11 | *
12 | *
13 | * @author trautm
14 | */
15 | public interface QueryOperator {
16 |
17 | QueryOperator getDefault();
18 |
19 | String getOperator();
20 |
21 | boolean isNOP();
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/common-helpset.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/exception/VetoException.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.exception;
9 |
10 | /**
11 | *
12 | * @author Jordan
13 | */
14 | public class VetoException extends Exception {
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/component/controls/AutoFilteringComboBoxListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.component.controls;
9 |
10 | /**
11 | *
12 | * @author krane
13 | */
14 | public interface AutoFilteringComboBoxListener {
15 | public void requestProposalData( String searchString );
16 | public boolean selectionChanged();
17 | }
18 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/component/controls/LOSImageSource.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011-2012 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 |
9 | package de.linogistix.common.gui.component.controls;
10 |
11 | import java.awt.image.BufferedImage;
12 |
13 | /**
14 | *
15 | * @author krane
16 | */
17 | public interface LOSImageSource {
18 |
19 | public BufferedImage getImage();
20 | public String getTitle();
21 | }
22 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/component/controls/LOSTextFieldListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.component.controls;
9 |
10 | /**
11 | *
12 | * @author krane
13 | */
14 | public interface LOSTextFieldListener {
15 | /**
16 | * Check the Input of a LOSTextField. It is called by the KeyListener.
17 | * @param value
18 | * @return
19 | */
20 | public boolean checkValue(String value, LosLabel label);
21 | }
22 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/component/controls/table/comboBox/CanEnable.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.component.controls.table.comboBox;
9 |
10 | public interface CanEnable {
11 |
12 | public void setEnabled(boolean isEnable);
13 | public boolean isEnabled();
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/component/view/LOSListViewSelectionListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.component.view;
9 |
10 | import de.linogistix.los.query.BODTO;
11 | import java.util.List;
12 |
13 | /**
14 | *
15 | * @author Jordan
16 | */
17 | public interface LOSListViewSelectionListener {
18 |
19 | public void selectionChanged(List selectedEntities);
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/listener/DocumentChangeListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.listener;
9 |
10 | import javax.swing.text.JTextComponent;
11 |
12 | /**
13 | *
14 | * @author artur
15 | */
16 | public interface DocumentChangeListener {
17 |
18 | public void onChanged(JTextComponent textField);
19 | }
20 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/listener/JMSListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.listener;
9 |
10 | /**
11 | *
12 | * @author artur
13 | */
14 | public interface JMSListener {
15 |
16 | public void onMessage();
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/listener/JMSListenerAdapter.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.listener;
9 |
10 | /**
11 | *
12 | * @author artur
13 | */
14 | public class JMSListenerAdapter implements JMSListener {
15 |
16 | public void onMessage() {
17 |
18 | }
19 |
20 |
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/listener/JMSListenerImpl.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.listener;
9 |
10 | /**
11 | *
12 | * @author artur
13 | */
14 | public class JMSListenerImpl {
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/gui/object/IconType.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.common.gui.object;
9 |
10 | /**
11 | *
12 | * @author artur
13 | */
14 | public enum IconType {
15 | INFORMATION,
16 | WARNING,
17 | ERROR,
18 | QUESTION,
19 | HELP,
20 | CREATE,
21 | UPDATE,
22 | RETRIEVE,
23 | DELETE,
24 | SAVE,
25 | RELOAD;
26 | }
27 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/onlinehelp.url:
--------------------------------------------------------------------------------
1 | http://wiki.linogistix.com/Wiki.jsp?page=LOS_Dokumentation
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Action.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Action22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Action22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Action32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Action32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Add.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Add22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Add22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Add32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Add32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/BOBrowser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/BOBrowser.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/BOBrowser22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/BOBrowser22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/BOBrowser32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/BOBrowser32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Client.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Client.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Client22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Client22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Client32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Client32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Create.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Create.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Create22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Create22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Create32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Create32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Delete.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Delete22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Delete22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Delete32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Delete32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Document.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Document22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Document22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Document32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Document32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Edit.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Edit22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Edit22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Edit32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Edit32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Erase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Erase.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Erase22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Erase22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Erase32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Erase32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Excel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Excel.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Excel32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Excel32.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Excel48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Excel48.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Exception.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Exception.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Exception22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Exception22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Exception32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Exception32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Info.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Info22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Info22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Info32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Info32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Lorry-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Lorry-icon.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Lorry-icon22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Lorry-icon22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Lorry-icon32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Lorry-icon32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Pdf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Pdf.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Pdf32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Pdf32.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Pdf48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Pdf48.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Question.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Question.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Question22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Question22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Question32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Question32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Redo.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Redo22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Redo22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Redo32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Redo32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Reload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Reload.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Reload22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Reload22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Reload32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Reload32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Remove.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Remove22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Remove22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Remove32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Remove32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Role.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Role.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Role22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Role22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Role32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Role32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Save.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Save22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Save22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Save32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Save32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Search.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Search22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Search22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Search32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Search32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Undo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Undo.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Undo22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Undo22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Undo32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Undo32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/User.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/User.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/User22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/User22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/User32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/User32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin32.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/UserLogin32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Warning16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Warning16.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Warning22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Warning22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Warning32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Warning32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Zone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Zone.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Zone22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Zone22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Zone32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/Zone32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/down.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/down22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/down22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/down32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/down32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-first.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-first.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-last.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-last.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-next.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/go-previous.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/help-browser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/help-browser.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/help-browser22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/help-browser22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/help-browser32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/help-browser32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/lockedstate.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/lockedstate.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/login.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/los.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/los.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/network-error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/network-error.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/network-idle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/network-idle.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/network-transmit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/network-transmit.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/showDetail16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/showDetail16.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/shutdown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/shutdown.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-asc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-asc.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-asc16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-asc16.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-desc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-desc.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-desc16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/sort-desc16.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/splash.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/splash.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/up.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/up22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/up22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/up32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/up32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/icon/warning.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/img/no-photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/res/img/no-photo.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Common/src/de/linogistix/common/util/LinogistiXTheme.java:
--------------------------------------------------------------------------------
1 | /*
2 | * To change this template, choose Tools | Templates
3 | * and open the template in the editor.
4 | */
5 |
6 | package de.linogistix.common.util;
7 |
8 | /**
9 | *
10 | * @author andreas
11 | */
12 | public class LinogistiXTheme {
13 |
14 | public static final float FONT_SIZE_HEADER = 24;
15 |
16 | public static final float FONT_SIZE_LARGE = 18;
17 | }
18 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Data Importer/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project de.linogistix.losdataimporter.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Data Importer/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.losdataimporter
3 | OpenIDE-Module-Layer: de/linogistix/losdataimporter/res/layer.xml
4 | OpenIDE-Module-Localizing-Bundle: de/linogistix/losdataimporter/res/Bundle.properties
5 | OpenIDE-Module-Specification-Version: 1.3
6 |
7 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Data Importer/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=2374e54d
2 | build.xml.script.CRC32=246f8a3b
3 | build.xml.stylesheet.CRC32=15ca8a54@2.76.1
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=2374e54d
7 | nbproject/build-impl.xml.script.CRC32=88d0e605
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.76.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Data Importer/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.6
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 | javahelp.hs=losdataimporter-hs.xml
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Data Importer/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Data Importer/src/de/linogistix/losdataimporter/res/BundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.losdataimporter.res;
9 |
10 | /**
11 | *
12 | * @author trautm
13 | */
14 | public class BundleResolver {
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Data Importer/src/de/linogistix/losdataimporter/res/losdataimporter-helpset.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.inventory
3 | OpenIDE-Module-Layer: de/linogistix/inventory/layer.xml
4 | OpenIDE-Module-Localizing-Bundle: de/linogistix/inventory/res/Bundle.properties
5 | OpenIDE-Module-Specification-Version: 1.3
6 |
7 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=97ebb726
2 | build.xml.script.CRC32=54a6ed6f
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=7170fd12
7 | nbproject/build-impl.xml.script.CRC32=6da8033c
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.76.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.6
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/InventoryBundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.inventory.res;
9 |
10 | /**
11 | *
12 | * @author Jordan
13 | */
14 | public class InventoryBundleResolver {
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/Action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/Action.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/Action22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/Action22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/Action32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/Action32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemData.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemData.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemData22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemData22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemData32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemData32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemUnit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemUnit.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemUnit22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemUnit22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemUnit32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/ItemUnit32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/LOSAdvice.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/LOSAdvice.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/LOSAdvice22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/LOSAdvice22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/LOSAdvice32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/LOSAdvice32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/OrderRequest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/OrderRequest.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/OrderRequest22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/OrderRequest22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/OrderRequest32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/OrderRequest32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/StockUnit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/StockUnit.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/StockUnit22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/StockUnit22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/StockUnit32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Inventory Browser/src/de/linogistix/inventory/res/icon/StockUnit32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.location
3 | OpenIDE-Module-Layer: de/linogistix/location/layer.xml
4 | OpenIDE-Module-Localizing-Bundle: de/linogistix/location/res/Bundle.properties
5 | OpenIDE-Module-Specification-Version: 1.3
6 |
7 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=384554f9
2 | build.xml.script.CRC32=d606b771
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=c5d76782
7 | nbproject/build-impl.xml.script.CRC32=5fc60d29
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.75.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.6
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Action.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Action.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Action22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Action22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Action32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Action32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Area.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Area.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Area22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Area22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Area32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Area32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/LocationIconResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.location.res.icon;
9 |
10 | /**
11 | *
12 | * @author Jordan
13 | */
14 | public class LocationIconResolver {
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/StorageLocation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/StorageLocation.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/StorageLocation22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/StorageLocation22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/StorageLocation32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/StorageLocation32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoad.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoad22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoad22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoad32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoad32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoadType.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoadType.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoadType22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoadType22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoadType32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/UnitLoadType32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Zone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Zone.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Zone22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Zone22.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Zone32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/icon/Zone32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/img/UnitLoad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Location Browser/src/de/linogistix/location/res/img/UnitLoad.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | AutoUpdate-Show-In-Client: true
3 | OpenIDE-Module: de.linogistix.wmsprocesses
4 | OpenIDE-Module-Layer: de/linogistix/wmsprocesses/layer.xml
5 | OpenIDE-Module-Localizing-Bundle: de/linogistix/wmsprocesses/res/Bundle.properties
6 | OpenIDE-Module-Specification-Version: 1.3
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=7339ce61
2 | build.xml.script.CRC32=72a348d8
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=433cef39
7 | nbproject/build-impl.xml.script.CRC32=6d0443c0
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.76.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.8
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 | javahelp.hs=wmsprocesses-hs.xml
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/logipedia.url:
--------------------------------------------------------------------------------
1 | http://www.logipedia.org/
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/CreateAvisTopComponentWstcref.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/GoodsReceiptTopComponentWstcref.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/OrderTopComponentWstcref.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/WMSProcessesBundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.wmsprocesses.res;
9 |
10 | /**
11 | *
12 | * @author artur
13 | */
14 | public class WMSProcessesBundleResolver {
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/ChangeAmountStockUnit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/ChangeAmountStockUnit.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/StockUnit.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/StockUnit.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/StockUnit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/StockUnit.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/TransferCarrier.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/TransferCarrier.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/TransferStockUnit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/TransferStockUnit.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/TransferUnitLoad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/TransferUnitLoad.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/UnitLoad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/res/img/UnitLoad.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Processes/src/de/linogistix/wmsprocesses/wmsprocesses-helpset.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/TempWmicBatchFile.bat:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project de.linogistix.reports.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.reports
3 | OpenIDE-Module-Layer: de/linogistix/reports/layer.xml
4 | OpenIDE-Module-Localizing-Bundle: de/linogistix/reports/res/Bundle.properties
5 | OpenIDE-Module-Specification-Version: 1.3
6 |
7 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=270408f3
2 | build.xml.script.CRC32=d5dee534
3 | build.xml.stylesheet.CRC32=15ca8a54@2.76.1
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=270408f3
7 | nbproject/build-impl.xml.script.CRC32=c0156c30
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.76.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.6
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/META-INF/services/de.linogistix.los.report.businessservice.ReportService:
--------------------------------------------------------------------------------
1 | de.linogistix.los.report.businessservice.ReportServiceBean
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/OverviewTopComponentWstcref.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/QueryStockUnitTopComponentWstcref.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/ReportsBundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.reports.res;
9 |
10 | /**
11 | *
12 | * @author trautm
13 | */
14 | public class ReportsBundleResolver {
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Excel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Excel.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Excel32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Excel32.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Excel48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Excel48.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Pdf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Pdf.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Pdf32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Pdf32.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Pdf48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/Pdf48.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/csv.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/csv.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/stock_chart-toggle-title.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/stock_chart-toggle-title.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/stock_chart-toggle-title32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/LOS Report/src/de/linogistix/reports/res/icon/stock_chart-toggle-title32.png
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Stocktaking Browser/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.stocktaking
3 | OpenIDE-Module-Layer: de/linogistix/stocktaking/layer.xml
4 | OpenIDE-Module-Localizing-Bundle: de/linogistix/stocktaking/res/Bundle.properties
5 | OpenIDE-Module-Specification-Version: 1.3
6 |
7 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Stocktaking Browser/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=d19879d6
2 | build.xml.script.CRC32=951ba53d
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=65df20e1
7 | nbproject/build-impl.xml.script.CRC32=cc30fa29
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.76.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Stocktaking Browser/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.6
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 | javahelp.hs=stocktaking-hs.xml
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Stocktaking Browser/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Stocktaking Browser/src/de/linogistix/stocktaking/res/StocktakingBundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2006 - 2010 LinogistiX GmbH
3 | *
4 | * www.linogistix.com
5 | *
6 | * Project myWMS-LOS
7 | */
8 | package de.linogistix.stocktaking.res;
9 |
10 |
11 | public class StocktakingBundleResolver {
12 |
13 | /** Creates a new instance of BundleResolver */
14 | public StocktakingBundleResolver() {
15 | }
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/LOS Stocktaking Browser/src/de/linogistix/stocktaking/stocktaking-helpset.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/TempWmicBatchFile.bat:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding.jnlp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | ${app.title}
6 | ${app.title} vendor
7 | ${app.name} application
8 |
9 |
10 | ${jnlp.permissions}
11 |
12 | ${jnlp.branding.jars}
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties:
--------------------------------------------------------------------------------
1 | currentVersion=LinogistiX LOS Client {0}
2 | LBL_splash_window_title=Starting LinogistiX LOS Client
3 | SPLASH_HEIGHT=24
4 | SPLASH_WIDTH=64
5 | SplashProgressBarBounds=0,22,60,2
6 | SplashProgressBarColor=0x404040
7 | SplashRunningTextBounds=0,4,7,2
8 | SplashRunningTextColor=0x0
9 | SplashRunningTextFontSize=0
10 | SplashShowProgressBar=true
11 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/frame.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/frame.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/frame32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/frame32.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/frame48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/frame48.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/splash.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/branding/core/core.jar/org/netbeans/core/startup/splash.gif
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties:
--------------------------------------------------------------------------------
1 | CTL_MainWindow_Title=LinogistiX LOS Client {0}
2 | CTL_MainWindow_Title_No_Project=LinogistiX LOS Client {0}
3 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/branding/modules/org-netbeans-core.jar/org/netbeans/core/ui/Bundle.properties:
--------------------------------------------------------------------------------
1 | LBL_ProductInformation=LinogistiX LOS Client
2 | LBL_Copyright=Copyright © 2006-2010 LinogistiX GmbH. Please visit http\://www.linogistix.com.
3 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project de.linogistix.ireport.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.ireport
3 | OpenIDE-Module-Localizing-Bundle: de/linogistix/ireport/Bundle.properties
4 | OpenIDE-Module-Specification-Version: 1.0
5 |
6 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | file.reference.barbecue-1.5-beta1.jar=release/modules/ext/barbecue-1.5-beta1.jar
2 | file.reference.iText-2.1.7.jar=release/modules/ext/iText-2.1.7.jar
3 | file.reference.jdt-compiler-3.1.1.jar=release/modules/ext/jdt-compiler-3.1.1.jar
4 | file.reference.poi-3.7-20101029.jar=release/modules/ext/poi-3.7-20101029.jar
5 | is.autoload=true
6 | javac.compilerargs=-Xlint -Xlint:-serial
7 | javac.source=1.5
8 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/release/modules/ext/barbecue-1.5-beta1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/iReport Library/release/modules/ext/barbecue-1.5-beta1.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/release/modules/ext/iText-2.1.7.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/iReport Library/release/modules/ext/iText-2.1.7.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/release/modules/ext/jasperreports-4.6.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/iReport Library/release/modules/ext/jasperreports-4.6.0.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/release/modules/ext/jdt-compiler-3.1.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/iReport Library/release/modules/ext/jdt-compiler-3.1.1.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/release/modules/ext/poi-3.7-20101029.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/iReport Library/release/modules/ext/poi-3.7-20101029.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/iReport Library/src/de/linogistix/ireport/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=iReport Library
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/myWMS EJB-Library/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: org.mywms
3 | OpenIDE-Module-Localizing-Bundle: org/mywms/Bundle.properties
4 | OpenIDE-Module-Specification-Version: 1.0
5 |
6 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/myWMS EJB-Library/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=36006dd7
2 | build.xml.script.CRC32=afc501ba
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=ae64a5c1
7 | nbproject/build-impl.xml.script.CRC32=4dc35c19
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.76.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/myWMS EJB-Library/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | is.autoload=true
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 | javac.source=1.5
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/myWMS EJB-Library/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/myWMS EJB-Library/src/org/mywms/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=myWMS EJB-Library
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/nbproject/project.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | org.netbeans.modules.apisupport.project.suite
4 |
5 |
6 | los.clientsuite
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swinglayout/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project org.jdesktop.layout.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swinglayout/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | AutoUpdate-Show-In-Client: true
3 | OpenIDE-Module: org.jdesktop.layout
4 | OpenIDE-Module-Localizing-Bundle: org/jdesktop/layout/Bundle.properties
5 | OpenIDE-Module-Specification-Version: 1.0
6 |
7 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swinglayout/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=a670f25b
2 | build.xml.script.CRC32=c52e2d2f
3 | build.xml.stylesheet.CRC32=15ca8a54@2.75.1
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=a670f25b
7 | nbproject/build-impl.xml.script.CRC32=f0bc94a4
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.75.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swinglayout/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | file.reference.swing-layout-1.0.4.jar=release/modules/ext/swing-layout-1.0.4.jar
2 | is.autoload=true
3 | javac.source=1.6
4 | javac.compilerargs=-Xlint -Xlint:-serial
5 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swinglayout/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swinglayout/release/modules/ext/swing-layout-1.0.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/swinglayout/release/modules/ext/swing-layout-1.0.4.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swinglayout/src/org/jdesktop/layout/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=swinglayout
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swingx Library/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Builds, tests, and runs the project org.jdesktop.swingx.
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swingx Library/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: org.jdesktop.swingx
3 | OpenIDE-Module-Localizing-Bundle: org/jdesktop/swingx/Bundle.properties
4 | OpenIDE-Module-Specification-Version: 1.0
5 |
6 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swingx Library/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=e1676443
2 | build.xml.script.CRC32=57eb40d4
3 | build.xml.stylesheet.CRC32=15ca8a54@2.80
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=e1676443
7 | nbproject/build-impl.xml.script.CRC32=c3ddb3f3
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.80
9 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swingx Library/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | is.autoload=true
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 | javac.source=1.5
4 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swingx Library/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swingx Library/release/modules/ext/swingx-0.8.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.clientsuite/swingx Library/release/modules/ext/swingx-0.8.0.jar
--------------------------------------------------------------------------------
/rich.client/los.clientsuite/swingx Library/src/org/jdesktop/swingx/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=swingx Library
2 |
--------------------------------------------------------------------------------
/rich.client/los.reference/Project EJB-Library/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.los.reference.ejb
3 | OpenIDE-Module-Localizing-Bundle: de/linogistix/los/reference/ejb/Bundle.properties
4 | OpenIDE-Module-Specification-Version: 1.0
5 |
6 |
--------------------------------------------------------------------------------
/rich.client/los.reference/Project EJB-Library/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=fe003cac
2 | build.xml.script.CRC32=55cfbecc
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=81f07e6b
7 | nbproject/build-impl.xml.script.CRC32=d040cfc6
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.80
9 |
--------------------------------------------------------------------------------
/rich.client/los.reference/Project EJB-Library/nbproject/platform.properties:
--------------------------------------------------------------------------------
1 | branding.token=los_reference
2 | cluster.path=\
3 | ${nbplatform.active.dir}/ide:\
4 | ${nbplatform.active.dir}/linogistix_clientsuite:\
5 | ${nbplatform.active.dir}/nb:\
6 | ${nbplatform.active.dir}/platform
7 | disabled.modules=
8 | nbjdk.active=default
9 | nbplatform.active=LinogistiX_LOS_Client_200912041610
10 |
--------------------------------------------------------------------------------
/rich.client/los.reference/Project EJB-Library/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | is.autoload=true
2 |
--------------------------------------------------------------------------------
/rich.client/los.reference/Project EJB-Library/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.reference/Project EJB-Library/src/de/linogistix/los/reference/ejb/Bundle.properties:
--------------------------------------------------------------------------------
1 | OpenIDE-Module-Name=Project EJB-Library
2 |
--------------------------------------------------------------------------------
/rich.client/los.reference/branding.jnlp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | ${app.title}
6 | LinogistiX GmbH
7 | ${app.name} application
8 |
9 |
10 | ${jnlp.permissions}
11 |
12 | ${jnlp.branding.jars}
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties:
--------------------------------------------------------------------------------
1 | currentVersion=myWMS-LOS Client
2 | LBL_splash_window_title=Starting myWMS-LOS Client
3 | SPLASH_HEIGHT=24
4 | SPLASH_WIDTH=64
5 | SplashProgressBarBounds=0,24,64,1
6 | SplashProgressBarColor=0x404040
7 | SplashRunningTextBounds=0,22,67,2
8 | SplashRunningTextColor=0x0
9 | SplashRunningTextFontSize=0
10 |
--------------------------------------------------------------------------------
/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/frame.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/frame.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/frame32.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/frame32.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/frame48.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/frame48.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/splash.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/branding/core/core.jar/org/netbeans/core/startup/splash.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties:
--------------------------------------------------------------------------------
1 | CTL_MainWindow_Title=myWMS-LOS Client
2 | CTL_MainWindow_Title_No_Project=myWMS-LOS Client
3 |
--------------------------------------------------------------------------------
/rich.client/los.reference/los.reference/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.reference
3 | OpenIDE-Module-Layer: de/linogistix/reference/layer.xml
4 | OpenIDE-Module-Install: de/linogistix/reference/Installer.class
5 | OpenIDE-Module-Localizing-Bundle: de/linogistix/reference/res/Bundle.properties
6 | OpenIDE-Module-Specification-Version: 2
7 |
8 |
--------------------------------------------------------------------------------
/rich.client/los.reference/los.reference/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=ba397630
2 | build.xml.script.CRC32=90021bb5
3 | build.xml.stylesheet.CRC32=79c3b980
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=c1b89b62
7 | nbproject/build-impl.xml.script.CRC32=0ce4d514
8 | nbproject/build-impl.xml.stylesheet.CRC32=49aa68b0@2.80
9 |
--------------------------------------------------------------------------------
/rich.client/los.reference/los.reference/nbproject/platform.properties:
--------------------------------------------------------------------------------
1 | branding.token=los_reference
2 | cluster.path=\
3 | ${nbplatform.active.dir}/ide:\
4 | ${nbplatform.active.dir}/linogistix_clientsuite:\
5 | ${nbplatform.active.dir}/nb:\
6 | ${nbplatform.active.dir}/platform
7 | disabled.modules=
8 | nbjdk.active=default
9 | nbplatform.active=LinogistiX_LOS_Client_200912041610
10 |
--------------------------------------------------------------------------------
/rich.client/los.reference/los.reference/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | javac.source=1.6
2 | javac.compilerargs=-Xlint -Xlint:-serial
3 |
--------------------------------------------------------------------------------
/rich.client/los.reference/los.reference/nbproject/suite.properties:
--------------------------------------------------------------------------------
1 | suite.dir=${basedir}/..
2 |
--------------------------------------------------------------------------------
/rich.client/los.reference/los.reference/src/de/linogistix/reference/about/about.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/los.reference/src/de/linogistix/reference/about/about.jpg
--------------------------------------------------------------------------------
/rich.client/los.reference/los.reference/src/de/linogistix/reference/res/ReferenceBundleResolver.java:
--------------------------------------------------------------------------------
1 | /*
2 | * To change this template, choose Tools | Templates
3 | * and open the template in the editor.
4 | */
5 |
6 | package de.linogistix.reference.res;
7 |
8 | /**
9 | *
10 | * @author krane
11 | */
12 | public class ReferenceBundleResolver {
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/rich.client/los.reference/nbproject/platform.properties:
--------------------------------------------------------------------------------
1 | branding.token=los_reference
2 | cluster.path=\
3 | ${nbplatform.active.dir}/ide:\
4 | ${nbplatform.active.dir}/linogistix_clientsuite:\
5 | ${nbplatform.active.dir}/platform
6 | disabled.modules=\
7 | org.objectweb.asm,\
8 | org.objectweb.asm.commons,\
9 | org.objectweb.asm.tree
10 | nbjdk.active=default
11 | nbplatform.active=LinogistiX_LOS_Client_12.0-631bd69cd6112b1cc4c892c24e3e605b1ba04241
12 |
--------------------------------------------------------------------------------
/rich.client/los.reference/nbproject/project.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | org.netbeans.modules.apisupport.project.suite
4 |
5 |
6 | los.reference
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/l10n.list:
--------------------------------------------------------------------------------
1 | # diff
2 | read global
3 | ${l10n-module}/release/docs/images/*.png
4 | ${l10n-module}/release/docs/images/*.gif
5 | ${l10n-module}/release/docs/*.html
6 |
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/manifest.mf:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | OpenIDE-Module: de.linogistix.reference.welcome
3 | OpenIDE-Module-Layer: de/linogistix/reference/welcome/resources/layer.xml
4 | OpenIDE-Module-Install: de/linogistix/reference/welcome/Installer.class
5 | OpenIDE-Module-Localizing-Bundle: de/linogistix/reference/welcome/Bundle.properties
6 | OpenIDE-Module-Specification-Version: 1.8
7 |
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=3d78dbe4
2 | build.xml.script.CRC32=030ad919
3 | build.xml.stylesheet.CRC32=a56c6a5b@2.67.1
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=06621a30
7 | nbproject/build-impl.xml.script.CRC32=7d0899d9
8 | nbproject/build-impl.xml.stylesheet.CRC32=238281d1@2.67.1
9 |
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | #javac.source=1.6
2 | #javac.compilerargs=-Xlint -Xlint:-serial
3 |
4 | # Kopiert aus Netbeans welocme Projekt:
5 | javac.compilerargs=-Xlint:unchecked
6 | javac.source=1.6
7 |
8 | test.config.stableBTD.includes=**/*Test.class
9 | test.config.stableBTD.excludes=\
10 | **/FeedbackSurveyTest.class
11 |
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/background.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/banner-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/banner-left.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/banner-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/banner-right.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/blue.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/circle1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/circle1.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/circle2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/circle2.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/circle3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/circle3.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/circle4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/circle4.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/circle5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/circle5.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/circle6.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/circle6.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/down-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/down-left.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/down-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/down-right.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/spacer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/spacer.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/up-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/up-left.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/release/docs/images/up-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/release/docs/images/up-right.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/Welcome.wstcref:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/broken_image.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/broken_image.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/btn_center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/btn_center.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/btn_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/btn_left.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/btn_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/btn_right.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/content_banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/content_banner.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/content_banner_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/content_banner_dark.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/linogistix_logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/linogistix_logo.jpg
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/mail.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/mail.gif
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/mywms_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/mywms_logo.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/sel_btn_center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/sel_btn_center.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/sel_btn_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/sel_btn_left.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/sel_btn_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/sel_btn_right.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_rollover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_rollover.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_rollover_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_rollover_dark.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_selected.png
--------------------------------------------------------------------------------
/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_selected_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wms2/mywms/db77e19048ed57913fc71f8afbafec8b1e96e3a3/rich.client/los.reference/welcome/src/de/linogistix/reference/welcome/resources/tab_selected_dark.png
--------------------------------------------------------------------------------