From 0fba236eefa9ed9b9ca04506fa41abef9afaa796 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 29 Aug 2019 15:52:32 +1000 Subject: [PATCH] Stock locations are now persistent --- InvenTree/stock/templates/stock/location.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/InvenTree/stock/templates/stock/location.html b/InvenTree/stock/templates/stock/location.html index 8fbf26166d..30adba9336 100644 --- a/InvenTree/stock/templates/stock/location.html +++ b/InvenTree/stock/templates/stock/location.html @@ -54,6 +54,19 @@ {% endblock %} {% block js_ready %} {{ block.super }} + + if (sessionStorage.getItem("inventree-show-part-locations")) { + $("#collapse-item-locations").collapse('show'); + } + + $("#collapse-item-locations").on('shown.bs.collapse', function() { + sessionStorage.setItem('inventree-show-part-locations', 1); + }); + + $("#collapse-item-locations").on('hidden.bs.collapse', function() { + sessionStorage.removeItem('inventree-show-part-locations'); + }); + $('#location-create').click(function () { launchModalForm("{% url 'stock-location-create' %}", {