diff --git a/docs/app/connect.md b/docs/app/connect.md index a9a45d1..b9c71a3 100644 --- a/docs/app/connect.md +++ b/docs/app/connect.md @@ -105,7 +105,7 @@ Select the *Stock* icon to open the [stock display](./stock.md). This initially ### Purchase Orders -Select the *Purchase Orders* icon to open the purchase orders display. This shows a list of currently outstanding purchase orders, allowing line items to be received into stock. +Select the *Purchase Orders* icon to open the [purchase orders display](./po.md). This shows a list of currently outstanding purchase orders, allowing line items to be received into stock. ### Suppliers diff --git a/docs/app/po.md b/docs/app/po.md new file mode 100644 index 0000000..adff545 --- /dev/null +++ b/docs/app/po.md @@ -0,0 +1,49 @@ +--- +title: Purchase Orders +--- + +## Purchase Order List + +The purchase order list display shows all current *outstanding* purchase orders. (Purchase orders which have been completed are not shown here). + +{% with id="po_list", url="app/po_list.png", maxheight="240px", description="Purchase order list" %} +{% include "img.html" %} +{% endwith %} + +Select an individual purchase order to display the detail view for that order. + +### Filtering + +Available purchase orders can be subsequently filtered using the search input at the top of the screen + +## Purchase Order Detail + +{% with id="po_detail", url="app/po_detail.png", maxheight="240px", description="Purchase order details" %} +{% include "img.html" %} +{% endwith %} + +### Edit Order Details + +From the detail view, select the *Edit* button in the top-right of the screen. This opens the purchase order editing display: + +{% with id="edit_po", url="app/po_edit.png", maxheight="240px", description="Edit purchase order" %} +{% include "img.html" %} +{% endwith %} + +### Line Items + +The *Line Items* tab shows the line items associated with this purchase order: + +{% with id="po_lines", url="app/po_lines.png", maxheight="240px", description="Purchase order line items" %} +{% include "img.html" %} +{% endwith %} + +Long press on a particular line item to receive the item into stock. + +### Stock Items + +Once items have been received into stock against a particular purchase order, they are displayed in the *Stock Items* tab: + +{% with id="po_stock", url="app/po_stock.png", maxheight="240px", description="Purchase order stock items" %} +{% include "img.html" %} +{% endwith %} \ No newline at end of file diff --git a/docs/assets/images/app/po_detail.png b/docs/assets/images/app/po_detail.png new file mode 100644 index 0000000..031c528 Binary files /dev/null and b/docs/assets/images/app/po_detail.png differ diff --git a/docs/assets/images/app/po_edit.png b/docs/assets/images/app/po_edit.png new file mode 100644 index 0000000..a07cc04 Binary files /dev/null and b/docs/assets/images/app/po_edit.png differ diff --git a/docs/assets/images/app/po_lines.png b/docs/assets/images/app/po_lines.png new file mode 100644 index 0000000..29ccc4c Binary files /dev/null and b/docs/assets/images/app/po_lines.png differ diff --git a/docs/assets/images/app/po_list.png b/docs/assets/images/app/po_list.png new file mode 100644 index 0000000..37e7b17 Binary files /dev/null and b/docs/assets/images/app/po_list.png differ diff --git a/docs/assets/images/app/po_stock.png b/docs/assets/images/app/po_stock.png new file mode 100644 index 0000000..0f584ff Binary files /dev/null and b/docs/assets/images/app/po_stock.png differ diff --git a/mkdocs.yml b/mkdocs.yml index 5928eca..4e11e0c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -115,6 +115,7 @@ nav: - Barcodes: app/barcode.md - Parts: app/part.md - Stock: app/stock.md + - Purchase Orders: app/po.md - Settings: app/settings.md - Privacy: app/privacy.md - Release Notes: app/release.md