From 4b2825b0e4187bef141c289e0430fe8f314e6997 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Fri, 18 Feb 2022 01:58:27 +0100 Subject: [PATCH 1/4] 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 From 6a5feb03ea1575889f675e7388e0e535f0d44a71 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Fri, 18 Feb 2022 02:04:17 +0100 Subject: [PATCH 2/4] add links --- docs/systems.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/systems.md b/docs/systems.md index ad3a995..89e1f50 100644 --- a/docs/systems.md +++ b/docs/systems.md @@ -16,14 +16,14 @@ PLM can also mean product lifecycle management – those systems manage all stag **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). +A similar system is [Partkeepr](https://partkeepr.org/) (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. +A good open-source example would be [Snipe-IT](https://snipeitapp.com/). ### 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. +Popular, fully fledged ERPs are [ERPNext](https://erpnext.com/) or [odoo](https://www.odoo.com). From 10f4412c2970faa951ab516c8807bcbc3f36a4c7 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Fri, 18 Feb 2022 02:14:30 +0100 Subject: [PATCH 3/4] simpler language --- docs/systems.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/systems.md b/docs/systems.md index 89e1f50..f6d16ea 100644 --- a/docs/systems.md +++ b/docs/systems.md @@ -2,9 +2,9 @@ title: Management Systems --- -## Systems for managing things +## Systems for managing parts -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? +There are different systems in the industry for the management of getting, storing and making parts. An overview what they are for and what the acronyms mean. ### Inventory management *(IMS)* From 9d8426fd764c7b7b45a87769309a8bf4b43f2367 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sun, 20 Feb 2022 15:48:35 +0100 Subject: [PATCH 4/4] rename heading --- docs/{systems.md => terminology.md} | 4 ++-- mkdocs.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename docs/{systems.md => terminology.md} (96%) diff --git a/docs/systems.md b/docs/terminology.md similarity index 96% rename from docs/systems.md rename to docs/terminology.md index f6d16ea..e7201c2 100644 --- a/docs/systems.md +++ b/docs/terminology.md @@ -1,8 +1,8 @@ --- -title: Management Systems +title: Terminology --- -## Systems for managing parts +## Terminology There are different systems in the industry for the management of getting, storing and making parts. An overview what they are for and what the acronyms mean. diff --git a/mkdocs.yml b/mkdocs.yml index 8146dab..e63dd91 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -50,7 +50,7 @@ nav: - Contribute: contribute.md - Credits: credits.md - Privacy: privacy.md - - Management Systems: systems.md + - Terminology: terminology.md - Install: - Introduction: start/intro.md - Configuration: start/config.md