diff --git a/docs/docs/part/consumable.md b/docs/docs/part/consumable.md new file mode 100644 index 0000000000..c2930f3cf4 --- /dev/null +++ b/docs/docs/part/consumable.md @@ -0,0 +1,31 @@ +--- +title: Consumable Parts +--- + +## Consumable Parts + +A *Consumable* part is one which is generally used up, or expended, during a build or other process, rather than being tracked and allocated as a discrete item. + +Consumable parts can be used to represent things such as: + +- Glue or adhesive +- Solder +- Cleaning fluid +- Fasteners or other low-value hardware +- Other general workshop supplies + +Marking a part as consumable is intended to help distinguish these types of supplies from other parts in the inventory, making it easier to filter and report on "real" stock items versus general consumables. + +### Stock Items + +Consumable parts can have stock items associated with them, the same as any other part. Stock levels for consumable parts can be tracked and managed as normal. + +### Bills of Material + +Consumable parts can be added as a subcomponent to the [Bills of Material](../manufacturing/bom.md) for an assembled part, in the same way as any other component. + +### Build Orders + +Unlike a regular component, a consumable part is not allocated to (or consumed by) a [Build Order](../manufacturing/build.md). When a build order is completed, stock quantities for consumable parts are not adjusted. + +If stock levels for a consumable part need to be updated to reflect usage during a build, this must be done manually. diff --git a/docs/docs/part/index.md b/docs/docs/part/index.md index 1c7d048268..c6fcd2ab89 100644 --- a/docs/docs/part/index.md +++ b/docs/docs/part/index.md @@ -87,6 +87,9 @@ A [Purchase Order](../purchasing/purchase_order.md) allows parts to be ordered f If a part is designated as *Salable* it can be sold to external customers. Setting this flag allows parts to be added to sales orders. +### Consumable + +A *Consumable* part is one which is generally used up during a build or other process, rather than being tracked and allocated as a discrete item. Refer to the [consumable parts documentation](./consumable.md) for more information. ## Locked Parts diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index ca20e704c7..a5fefc448d 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -130,6 +130,7 @@ nav: - Parts: part/index.md - Creating Parts: part/create.md - Virtual Parts: part/virtual.md + - Consumable Parts: part/consumable.md - Part Views: part/views.md - Tracking: part/trackable.md - Revisions: part/revision.md