2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-02 21:38:48 +00:00
Oliver 6b08e45eac
Docs refactor (#9545)
* Refactor / reognaize docs structure

* Refactor plugin docs structure

* More refactoring / cleanup

* Update build images

* Gallery updates

* Order images

* Update part docs

* Settings images

* Stock images

* Reitntroduce gallery

* Add custom icon macro

* Update icons

* Cleanup

* Fix link

* Fix internal links

* Revert some page moves

* Fix links

* Fix links
2025-04-22 08:18:32 +10:00

6.2 KiB

title
title
Suppliers

Suppliers

A supplier is an external vendor of parts and raw materials.

To access the supplier page, click on the {{ icon("shopping-cart") }} Buy navigation tab and click on {{ icon("building") }} Suppliers option in the dropdown list.

{% with id="supplier_list", url="order/supplier_list.png", description="Supplier List" %} {% include "img.html" %} {% endwith %}

!!! info Viewing, adding, editing and deleting suppliers require the corresponding Purchase Orders user permissions

Add Supplier

Once the supplier page is loaded, click on the {{ icon("plus-circle") }} New Supplier button: the "Create new Supplier" form opens. Fill-in the supplier information (Company name and Company description are required) then click on Submit

!!! info "Supplier vs Manufacturer" In the case the supplier is a manufacturer who sells directly to customers, you may want to enable the checkbox is manufacturer before submitting the form (you can also enable it later on).

Supplier Parts

Supplier parts are linked to a supplier and defined as purchasable items.

!!! warning Viewing, adding, editing and deleting supplier parts require the corresponding Purchase Orders user permissions

Add Supplier Part

To create a supplier part, you have the following options:

  1. navigate to a Part detail page then click on the {{ icon("building") }} Suppliers tab
  2. navigate to a Supplier detail page then click on the {{ icon("building") }} Supplied Parts tab
  3. navigate to a Manufacturer detail page then click on the {{ icon("building") }} Supplied Parts tab.

Whichever you pick, click on the {{ icon("plus-circle") }} New Supplier Part button to load the "Create new Supplier Part" form. Fill out the form with the supplier part information then click on Submit

Edit Supplier Part

To edit a supplier part, first access the supplier part detail page with one of the following options:

  1. navigate to a Part detail page, click on the {{ icon("building") }} Suppliers tab then, in the Part Suppliers table, click on the corresponding Supplier Part link
  2. navigate to a Supplier detail page, click on the {{ icon("building") }} Supplied Parts tab then click on the corresponding Supplier Part link
  3. navigate to a Manufacturer detail page, click on the {{ icon("building") }} Supplied Parts tab then click on the corresponding Supplier Part link.

After the supplier part details are loaded, click on the {{ icon("edit", color="blue", title="Edit") }} icon next to the supplier part image. Edit the supplier part information then click on Submit

Disable Supplier Part

Supplier parts can be individually disabled - for example, if a supplier part is no longer available for purchase. By disabling the part in the InvenTree system, it will no longer be available for selection in new purchase orders. However, any existing purchase orders which reference the supplier part will remain intact.

The "active" status of a supplier part is clearly visible within the user interface:

{% with id="supplier_part_disable", url="order/disable_supplier_part.png", description="Disable Supplier Part" %} {% include "img.html" %} {% endwith %}

To change the "active" status of a supplier part, simply edit the supplier part details and set the active attribute:

{% with id="supplier_part_disable_edit", url="order/disable_supplier_part_edit.png", description="Disable Supplier Part" %} {% include "img.html" %} {% endwith %}

It is recommended to disable a supplier part rather than deleting it, as this will preserve the integrity of historical data.

Delete Supplier Part

To delete a supplier part, first access the supplier part detail page like in the Edit Supplier Part section.

After the supplier part details are loaded, click on the {{ icon("trash", color="red", title="Delete") }} icon next to the supplier part image. Review the the information for the supplier part to be deleted, confirm the deletion using the checkbox then click on Submit

Supplier Part Availability

InvenTree supports tracking 'availability' information for supplier parts. While this information can be updated manually, it is more useful when used in conjunction with the InvenTree plugin system.

A custom can periodically request availability information (via a supplier API), and update this availability information for each supplier part.

If provided, availability information is displayed on the Supplier Part detail page.

{% with id="supplier_part_availability", url="order/supplier_part_availability.png", maxheight="240px", description="Supplier part availability" %} {% include "img.html" %} {% endwith %}

Availability information can be manually updated via the user interface:

{% with id="update_availability", url="order/update_availability.png", maxheight="240px", description="Update availability" %} {% include "img.html" %} {% endwith %}

Supplier Part Pack Size

Supplier parts can have a pack size defined. This value is defined when creating or editing a part. By default, the pack size is 1.

When buying parts, they are bought in packs. This is taken into account in Purchase Orders: if a supplier part with a pack size of 5 is bought in a quantity of 4, 20 parts will be added to stock when the parts are received.

When adding stock manually, the supplier part can be added in packs or in individual parts. This is to allow the addition of items in opened packages. Set the flag "Use pack size" (use_pack_size in the API) to True in order to add parts in packs.