fix pagination in lots

This commit is contained in:
Cayo Puigdefabregas 2024-10-02 12:27:20 +02:00
parent aa31aefb42
commit 2b4b469b0e
1 changed files with 2 additions and 1 deletions

View File

@ -33,4 +33,5 @@ class LotDashboardView(InventaryMixin, DetailsMixin):
def get_devices(self, user, offset, limit):
chids = self.object.devicelot_set.all().values_list("device_id", flat=True).distinct()
return [Device(id=x) for x in chids], chids.count()
chids_page = chids[offset:offset+limit]
return [Device(id=x) for x in chids_page], chids.count()