Zone picking
It is currently possible to use our first version of zone picking on our platform. On this page all available options are described.
Creating zones
By using POST
call at /api/facilities/:facilityId/zones
it is possible to create zones easily for each facility:
Assigning users to a facility
By using POST
or PATCH
call at /api/users/:userId
each user can carry at least one zone. After a zone is created, it can be assigned to any available user. Assigned zones must be given in context of assigned facilities:
Assigning storage locations to zones
For a user to be able to pick products from a specific zone, those products need to be linked to that zone. Currently, this linkage can only be achieved through the use of storage locations that have an associated zone. Consequently, products located in these storage areas will be automatically assigned to the respective zone.
By using PUT
or POST
at /api/facilities/:facilityId/storagelocations/:storageLocationId
the zone can be assigned to a storage location.
How to create a picking task with products in zones
Upon the zone's creation and its assignment to both a zone and storage locations, it becomes feasible to generate picking tasks that can be executed by users assigned to that particular zone.
This can be achieved by creating a picking task that includes a tenantArticleId
associated with a storage location that has a designated zone. As a result, this newly created picking task will be automatically allocated to that specific zone.
Last updated