8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-16 23:56:12 +00:00
re2o/cotisations/admin.py

92 lines
2.4 KiB
Python
Raw Permalink Normal View History

# -*- mode: python; coding: utf-8 -*-
2020-11-23 16:06:37 +00:00
# Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
2017-01-15 23:01:18 +00:00
# se veut agnostique au réseau considéré, de manière à être installable en
# quelques clics.
#
# Copyright © 2017 Gabriel Détraz
# Copyright © 2017 Lara Kermarec
2017-01-15 23:01:18 +00:00
# Copyright © 2017 Augustin Lemesle
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2018-04-14 13:39:51 +00:00
"""cotisations.admin
The objects, fields and datastructures visible in the Django admin view
"""
2017-01-15 23:01:18 +00:00
from __future__ import unicode_literals
2016-07-02 13:58:50 +00:00
from django.contrib import admin
from reversion.admin import VersionAdmin
2016-07-02 13:58:50 +00:00
from .models import Facture, Article, Banque, Paiement, Cotisation, Vente
2018-12-31 22:58:37 +00:00
from .models import CustomInvoice, CostEstimate
2017-10-13 20:47:32 +00:00
class FactureAdmin(VersionAdmin):
2020-05-30 09:00:39 +00:00
"""Admin class for invoices."""
2017-10-13 20:47:32 +00:00
pass
2018-12-31 22:58:37 +00:00
class CostEstimateAdmin(VersionAdmin):
"""Admin class for cost estimates."""
2018-12-31 22:58:37 +00:00
pass
2018-07-24 20:39:36 +00:00
class CustomInvoiceAdmin(VersionAdmin):
"""Admin class for custom invoices."""
2018-07-24 20:39:36 +00:00
pass
class VenteAdmin(VersionAdmin):
2020-05-30 09:00:39 +00:00
"""Admin class for purchases."""
2017-10-13 20:47:32 +00:00
pass
class ArticleAdmin(VersionAdmin):
2020-05-30 09:00:39 +00:00
"""Admin class for articles."""
2017-10-13 20:47:32 +00:00
pass
class BanqueAdmin(VersionAdmin):
2020-05-30 09:00:39 +00:00
"""Admin class for banks."""
2017-10-13 20:47:32 +00:00
pass
class PaiementAdmin(VersionAdmin):
2020-05-30 09:00:39 +00:00
"""Admin class for payment methods."""
2017-10-13 20:47:32 +00:00
pass
class CotisationAdmin(VersionAdmin):
2020-05-30 09:00:39 +00:00
"""Admin class for subscriptions."""
2017-10-13 20:47:32 +00:00
pass
admin.site.register(Facture, FactureAdmin)
admin.site.register(Article, ArticleAdmin)
admin.site.register(Banque, BanqueAdmin)
admin.site.register(Paiement, PaiementAdmin)
admin.site.register(Vente, VenteAdmin)
admin.site.register(Cotisation, CotisationAdmin)
2018-07-24 20:39:36 +00:00
admin.site.register(CustomInvoice, CustomInvoiceAdmin)
2018-12-31 22:58:37 +00:00
admin.site.register(CostEstimate, CostEstimateAdmin)