Sith/counter/admin.py

116 lines
3.0 KiB
Python
Raw Normal View History

#
# Copyright 2023 © AE UTBM
# ae@utbm.fr / ae.info@utbm.fr
#
# This file is part of the website of the UTBM Student Association (AE UTBM),
# https://ae.utbm.fr.
#
# You can find the source code of the website at https://github.com/ae-utbm/sith3
#
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
# OR WITHIN THE LOCAL FILE "LICENSE"
#
#
2016-03-28 12:54:35 +00:00
from django.contrib import admin
2017-10-10 21:33:15 +00:00
from haystack.admin import SearchModelAdmin
2016-03-28 12:54:35 +00:00
from counter.models import *
2016-03-28 12:54:35 +00:00
2017-10-10 21:33:15 +00:00
2022-12-19 19:55:33 +00:00
@admin.register(Product)
2017-10-10 21:33:15 +00:00
class ProductAdmin(SearchModelAdmin):
2022-12-19 19:55:33 +00:00
list_display = (
"name",
"code",
"product_type",
"selling_price",
"profit",
"archived",
)
search_fields = ("name", "code")
2017-10-10 21:33:15 +00:00
2022-12-19 19:55:33 +00:00
@admin.register(Customer)
2017-10-10 21:33:15 +00:00
class CustomerAdmin(SearchModelAdmin):
2022-12-19 19:55:33 +00:00
list_display = ("user", "account_id", "amount")
search_fields = (
"account_id",
"user__username",
"user__first_name",
"user__last_name",
)
2024-07-29 22:56:13 +00:00
autocomplete_fields = ("user",)
2017-10-10 21:33:15 +00:00
@admin.register(BillingInfo)
class BillingInfoAdmin(admin.ModelAdmin):
list_display = ("first_name", "last_name", "address_1", "city", "country")
2022-12-19 19:55:33 +00:00
@admin.register(Counter)
class CounterAdmin(admin.ModelAdmin):
list_display = ("name", "club", "type")
2024-07-29 22:56:13 +00:00
autocomplete_fields = ("products", "sellers")
2022-12-19 19:55:33 +00:00
@admin.register(Refilling)
class RefillingAdmin(SearchModelAdmin):
list_display = ("customer", "amount", "counter", "payment_method", "date")
2024-07-29 22:56:13 +00:00
autocomplete_fields = ("customer", "operator")
2022-12-19 19:55:33 +00:00
search_fields = (
"customer__user__username",
"customer__user__first_name",
"customer__user__last_name",
"customer__account_id",
"counter__name",
)
@admin.register(Selling)
class SellingAdmin(SearchModelAdmin):
list_display = ("customer", "label", "unit_price", "quantity", "counter", "date")
search_fields = (
"customer__user__username",
"customer__user__first_name",
"customer__user__last_name",
"customer__account_id",
"counter__name",
)
2024-07-29 22:56:13 +00:00
autocomplete_fields = ("customer", "seller")
2022-12-19 19:55:33 +00:00
@admin.register(Permanency)
class PermanencyAdmin(SearchModelAdmin):
list_display = ("user", "counter", "start", "duration")
search_fields = (
"user__username",
"user__first_name",
"user__last_name",
"counter__name",
)
2024-07-29 22:56:13 +00:00
autocomplete_fields = ("user",)
2022-12-19 19:55:33 +00:00
@admin.register(ProductType)
class ProductTypeAdmin(admin.ModelAdmin):
list_display = ("name", "priority")
@admin.register(CashRegisterSummary)
class CashRegisterSummaryAdmin(SearchModelAdmin):
list_display = ("user", "counter", "date")
search_fields = (
"user__username",
"user__first_name",
"user__last_name",
"counter__name",
)
2024-07-29 22:56:13 +00:00
autocomplete_fields = ("user",)
2022-12-19 19:55:33 +00:00
@admin.register(Eticket)
class EticketAdmin(SearchModelAdmin):
list_display = ("product", "event_date", "event_title")
search_fields = ("product__name", "event_title")