From 4b2825b0e4187bef141c289e0430fe8f314e6997 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Fri, 18 Feb 2022 01:58:27 +0100 Subject: [PATCH] add a system overview - what is out there --- docs/systems.md | 29 +++++++++++++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 30 insertions(+) create mode 100644 docs/systems.md diff --git a/docs/systems.md b/docs/systems.md new file mode 100644 index 0000000..ad3a995 --- /dev/null +++ b/docs/systems.md @@ -0,0 +1,29 @@ +--- +title: Management Systems +--- + +## Systems for managing things + +There are different systems in the industry for the management of getting, storing and making things. But what are they for and what do their acronyms mean? + + +### Inventory management *(IMS)* +Evolves around manufacturing of parts out of other parts. It keeps track of stock, part origin, orders, shelf live and more. + +### Part library management *(PLM)* +Keeps track of BOMs, part variants, possible substitutions, versions, IPNs and further part parameters. +PLM can also mean product lifecycle management – those systems manage all stages from design through manufacturing up to customer support and recycling. + + +**InvenTree** is mainly an **IMS**, it also has aspects of a **PLM** integrated. +A similar system is Partkeepr (seems mostly inactive - there is a 3rd party importer). + +### Asset management *(AM)* +Manages many unique items, which need tracking per part and are assignable to users / groups / locations. These systems often include features like item states, refurbishing / maintenance / reservation, or request-flows. +Often these systems are used for IT-Hardware (then they are called *ITAM*). +A good open-source example would be snipe-it. + +### Enterprise resource planning *(ERP)* +Is the centre of your business. It manages timesheets, warehousing, finances (prices, taxes, …), customer relations and more. InvenTree covers parts of this but aims to keep an intuitive and simple user interface. +Popular, fully fledged ERPs are ERPnext or odoo. + diff --git a/mkdocs.yml b/mkdocs.yml index c8f3f98..8146dab 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -50,6 +50,7 @@ nav: - Contribute: contribute.md - Credits: credits.md - Privacy: privacy.md + - Management Systems: systems.md - Install: - Introduction: start/intro.md - Configuration: start/config.md