An open API service indexing awesome lists of open source software.

https://github.com/openwms/org.openwms.wms.receiving

WMS Receiving Service
https://github.com/openwms/org.openwms.wms.receiving

asn microservices openwms receipts receiving spring-boot spring-cloud springboot wms

Last synced: 3 months ago
JSON representation

WMS Receiving Service

Awesome Lists containing this project

README

        

# Purpose
The purpose of the Receiving service is to handle goods receipts. It offers an API to create inbound orders, so called
Receiving Orders (expected receipts). These kind of receipts are announced before the actual goods receive at the
warehouse. Blind receipts are supported as well. Those don't require any announcements and allow to capture (or record)
goods that are not expected to receive.

It allows to capture (record) quantities of items (`PackagingUnits`) or whole `TransportUnits`

# Resources
[![Build status](https://github.com/openwms/org.openwms.wms.receiving/actions/workflows/master-build.yml/badge.svg)](https://github.com/openwms/org.openwms.wms.receiving/actions/workflows/master-build.yml)
[![Quality](https://sonarcloud.io/api/project_badges/measure?project=org.openwms:org.openwms.wms.receiving.lib&metric=alert_status)](https://sonarcloud.io/dashboard?id=org.openwms:org.openwms.wms.receiving.lib)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](./LICENSE)
[![Docker pulls](https://img.shields.io/docker/pulls/openwms/org.openwms.wms.receiving)](https://hub.docker.com/r/openwms/org.openwms.wms.receiving)
[![Join the chat at https://gitter.im/openwms/org.openwms](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/openwms/org.openwms?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

**Find further Documentation on [Microservice Website](https://openwms.github.io/org.openwms.wms.receiving)**

# Module Structure
The Receiving Service contains functional modules, each with its own API and functionality.

![MavenDependencies](./src/site/resources/images/maven-deps.png)

# Build
The service can be built and started locally without any other services.

Build the code:
```
$ ./mvnw package
```

# Run Standalone
Run in standalone mode:
```
$ java -jar target/openwms-wms-receiving-exec.jar
```

# Run Distributed
Or additionally run in a distributed environment with an already running Service Registry, Configuration Server and a RabbitMQ broker:
```
$ java -Dspring.profiles.active=ASYNCHRONOUS,DISTRIBUTED,DEMO -jar target/openwms-wms-receiving-exec.jar
```