Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project structure analysis #1

Open
molequetu opened this issue Nov 29, 2018 · 0 comments
Open

Project structure analysis #1

molequetu opened this issue Nov 29, 2018 · 0 comments
Assignees
Labels
Projects

Comments

@molequetu
Copy link
Owner

molequetu commented Nov 29, 2018

Space management

Warehouse : A physical space where we put inside items.

  • items, located in bins
  • bins, where items are located
  • halls, where are bins located
  • actions, importing or exporting items from the bin

Warehouse Management System (WMS)

Principle

We have to know where(1) we have stored(3) (in which exact place) which item and how many of them(quantity)(4)

  1. item, a thing that is going to be stored in the bin, consist's of a id(usually its bar-code, char(13)), name, description
  2. where the item has been stored, referred as bin , so as a result we have to map the space with bins, consist's of id(usually identified by a bar-code, char(13)), address, name, description
  3. record or transaction of importing, exporting, referred as action, consists of id(uuid), type(Import, Export), itemId(char13), binId(char13), userId, quantity(int). we have to check when type is import if there is a quantity to export, else rollback.

Functionalities

  • crud operations for the basic entities, e.g item, bin, hall
  • service for finding an item (where it is located), returns bin
  • service for the contents of a bin, where is it and what items does it have
@molequetu molequetu self-assigned this Nov 29, 2018
@molequetu molequetu added the Epic label Nov 29, 2018
@molequetu molequetu added this to To do in depo via automation Nov 29, 2018
@molequetu molequetu moved this from To do to In progress in depo Jan 17, 2019
@molequetu molequetu moved this from In progress to To do in depo Jan 17, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
depo
  
To do
Development

No branches or pull requests

1 participant