Food-coop warehouse management software.
Fronted with react.
This project was bootstrapped with
Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
A food-coop warehouse contains defined amounts (Menge) of goods (Produkt), largely foodstuff. Each Produkt is of a specific Kategorie (literally category), e.g. meat or vegetable. The current stock (istLagerbestand) of each Produkt and the current target stock (sollLagerbestand) can be set by the buyer (Einkäufer). The Einkäufer can also define new amounts (Menge, e.g. kg, liters), new kinds of Produkt and new kinds of Kategorie of goods.
Produkt
Product: Individual products of wares in the warehouse. Products are always preservable like noodles.
Frisch
Fresh: Perishable products like vegetables, orderd at a local farmer.
Frischbestand
Avaible Fresh
Frischbestellung
Members can order their weekly amount of Fresh ware in a Frischbestellung.
Brot
Bread: Priducts like Baguette, that can be ordered at a local bakery
Brotbestand
Avaible Breads
Brotbestellung
Members can order their weekly amount of Bread in a Brotbestellung.
Menge
Amount: The specific count, weight or volume (depending on the product in
question), that the Produkt is measured in.
Kategorie
Specific category of Produkt. For example, the warehouse might be sorted into
meat, vegetables, noodles, grains, etc.
Lagerbestand
The istLagerbestand amount of a Produkt in the warehouse.
The sollLagerbestand amount of a Produkt in the warehouse.
Deadline
A Deadline borders the window of time in which a Frischbestellung or a Brotbestellung can be ordered.
Gebinde
A local farmer can only deliver products in a determined size. The size is called Gebinde.
Rollen
Roles of food-coop members. Includes Mitglied and Einkäufer. Roles currently outside
project-scope include Ladendienst.
Mitglied
Food-coop members. Members or Mitglieder get products through the food-coop store. Stock
is bought collectively from farmers and wholesalers.
Einkäufer
Buyer: Food-coop member that keeps the warehouse stocked by buying from
farmers and wholesaler.
Ansicht Lagerbestand
A complete view of the all stock for the convenience of the buyer (Einkäufer).
This REST-API provides the current stock (istLagerbestand) and target stock
(sollLagerbestand) of each product (Produkt) sorted by categories
(Kategorie) and product via JSON. This PWA populates the table with this information.
Categories can be collapsed to provide simplified browsing.
Externe Bestellungsliste
Buyer (Einkäufer) gets a list of all products(Produkte) with current stock levels (istLagerbestand) below target stock levels (sollLagerbestand), and the amount (Menge) that is missing. The backend provides the information via JSON. This PWA turns it into a pdf.
Bestellung
Mitglied can order products of a list of Frischbestand or a list of Breadbestand.
Gebindemanagement The Frischbestellungen of all Mitglieder is summed up and a proposal for possible Gebinde is calculated.