2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 20:45:44 +00:00

Limit PO selection to only those which are PENDING

This commit is contained in:
Oliver Walters
2019-06-15 15:33:03 +10:00
parent 26f56c188b
commit 0fa8e3809e
2 changed files with 5 additions and 1 deletions

View File

@ -53,7 +53,7 @@
id='id-purchase-order-{{ supplier.id }}'
name='purchase-order-{{ supplier.id }}'>
<option value=''>---------</option>
{% for order in supplier.outstanding_purchase_orders %}
{% for order in supplier.pending_purchase_orders %}
<option value='{{ order.id }}'{% if supplier.selected_purchase_order == order.id %} selected='selected'{% endif %}>
{{ order }}
</option>