mirror of
https://github.com/Sosokker/Inventory-Management-System.git
synced 2025-12-18 23:24:05 +01:00
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
from django_filters.views import FilterView
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
from transaction.models import Order, Transfer, Supply
|
|
from transaction.filters import OrderFilter, TransferFilter, SupplyFilter
|
|
|
|
class CustomerOrderView(FilterView, LoginRequiredMixin):
|
|
template_name = 'transaction/order.html'
|
|
model = Order
|
|
filterset_class = OrderFilter
|
|
context_object_name = 'orders'
|
|
|
|
def get_queryset(self):
|
|
queryset = super().get_queryset()
|
|
return queryset.filter(customer__isnull=False)
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context['order_list'] = Order.objects.all()
|
|
return context
|
|
|
|
|
|
class TransferListView(FilterView):
|
|
template_name = 'transaction/transfer.html'
|
|
model = Transfer
|
|
filterset_class = TransferFilter
|
|
context_object_name = 'transfers_list'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context['transfer_list'] = Transfer.objects.all()
|
|
return context
|
|
|
|
|
|
class SupplyListView(FilterView):
|
|
template_name = 'transaction/supply.html'
|
|
model = Supply
|
|
filterset_class = SupplyFilter
|
|
context_object_name = 'supply_list'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context['supply_list'] = Supply.objects.all()
|
|
return context
|
|
|