mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix for PurchaseOrder template (#4885)
- Fixes bug which removes javascript incorrectly
This commit is contained in:
parent
4d00c471e1
commit
4079224658
@ -129,6 +129,7 @@
|
||||
{% endblock page_content %}
|
||||
|
||||
{% block js_ready %}
|
||||
{% settings_value "PURCHASEORDER_EDIT_COMPLETED_ORDERS" as allow_extra_editing %}
|
||||
|
||||
{{ block.super }}
|
||||
|
||||
@ -173,7 +174,7 @@
|
||||
filterkey: "postock"
|
||||
});
|
||||
|
||||
{% if order.status == PurchaseOrderStatus.PENDING %}
|
||||
{% if order.is_open or allow_extra_editing %}
|
||||
$('#new-po-line').click(function() {
|
||||
|
||||
createPurchaseOrderLineItem({{ order.pk }}, {
|
||||
|
Loading…
Reference in New Issue
Block a user