* Add basic auto-allocate functionality - backend code - background task - API endpoint * Add new endpoint enum * add frontend components * Tweak auto-allocate output * Allow specifying of individual line items * Tweak error boundary * Enable bulk-delete of allocated items against sales order * Refactor stock sorting options * Allow user to select how to handle serialized stock * Backport new functionality to BuildOrder allocation * Refactor sorting options to use enumerated values * Implement functional unit tests for new feature * Update API and CHANGELOG * Additional unit test * Add playwright testing * Documentation * Update docs for build auto-allocate * Fix dependencies * Adjust build line filtering * Fix serializer
13 KiB
title: Sales Orders
Sales Orders
Sales orders allow tracking of which stock items are sold to customers, therefore converting stock items / inventory into externally sold items.
View Sales Orders
To navigate to the Sales Order display, select Sales from the main navigation menu, and Sales Orders from the sidebar:
{{ image("sales/so_display.png", "Sales Order display") }}
The following view modes are available:
Table View
Table View provides a list of Sales Orders, which can be filtered to display a subset of orders according to user supplied parameters.
{{ image("sales/so_list.png", "Sales Order list") }}
Calendar View
Calendar View shows a calendar display with outstanding sales orders.
{{ image("sales/so_calendar.png", "Sales Order calendar") }}
Sales Order Status Codes
Each Sales Order has a specific status code, which represents the state of the order:
| Status | Description |
|---|---|
| Pending | The sales order has been created, but has not been finalized or submitted |
| In Progress | The sales order has been issued, and is in progress |
| On Hold | The sales order has been placed on hold, but is still active |
| Shipped | The sales order has been shipped, but is not yet complete |
| Complete | The sales order is fully completed, and is now closed |
| Cancelled | The sales order was cancelled, and is now closed |
| Lost | The sales order was lost, and is now closed |
| Returned | The sales order was returned, and is now closed |
Source Code
Refer to the source code for the Sales Order status codes:
::: order.status_codes.SalesOrderStatus options: show_bases: False show_root_heading: False show_root_toc_entry: False show_source: True members: []
Sales Order Status supports custom states.
Sales Order Currency
The currency code can be specified for an individual sales order. If not specified, the default currency specified against the customer will be used.
Sales Order Address
A sales order can have a specific shipping address assigned to it. The shipping address can be selected from the list of addresses assigned to the customer which is linked to the sales order.
Create a Sales Order
Once the sales order page is loaded, click on {{ icon("plus-circle") }} New Sales Order which opens the "Create Sales Order" form.
A Sales Order is linked to a specific customer, select one in the list of existing customers.
!!! warning "Customers Only" Only companies with the "Customer" attribute enabled will be shown and can be selected
Fill out the rest of the form with the sales order information then click on Submit to create the order.
Sales Order Reference
Each Sales Order is uniquely identified by its Reference field. Read more about reference fields.
Add Line Items
On the sales order detail page, user can link parts to the sales order selecting the {{ icon("list") }} Line Items tab then clicking on the {{ icon("plus-circle") }} Add Line Item button.
Once the "Add Line Item" form opens, select a part in the list.
!!! warning Only parts that have the "Salable" attribute enabled will be shown and can be selected
Fill out the rest of the form then click on Submit
Shipments
After all line items were added to the sales order, user needs to create one or more shipments in order to allocate stock for those parts.
In order to create a new shipment:
- Click on the {{ icon("truck-loading") }} Pending Shipments tab
- Click on {{ icon("plus-circle") }} New Shipment button, fill out the form with the shipment number (tracking number can be added but is optional) then click on Submit
Repeat the two steps above to create more shipments.
Allocate Stock Items
After shipments were created, user can either:
- Allocate stock items for that part to the sales order (click on {{ icon("arrow-right") }} button)
- Create a build order for that part to cover the quantity of the sales order (click on {{ icon("tools") }} button)
During the allocation process, user is required to select the desired shipment that will contain the stock items.
Auto Allocate Stock
To speed up the allocation process, use the Auto Allocate Stock button ({{ icon("wand") }}) available in the Line Items tab. This automatically finds available stock and creates the required allocations with minimal user interaction.
!!! info "Background Task" Auto-allocation runs as a background task. The UI will display a progress indicator while the task is running.
Selecting Lines to Allocate
By default, auto-allocation processes all unallocated line items on the order. To restrict allocation to a subset of lines, select the desired rows in the Line Items table before pressing the button — the dialog will indicate how many lines are selected.
Auto Allocation Options
The auto-allocation dialog provides the following options:
Source Location
Restrict stock to a specific location (and all of its sub-locations). Leave blank to consider stock from any location.
Exclude Location
Exclude stock from a specific location (and all of its sub-locations). Useful for reserving stock in a particular area.
Shipment
Optionally assign all new allocations to a specific pending shipment. Only shipments that have not yet been completed are shown.
Interchangeable Stock
When enabled (default), stock may be drawn from multiple stock items or locations to fulfil a single line item. When disabled, a line item is only allocated if a single stock item can cover the entire remaining quantity.
!!! warning "Take Care" Enabling Interchangeable Stock means the auto-allocation routine will combine stock from different batches or locations. Review the resulting allocations if traceability is important.
Stock Priority
Controls the order in which matching stock items are consumed:
| Option | Description |
|---|---|
| Oldest stock first (FIFO) | Stock items updated least recently are consumed first (default) |
| Newest stock first (LIFO) | Stock items updated most recently are consumed first |
| Smallest quantity first | Stock items with the lowest available quantity are consumed first |
| Largest quantity first | Stock items with the highest available quantity are consumed first |
| Soonest expiry date first | Stock items expiring earliest are consumed first; items with no expiry date are used last |
Serialized Stock
Controls whether serialized stock items are included in the auto-allocation:
| Option | Description |
|---|---|
| Allow any stock | Both serialized and unserialized stock items are considered (default) |
| Serialized stock only | Only stock items that carry a serial number are allocated |
| Unserialized stock only | Only stock items without a serial number are allocated |
Allocation Behaviour
The auto-allocation routine performs the following steps for each eligible line item:
- Skips line items for virtual parts.
- Skips line items that are already fully allocated.
- Queries available stock for the line's part, applying any location and serialized-stock filters.
- Sorts the candidates according to the chosen Stock Priority.
- Greedily allocates from each stock item in turn until the remaining quantity for the line is satisfied.
Removing Allocations
Individual or multiple allocations can be removed from the Allocated Stock tab. Select the allocations to remove and use the Delete action.
!!! warning "Shipped Allocations Protected" Allocations that belong to a completed (shipped) shipment cannot be deleted.
Check Shipment
Shipments can be marked as "checked" to indicate that the items in the shipment has been verified. To mark a shipment as "checked", open the shipment actions menu, and select the "Check" action:
{{ image("sales/so_shipment_check.png", "Check shipment") }}
The shipment will be marked as checked by the current user.
Uncheck Shipment
If the shipment requires further verification after being marked as "checked", it can be marked as "unchecked" in a similar manner.
Complete Shipment
To complete a shipment, click on the {{ icon("truck-loading") }} Pending Shipments tab then click on {{ icon("truck-delivery") }} button shown in the shipment table.
Fill out the "Complete Shipment" form then click on Submit.
To view all the completed shipment, click on the {{ icon("truck-delivery") }} Completed Shipments tab. In the completed shipments table, click on each shipment to view the shipment details.
Complete Order
Once all items in the sales order have been shipped, click on {{ icon("circle-check", color="green") }} Complete Order to mark the sales order as shipped. Confirm then click on Submit to complete the order.
Cancel Order
To cancel the order, click on the {{ icon("tools") }} menu button next to the {{ icon("circle-check", color="green") }} Complete Order button, then click on the "{{ icon("tools") }} Cancel Order" menu option. Confirm then click on the Submit to cancel the order.
Order Scheduling
Sales orders can be scheduled for a future date, to allow for order scheduling.
Start Date
The Start Date of the sales order is the date on which the order is scheduled to be issued, allowing work to begin on the order.
Target Date
The Target Date of the sales order is the date on which the order is scheduled to be completed and shipped.
Overdue Orders
If the Target Date of the sales order has passed, the order will be marked as overdue.
Calendar view
Using the button to the top right of the list of Sales Orders, the view can be switched to a calendar view using the button {{ icon("calendar") }}. This view shows orders with a defined target date only.
This view can be accessed externally as an ICS calendar using a URL like the following:
http://inventree.example.org/api/order/calendar/sales-order/calendar.ics
By default, completed orders are not exported. These can be included by appending ?include_completed=True to the URL.
Sales Order Shipments
Shipments are used to track sales items when they are shipped to customers. Multiple shipments can be created against a Sales Order, allowing line items to be sent to customers in multiple deliveries.
On the main Sales Order detail page, the order shipments are split into two categories, Pending Shipments and Completed Shipments:
Pending Shipments
The Pending Shipments panel displays the shipments which have not yet been sent to the customer.
- Each shipment displays the items which have been allocated to it
- Pending sales order items can be allocated to these shipments
- New shipments can be created if the order is still open
{{ image("sales/pending_shipments.png", "Pending shipments") }}
Creating a new Shipment
To create a new shipment for a sales order, press the New Shipment button above the pending shipments table.
Completing a Shipment
To complete a shipment, press the Complete Shipment button associated with the particular shipment:
{{ image("sales/complete_shipment.png", "Complete shipment") }}
Completed Shipments
{{ image("sales/completed_shipments.png", "Completed shipments") }}
Shipment Data
Each shipment provides the following data fields:
Reference
A unique number for the shipment, used to identify each shipment within a sales order. By default, this value starts at 1 for the first shipment (for each order) and automatically increments for each new shipment.
Shipment Address
A shipping address can be optionally specified for an individual shipment. If not specified, the shipping address assigned to the sales order will be used.
Tracking Number
An optional field used to store tracking number information for the shipment.
Invoice Number
An optional field used to store an invoice reference for the shipment.
Link
An optional URL field which can be used to provide a link to an external URL.
All these fields can be edited by the user:
{{ image("sales/edit_shipment.png", "Edit shipment") }}
Sales Order Settings
The following global settings are available for sales orders:
| Name | Description | Default | Units |
|---|---|---|---|
| {{ globalsetting("SALESORDER_REFERENCE_PATTERN") }} | |||
| {{ globalsetting("SALESORDER_REQUIRE_RESPONSIBLE") }} | |||
| {{ globalsetting("SALESORDER_DEFAULT_SHIPMENT") }} | |||
| {{ globalsetting("SALESORDER_EDIT_COMPLETED_ORDERS") }} | |||
| {{ globalsetting("SALESORDER_SHIP_COMPLETE") }} | |||
| {{ globalsetting("SALESORDER_SHIPMENT_REQUIRES_CHECK") }} | |||
| {{ globalsetting("SALESORDER_BLOCK_INCOMPLETE_ITEM_TESTS")}} |