mirror of
https://github.com/inventree/inventree-docs.git
synced 2025-04-28 05:36:46 +00:00
Completed BOM documentation, removed meta-tag 'layout' from all markdown pages, removed title and edit button from each page (more space for content)
This commit is contained in:
parent
4c9d267416
commit
fb41a844de
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: InvenTree Admin Interface
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Admin Interface
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Exporting Data
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Exporting Data
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Importing Data
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Importing Data
|
||||
|
BIN
docs/assets/images/build/bom_add_item.png
Normal file
BIN
docs/assets/images/build/bom_add_item.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 126 KiB |
BIN
docs/assets/images/build/bom_invalid.png
Normal file
BIN
docs/assets/images/build/bom_invalid.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
BIN
docs/assets/images/build/bom_select_fields.png
Normal file
BIN
docs/assets/images/build/bom_select_fields.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
docs/assets/images/build/bom_select_parts.png
Normal file
BIN
docs/assets/images/build/bom_select_parts.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
BIN
docs/assets/images/build/bom_upload_file.png
Normal file
BIN
docs/assets/images/build/bom_upload_file.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 154 KiB |
BIN
docs/assets/images/build/bom_valid.png
Normal file
BIN
docs/assets/images/build/bom_valid.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 68 KiB |
81
docs/build/bom.md
vendored
81
docs/build/bom.md
vendored
@ -1,11 +1,84 @@
|
||||
---
|
||||
title: Bill of Materials
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Bill of Materials
|
||||
|
||||
A Bill of Materials (BOM) defines the list of component parts required to make an assembly.
|
||||
A Bill of Materials (BOM) defines the list of component parts required to make an assembly, [create builds](/build/build) and allocate inventory.
|
||||
|
||||
!!! missing "TODO"
|
||||
This section requires further work
|
||||
### Add BOM Item
|
||||
|
||||
To manually add a BOM item, navigate to the part/assembly detail page then click on the "BOM" tab. On top of the tab view, click on the :fontawesome-solid-edit: icon then, after the page reloads, click on the :fontawesome-solid-plus-circle: icon.
|
||||
|
||||
The `Create BOM Item` form will be displayed:
|
||||
{% with id="bom_add_item", url="build/bom_add_item.png", description="Create BOM Item Form" %}
|
||||
{% include 'img.html' %}
|
||||
{% endwith %}
|
||||
|
||||
Fill-out the `Quantity` (required), `Reference`, `Overage` and `Note` (optional) fields then click on the "Submit" button to add the BOM item to this part's BOM.
|
||||
|
||||
### Upload BOM
|
||||
|
||||
Uploading a BOM to InvenTree is a three steps process:
|
||||
|
||||
1. upload BOM file
|
||||
0. select matching InvenTree fields
|
||||
0. select matching InvenTree parts.
|
||||
|
||||
To upload a BOM file, navigate to the part/assembly detail page then click on the "BOM" tab. On top of the tab view, click on the :fontawesome-solid-edit: icon then, after the page reloads, click on the :fontawesome-solid-file-upload: icon.
|
||||
|
||||
The following view will load:
|
||||
{% with id="bom_upload_file", url="build/bom_upload_file.png", description="BOM Upload View" %}
|
||||
{% include 'img.html' %}
|
||||
{% endwith %}
|
||||
|
||||
#### Upload BOM File
|
||||
|
||||
Click on the "Choose File" button, select your BOM file when prompted then click on the "Upload File" button.
|
||||
|
||||
!!! info "BOM Formats"
|
||||
The following BOM file formats are supported: CSV, TSV, XLS, XLSX, JSON and YAML
|
||||
|
||||
#### Select Fields
|
||||
|
||||
Once the BOM file is uploaded, the following view will load:
|
||||
{% with id="bom_select_fields", url="build/bom_select_fields.png", description="Select Fields View" %}
|
||||
{% include 'img.html' %}
|
||||
{% endwith %}
|
||||
|
||||
InvenTree will attempt to automatically match the BOM file columns with InvenTree part fields. `Part_Name` is a **required** field for the upload process and moving on to the next step. Sprcifying the `Part_IPN` field matching is very powerful as it allows to create direct pointers to InvenTree parts.
|
||||
|
||||
Once you have selected the corresponding InvenTree fields, click on the "Submit Selections" button to move on to the next step.
|
||||
|
||||
#### Select Parts
|
||||
|
||||
Once the BOM file columns and InvenTree fields are correctly matched, the following view will load:
|
||||
{% with id="bom_select_parts", url="build/bom_select_parts.png", description="Select Parts View" %}
|
||||
{% include 'img.html' %}
|
||||
{% endwith %}
|
||||
|
||||
InvenTree automatically tries to match parts from the BOM file with parts in its database. For parts that are found in InvenTree's database, the `Select Part` field selection will automatically point to the matching database part.
|
||||
|
||||
!!! info "Create New Part"
|
||||
The :fontawesome-solid-plus: icon in the `Select Part` column let's you load the `Create New Part` form which allows you to create an InvenTree part during the BOM upload process.
|
||||
|
||||
In this view, you can also edit the parts `Reference` and `Quantity` fields.
|
||||
|
||||
Once you have selected the corresponding InvenTree parts, click on the "Submit BOM" button to complete the BOM upload process.
|
||||
|
||||
### Validate BOM
|
||||
|
||||
After [adding BOM items manually](#add-bom-item) or [uploading a BOM file](#upload-bom), you should see the following view:
|
||||
{% with id="bom_invalid", url="build/bom_invalid.png", description="Invalid BOM View" %}
|
||||
{% include 'img.html' %}
|
||||
{% endwith %}
|
||||
|
||||
The first message in the red box `The BOM for PCBA TEST has changed, and must be validated.` points out that InvenTree BOM needs to be "validated". BOM validation is a way to ensure a BOM does not have duplicate items/parts.
|
||||
|
||||
To process with BOM validation, click on the :fontawesome-solid-clipboard-check: icon and the `Validate BOM` form will be displayed. Click one the "Validate" switch then click on the "Submit" button.
|
||||
|
||||
Voilà, this Bill or Materials is validated :material-emoticon-cool:
|
||||
|
||||
{% with id="bom_valid", url="build/bom_valid.png", description="Valid BOM View" %}
|
||||
{% include 'img.html' %}
|
||||
{% endwith %}
|
||||
|
26
docs/build/build.md
vendored
26
docs/build/build.md
vendored
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Build
|
||||
layout: page
|
||||
title: Build Parts
|
||||
---
|
||||
|
||||
## Building Parts
|
||||
@ -46,7 +45,7 @@ Builds orders are used to create parts builds.
|
||||
To create a build order for your part, you have two options:
|
||||
|
||||
1. navigate to the Part detail page, click on "Build Orders" tab then click on "Start New Build" button
|
||||
0. navigate to the Build page, click on "New Build Order"
|
||||
0. navigate to the Build page, click on "New Build Order".
|
||||
|
||||
{% with id="build_start_new", url="build/build_start_new.png", description="Start New Build Form" %}
|
||||
{% include 'img.html' %}
|
||||
@ -58,16 +57,26 @@ Fill-out the form then click the "Submit" button to create the build.
|
||||
|
||||
To allocate stock for a build, you have two options:
|
||||
|
||||
1. automatic allocation: if each subpart has only **one** storage location, InvenTree can allocate stock from this location automatically
|
||||
0. manual allocation: user can define allocation for each subpart in the build
|
||||
1. **automatic** allocation: if each subpart has only **one** storage location, InvenTree can allocate stock from this location automatically
|
||||
0. **manual** allocation: user can define allocation for each subpart in the build.
|
||||
|
||||
During allocation, InvenTree relies on [Stock items](/stock/stock/#stock-item) to reference parts that will be used for the build. Make sure to read through the [stock documentation](/stock/stock) before proceeding with stock allocation.
|
||||
|
||||
#### Automatic Allocation
|
||||
|
||||
Click on the "Allocated Parts tab" then click on the "Auto Allocate" button to automatically allocate stock.
|
||||
Click on the "Allocated Parts" tab then click on the "Auto Allocate" button to automatically allocate stock for this build.
|
||||
|
||||
The `Allocate Stock` form will be displayed. Verify each subpart automatic allocation, click on the confirmation switch, then click on the "Submit" button to process the stock allocation.
|
||||
|
||||
#### Manual Allocation
|
||||
|
||||
Click on the "Allocated Parts tab" then click on the :fontawesome-solid-plus: icon next to each subpart in the build to manually allocate stock.
|
||||
Click on the "Allocated Parts" tab then click on the :fontawesome-solid-plus: icon next to each subpart in the build to manually allocate stock.
|
||||
|
||||
The `Allocate new Part` form will be displayed. Select a `Stock Item` and fill-out the `Quantity` field then click on the "Submit" button to allocate stock for this subpart.
|
||||
|
||||
#### Unallocate
|
||||
|
||||
Click on the "Allocated Parts" tab then click on the "Unallocate" button to unallocate stock items allocated for this build.
|
||||
|
||||
### Cancel Build
|
||||
|
||||
@ -87,3 +96,6 @@ To complete a build, click on :fontawesome-solid-tools: icon on the build detail
|
||||
|
||||
Select a `Location` to store the resulting parts from the build then click on the confirmation switch.
|
||||
Finally, click on the "Complete Build" button to process the build completion.
|
||||
|
||||
!!! warning "Completed Build"
|
||||
**A completed build cannot be re-opened**. Make sure to use the confirm only if you are certain that the build is complete.
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Purchase Order
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Purchase Orders
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Suppliers
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Suppliers
|
||||
|
1076
docs/contribute.html
1076
docs/contribute.html
File diff suppressed because one or more lines are too long
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Contributing to InvenTree
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Contribute to InvenTree
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: InvenTree API
|
||||
layout: page
|
||||
---
|
||||
|
||||
## InvenTree API
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Third Party Integrations
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Third Party Integrations
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Plugins
|
||||
layout: page
|
||||
---
|
||||
|
||||
## InvenTree Plugin Architecture
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Python Interface
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Python Module
|
||||
|
@ -1,7 +1,5 @@
|
||||
---
|
||||
title: InvenTree
|
||||
layout: page
|
||||
permalink: "/"
|
||||
---
|
||||
|
||||
## InvenTree - Intuitive Inventory Management
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Part Parameters
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Part Parameters
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Parts
|
||||
layout: page
|
||||
---
|
||||
|
||||
# Part
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Part Templates
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Part Templates
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Part Test Templates
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Part Test Templates
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Part Views
|
||||
layout: page
|
||||
---
|
||||
|
||||
The Part information page organizes part data into sections, displayed as tabs.
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Custom Labels
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Custom Labels
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Order Report
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Order Report
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Packing List Report
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Packing List
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Report Generation
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Custom Reporting
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Test Report
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Test Report
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Database Configuration
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Database Configuration
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Deploy InvenTree
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Deploying InvenTree
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Install InvenTree
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Introduction
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Migrating Data
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Migrating Data
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Changing color theme
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Color Themes
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Update InvenTree
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Update InvenTree
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Stock Adjustments
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Stock Adjustments
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Stock
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Stock Location
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Stocktake
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Stocktake
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Stock Test Result
|
||||
layout: page
|
||||
---
|
||||
|
||||
## Stock Test Result
|
||||
|
@ -1,3 +1,4 @@
|
||||
/* Image "popping" feature */
|
||||
.overlay {
|
||||
/* Display over the entire page */
|
||||
position: fixed;
|
||||
@ -52,3 +53,18 @@ a[target="_blank"]:not([class*="md-"]):after {
|
||||
/* content: " " url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='rgb(123,136,204)' d='M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z' /%3E%3C/svg%3E%0A");*/
|
||||
content: " " url('../assets/open-in-new-custom.svg');
|
||||
}
|
||||
|
||||
/* Set text alignment to "justify" */
|
||||
p {
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
/* Remove page title */
|
||||
.md-content h1:first-child {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Remove top margin for first h2 header */
|
||||
.md-typeset h2:first-of-type {
|
||||
margin-top: 0em;
|
||||
}
|
@ -20,6 +20,7 @@ theme:
|
||||
repo: fontawesome/brands/github
|
||||
features:
|
||||
- tabs
|
||||
edit_uri: "" # Disable "Edit" button
|
||||
extra_css:
|
||||
- stylesheets/extra.css
|
||||
extra_javascript:
|
||||
@ -40,7 +41,7 @@ nav:
|
||||
- Parts: part/part.md
|
||||
- Part Views: part/views.md
|
||||
- Parameters: part/parameter.md
|
||||
- Template Parts: part/template.md
|
||||
- Templates: part/template.md
|
||||
- Tests: part/test.md
|
||||
- Stock:
|
||||
- Stock Items: stock/stock.md
|
||||
@ -49,7 +50,7 @@ nav:
|
||||
- Test Results: stock/test.md
|
||||
- Build:
|
||||
- Build Parts: build/build.md
|
||||
- BOM: build/bom.md
|
||||
- Bill of Materials (BOM): build/bom.md
|
||||
- Buy:
|
||||
- Suppliers: buy/supplier.md
|
||||
- Purchase Orders: buy/po.md
|
||||
@ -79,6 +80,7 @@ plugins:
|
||||
markdown_extensions:
|
||||
- admonition
|
||||
- attr_list
|
||||
- meta
|
||||
- pymdownx.details
|
||||
- pymdownx.highlight
|
||||
- pymdownx.superfences
|
||||
|
Loading…
x
Reference in New Issue
Block a user