change only_unassigned for one specific url

This commit is contained in:
Cayo Puigdefabregas 2022-09-09 11:48:23 +02:00
parent 2edd9fbe6c
commit fcff7e8d02
4 changed files with 22 additions and 16 deletions

View File

@ -125,10 +125,10 @@ class FilterForm(FlaskForm):
)
def __init__(self, lots, lot_id, *args, **kwargs):
self.all_devices = kwargs.pop('all_devices', False)
super().__init__(*args, **kwargs)
self.lots = lots
self.lot_id = lot_id
self.only_unassigned = kwargs.pop('only_unassigned', True)
self._get_types()
def _get_types(self):
@ -149,7 +149,7 @@ class FilterForm(FlaskForm):
self.devices = Device.query.filter(Device.owner_id == g.user.id).filter(
Device.binding == None # noqa: E711
)
if self.only_unassigned:
if not self.all_devices:
self.devices = self.devices.filter_by(lots=None)
def search(self):

View File

@ -2,7 +2,6 @@ import copy
import csv
import logging
import os
from distutils.util import strtobool
from io import StringIO
from pathlib import Path
@ -59,10 +58,11 @@ logger = logging.getLogger(__name__)
class DeviceListMixin(GenericMixin):
template_name = 'inventory/device_list.html'
def get_context(self, lot_id, only_unassigned=True):
def get_context(self, lot_id=None, all_devices=False):
super().get_context()
lots = self.context['lots']
form_filter = FilterForm(lots, lot_id, only_unassigned=only_unassigned)
form_filter = FilterForm(lots, lot_id, all_devices=all_devices)
devices = form_filter.search()
lot = None
form_transfer = ''
@ -91,7 +91,7 @@ class DeviceListMixin(GenericMixin):
'lot': lot,
'tags': self.get_user_tags(),
'list_devices': self.get_selected_devices(form_new_action),
'unassigned_devices': only_unassigned,
'all_devices': all_devices,
}
)
@ -114,10 +114,13 @@ class DeviceListMixin(GenericMixin):
class DeviceListView(DeviceListMixin):
def dispatch_request(self, lot_id=None):
only_unassigned = request.args.get(
'only_unassigned', default=True, type=strtobool
)
self.get_context(lot_id, only_unassigned)
self.get_context(lot_id)
return flask.render_template(self.template_name, **self.context)
class AllDeviceListView(DeviceListMixin):
def dispatch_request(self):
self.get_context(all_devices=True)
return flask.render_template(self.template_name, **self.context)
@ -128,7 +131,7 @@ class AdvancedSearchView(DeviceListMixin):
def dispatch_request(self):
query = request.args.get('q', '')
self.get_context(None)
self.get_context()
form = AdvancedSearchForm(q=query)
self.context.update({'devices': form.devices, 'advanced_form': form})
return flask.render_template(self.template_name, **self.context)
@ -1202,6 +1205,9 @@ devices.add_url_rule(
view_func=NewTradeDocumentView.as_view('trade_document_add'),
)
devices.add_url_rule('/device/', view_func=DeviceListView.as_view('devicelist'))
devices.add_url_rule(
'/all/device/', view_func=AllDeviceListView.as_view('alldevicelist')
)
devices.add_url_rule(
'/search/', view_func=AdvancedSearchView.as_view('advanced_search')
)

View File

@ -160,7 +160,7 @@
<li class="nav-heading">Devices</li>
<li class="nav-item">
<a class="nav-link collapsed" href="{{ url_for('inventory.devicelist') }}?only_unassigned=false">
<a class="nav-link collapsed" href="{{ url_for('inventory.alldevicelist') }}">
<i class="bi bi-laptop"></i>
<span>All devices</span>
</a>

View File

@ -7,10 +7,10 @@
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{{ url_for('inventory.devicelist')}}">Inventory</a></li>
{% if not lot %}
{% if unassigned_devices %}
<li class="breadcrumb-item active">Unassigned</li>
{% else %}
{% if all_devices %}
<li class="breadcrumb-item active">All devices</li>
{% else %}
<li class="breadcrumb-item active">Unassigned</li>
{% endif %}
{% elif lot.is_temporary %}
<li class="breadcrumb-item active">Temporary Lot</li>
@ -247,7 +247,7 @@
</a>
</li>
<li>
{% if unassigned_devices %}
{% if not all_devices %}
<span class="dropdown-item" style="color: #999ea4;">
<i class="bi bi-file-spreadsheet"></i>
Devices Lots Spreadsheet