mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 19:45:46 +00:00
Adds setting to enable / disable return order functionality
- Simply hides the navigation elements - API is not disabled
This commit is contained in:
@ -1423,6 +1423,13 @@ class InvenTreeSetting(BaseInvenTreeSetting):
|
||||
'validator': build.validators.validate_build_order_reference_pattern,
|
||||
},
|
||||
|
||||
'RETURNORDER_ENABLED': {
|
||||
'name': _('Enable Return Orders'),
|
||||
'description': _('Enable return order functionality in the user interface'),
|
||||
'validator': bool,
|
||||
'default': False,
|
||||
},
|
||||
|
||||
'RETURNORDER_REFERENCE_PATTERN': {
|
||||
'name': _('Return Order Reference Pattern'),
|
||||
'description': _('Required pattern for generating Return Order reference field'),
|
||||
|
@ -184,7 +184,7 @@
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if roles.return_order.view %}
|
||||
{% if roles.return_order.view and return_order_enabled %}
|
||||
<div class='panel panel-hidden' id='panel-return-orders'>
|
||||
<div class='panel-heading'>
|
||||
<div class='d-flex flex-wrap'>
|
||||
@ -359,6 +359,7 @@
|
||||
|
||||
{% if company.is_customer %}
|
||||
|
||||
{% if return_order_enabled %}
|
||||
// Callback function when the 'return orders' panel is loaded
|
||||
onPanelLoad('return-orders', function() {
|
||||
|
||||
@ -378,6 +379,7 @@
|
||||
});
|
||||
{% endif %}
|
||||
});
|
||||
{% endif %}
|
||||
|
||||
// Callback function when the 'assigned stock' panel is loaded
|
||||
onPanelLoad('assigned-stock', function() {
|
||||
|
@ -17,13 +17,19 @@
|
||||
{% include "sidebar_item.html" with label='company-stock' text=text icon="fa-boxes" %}
|
||||
{% endif %}
|
||||
{% if company.is_customer %}
|
||||
{% if roles.sales_order.view %}
|
||||
{% trans "Sales Orders" as text %}
|
||||
{% include "sidebar_item.html" with label='sales-orders' text=text icon="fa-truck" %}
|
||||
{% endif %}
|
||||
{% if roles.stock.view %}
|
||||
{% trans "Assigned Stock Items" as text %}
|
||||
{% include "sidebar_item.html" with label='assigned-stock' text=text icon="fa-sign-out-alt" %}
|
||||
{% endif %}
|
||||
{% if roles.return_order.view and return_order_enabled %}
|
||||
{% trans "Return Orders" as text %}
|
||||
{% include "sidebar_item.html" with label='return-orders' text=text icon="fa-undo" %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% trans "Contacts" as text %}
|
||||
{% include "sidebar_item.html" with label='company-contacts' text=text icon="fa-users" %}
|
||||
{% trans "Notes" as text %}
|
||||
|
@ -11,6 +11,7 @@
|
||||
|
||||
<table class='table table-striped table-condensed'>
|
||||
<tbody>
|
||||
{% include "InvenTree/settings/setting.html" with key="RETURNORDER_ENABLED" icon="fa-check-circle" %}
|
||||
{% include "InvenTree/settings/setting.html" with key="RETURNORDER_REFERENCE_PATTERN" %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -5,6 +5,7 @@
|
||||
{% plugins_enabled as plugins_enabled %}
|
||||
{% settings_value 'BARCODE_ENABLE' as barcodes %}
|
||||
{% settings_value 'REPORT_ENABLE_TEST_REPORT' as test_report_enabled %}
|
||||
{% settings_value 'RETURNORDER_ENABLED' as return_order_enabled %}
|
||||
{% settings_value "REPORT_ENABLE" as report_enabled %}
|
||||
{% settings_value "SERVER_RESTART_REQUIRED" as server_restart_required %}
|
||||
{% settings_value "LABEL_ENABLE" as labels_enabled %}
|
||||
|
@ -61,7 +61,7 @@
|
||||
{% if roles.sales_order.view %}
|
||||
<li><a class='dropdown-item' href="{% url 'sales-order-index' %}"><span class='fas fa-list icon-header'></span>{% trans "Sales Orders" %}</a></li>
|
||||
{% endif %}
|
||||
{% if roles.return_order.view %}
|
||||
{% if roles.return_order.view and return_order_enabled %}
|
||||
<li><a class='dropdown-item' href="{% url 'return-order-index' %}"><span class='fas fa-undo icon-header'></span>{% trans "Return Orders" %}</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user