2017-01-15 23:01:18 +00:00
|
|
|
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
# quelques clics.
|
|
|
|
#
|
|
|
|
# Copyright © 2017 Gabriel Détraz
|
|
|
|
# Copyright © 2017 Goulven Kermarec
|
|
|
|
# Copyright © 2017 Augustin Lemesle
|
2018-07-05 13:48:07 +00:00
|
|
|
# Copyright © 2018 Hugo Levy-Falk
|
2017-01-15 23:01:18 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2016-07-02 13:58:50 +00:00
|
|
|
# App de gestion des users pour re2o
|
|
|
|
# Goulven Kermarec, Gabriel Détraz
|
|
|
|
# Gplv2
|
2018-04-14 13:39:51 +00:00
|
|
|
"""cotisations.views
|
|
|
|
The different views used in the Cotisations module
|
|
|
|
"""
|
|
|
|
|
2017-09-10 23:29:24 +00:00
|
|
|
from __future__ import unicode_literals
|
2017-10-13 20:47:32 +00:00
|
|
|
import os
|
2017-10-26 22:11:18 +00:00
|
|
|
|
|
|
|
from django.urls import reverse
|
2018-07-13 15:52:49 +00:00
|
|
|
from django.shortcuts import render, redirect, get_object_or_404
|
2018-04-14 13:39:51 +00:00
|
|
|
from django.contrib.auth.decorators import login_required
|
2016-07-02 13:58:50 +00:00
|
|
|
from django.contrib import messages
|
2017-10-13 20:47:32 +00:00
|
|
|
from django.db.models import ProtectedError
|
2017-10-28 04:02:53 +00:00
|
|
|
from django.db.models import Q
|
2016-07-13 23:54:06 +00:00
|
|
|
from django.forms import modelformset_factory, formset_factory
|
2017-10-13 20:47:32 +00:00
|
|
|
from django.utils import timezone
|
2018-03-31 13:43:46 +00:00
|
|
|
from django.utils.translation import ugettext as _
|
2018-04-14 13:39:51 +00:00
|
|
|
|
2017-10-13 20:47:32 +00:00
|
|
|
# Import des models, forms et fonctions re2o
|
2018-04-03 01:47:03 +00:00
|
|
|
from reversion import revisions as reversion
|
2017-10-13 20:47:32 +00:00
|
|
|
from users.models import User
|
|
|
|
from re2o.settings import LOGO_PATH
|
|
|
|
from re2o import settings
|
|
|
|
from re2o.views import form
|
2018-04-03 03:00:06 +00:00
|
|
|
from re2o.utils import SortTable, re2o_paginator
|
2017-12-29 00:51:24 +00:00
|
|
|
from re2o.acl import (
|
2017-12-13 17:56:16 +00:00
|
|
|
can_create,
|
|
|
|
can_edit,
|
|
|
|
can_delete,
|
|
|
|
can_view,
|
2017-12-27 20:09:00 +00:00
|
|
|
can_view_all,
|
|
|
|
can_delete_set,
|
|
|
|
can_change,
|
2017-12-13 17:56:16 +00:00
|
|
|
)
|
2018-07-05 13:48:07 +00:00
|
|
|
from preferences.models import AssoOption, GeneralOption
|
2017-10-13 20:47:32 +00:00
|
|
|
from .models import Facture, Article, Vente, Paiement, Banque
|
2017-10-28 04:02:53 +00:00
|
|
|
from .forms import (
|
2018-07-10 16:38:05 +00:00
|
|
|
FactureForm,
|
2017-10-28 04:02:53 +00:00
|
|
|
ArticleForm,
|
|
|
|
DelArticleForm,
|
|
|
|
PaiementForm,
|
|
|
|
DelPaiementForm,
|
|
|
|
BanqueForm,
|
|
|
|
DelBanqueForm,
|
|
|
|
NewFactureFormPdf,
|
|
|
|
SelectUserArticleForm,
|
|
|
|
SelectClubArticleForm,
|
2018-01-11 18:25:41 +00:00
|
|
|
RechargeForm
|
2017-10-28 04:02:53 +00:00
|
|
|
)
|
2017-11-14 19:00:24 +00:00
|
|
|
from .tex import render_invoice
|
2018-07-02 19:13:13 +00:00
|
|
|
from .payment_methods.forms import payment_method_factory
|
2018-07-13 20:03:22 +00:00
|
|
|
from .utils import find_payment_method
|
2016-07-02 13:58:50 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_create(Facture)
|
|
|
|
@can_edit(User)
|
|
|
|
def new_facture(request, user, userid):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View called to create a new invoice.
|
|
|
|
Currently, Send the list of available articles for the user along with
|
2018-07-10 16:38:05 +00:00
|
|
|
a formset of a new invoice (based on the `:forms:FactureForm()` form.
|
2018-04-09 17:40:46 +00:00
|
|
|
A bit of JS is used in the template to add articles in a fancier way.
|
|
|
|
If everything is correct, save each one of the articles, save the
|
|
|
|
purchase object associated and finally the newly created invoice.
|
|
|
|
"""
|
|
|
|
invoice = Facture(user=user)
|
|
|
|
# The template needs the list of articles (for the JS part)
|
2017-10-28 04:02:53 +00:00
|
|
|
article_list = Article.objects.filter(
|
|
|
|
Q(type_user='All') | Q(type_user=request.user.class_name)
|
|
|
|
)
|
2018-07-03 16:53:44 +00:00
|
|
|
# Building the invoice form and the article formset
|
2018-07-10 16:38:05 +00:00
|
|
|
invoice_form = FactureForm(
|
2018-07-03 16:53:44 +00:00
|
|
|
request.POST or None,
|
|
|
|
instance=invoice,
|
2018-07-10 16:38:05 +00:00
|
|
|
user=request.user,
|
|
|
|
creation=True
|
2018-07-03 16:53:44 +00:00
|
|
|
)
|
2018-07-02 12:09:35 +00:00
|
|
|
|
2017-10-28 04:02:53 +00:00
|
|
|
if request.user.is_class_club:
|
2018-04-13 18:58:29 +00:00
|
|
|
article_formset = formset_factory(SelectClubArticleForm)(
|
2018-06-17 19:49:59 +00:00
|
|
|
request.POST or None,
|
2018-07-03 16:53:44 +00:00
|
|
|
form_kwargs={'user': request.user}
|
2018-04-13 18:58:29 +00:00
|
|
|
)
|
2017-10-28 04:02:53 +00:00
|
|
|
else:
|
2018-04-13 18:58:29 +00:00
|
|
|
article_formset = formset_factory(SelectUserArticleForm)(
|
2018-06-17 19:49:59 +00:00
|
|
|
request.POST or None,
|
2018-07-03 16:53:44 +00:00
|
|
|
form_kwargs={'user': request.user}
|
2018-04-13 18:58:29 +00:00
|
|
|
)
|
2018-04-09 17:40:46 +00:00
|
|
|
|
|
|
|
if invoice_form.is_valid() and article_formset.is_valid():
|
|
|
|
new_invoice_instance = invoice_form.save(commit=False)
|
2016-07-14 11:55:46 +00:00
|
|
|
articles = article_formset
|
2018-04-09 17:40:46 +00:00
|
|
|
# Check if at leat one article has been selected
|
2016-07-14 11:55:46 +00:00
|
|
|
if any(art.cleaned_data for art in articles):
|
2018-04-09 17:40:46 +00:00
|
|
|
# Building a purchase for each article sold
|
2018-07-13 18:19:57 +00:00
|
|
|
purchases = []
|
2018-07-13 20:03:22 +00:00
|
|
|
total_price = 0
|
2016-07-14 11:55:46 +00:00
|
|
|
for art_item in articles:
|
|
|
|
if art_item.cleaned_data:
|
|
|
|
article = art_item.cleaned_data['article']
|
|
|
|
quantity = art_item.cleaned_data['quantity']
|
2018-07-13 20:03:22 +00:00
|
|
|
total_price += article.prix*quantity
|
|
|
|
new_purchase = Vente(
|
2018-04-09 17:40:46 +00:00
|
|
|
facture=new_invoice_instance,
|
2017-10-13 20:47:32 +00:00
|
|
|
name=article.name,
|
|
|
|
prix=article.prix,
|
2017-10-28 02:59:40 +00:00
|
|
|
type_cotisation=article.type_cotisation,
|
2017-10-13 20:47:32 +00:00
|
|
|
duration=article.duration,
|
|
|
|
number=quantity
|
|
|
|
)
|
2018-07-13 18:19:57 +00:00
|
|
|
purchases.append(new_purchase)
|
|
|
|
p = find_payment_method(new_invoice_instance.paiement)
|
2018-07-13 20:03:22 +00:00
|
|
|
if hasattr(p, 'check_price'):
|
|
|
|
price_ok, msg = p.check_price(total_price, user)
|
|
|
|
invoice_form.add_error(None, msg)
|
2018-07-13 18:19:57 +00:00
|
|
|
else:
|
2018-07-13 20:03:22 +00:00
|
|
|
price_ok = True
|
|
|
|
if price_ok:
|
|
|
|
new_invoice_instance.save()
|
|
|
|
for p in purchases:
|
|
|
|
p.facture = new_invoice_instance
|
|
|
|
p.save()
|
|
|
|
|
2018-07-13 18:19:57 +00:00
|
|
|
return new_invoice_instance.paiement.end_payment(
|
|
|
|
new_invoice_instance,
|
|
|
|
request
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
messages.error(
|
|
|
|
request,
|
|
|
|
_("You need to choose at least one article.")
|
2018-07-03 16:53:44 +00:00
|
|
|
)
|
2018-07-10 16:06:58 +00:00
|
|
|
p = Paiement.objects.filter(is_balance=True)
|
|
|
|
if len(p) and p[0].can_use_payment(request.user):
|
|
|
|
balance = user.solde
|
|
|
|
else:
|
|
|
|
balance = None
|
2018-03-31 13:43:46 +00:00
|
|
|
return form(
|
|
|
|
{
|
2018-04-09 17:40:46 +00:00
|
|
|
'factureform': invoice_form,
|
2018-07-10 16:06:58 +00:00
|
|
|
'articlesformset': article_formset,
|
|
|
|
'articlelist': article_list,
|
|
|
|
'balance': balance,
|
|
|
|
'action_name': _('Create'),
|
2018-03-31 13:43:46 +00:00
|
|
|
},
|
2018-07-10 16:06:58 +00:00
|
|
|
'cotisations/facture.html', request
|
2018-03-31 13:43:46 +00:00
|
|
|
)
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-02 13:58:50 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change facture to invoice
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-28 13:04:14 +00:00
|
|
|
@can_change(Facture, 'pdf')
|
2016-07-08 01:27:02 +00:00
|
|
|
def new_facture_pdf(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
2018-04-13 18:58:29 +00:00
|
|
|
View used to generate a custom PDF invoice. It's mainly used to
|
2018-04-09 17:40:46 +00:00
|
|
|
get invoices that are not taken into account, for the administrative
|
|
|
|
point of view.
|
|
|
|
"""
|
2018-04-11 19:53:54 +00:00
|
|
|
# The template needs the list of articles (for the JS part)
|
|
|
|
articles = Article.objects.filter(
|
|
|
|
Q(type_user='All') | Q(type_user=request.user.class_name)
|
|
|
|
)
|
|
|
|
# Building the invocie form and the article formset
|
2018-04-09 17:40:46 +00:00
|
|
|
invoice_form = NewFactureFormPdf(request.POST or None)
|
2018-04-11 19:53:54 +00:00
|
|
|
if request.user.is_class_club:
|
2018-04-13 18:58:29 +00:00
|
|
|
articles_formset = formset_factory(SelectClubArticleForm)(
|
2018-07-13 20:12:33 +00:00
|
|
|
request.POST or None,
|
|
|
|
form_kwargs={'user': request.user}
|
2018-04-13 18:58:29 +00:00
|
|
|
)
|
2018-04-11 19:53:54 +00:00
|
|
|
else:
|
2018-04-13 18:58:29 +00:00
|
|
|
articles_formset = formset_factory(SelectUserArticleForm)(
|
2018-07-13 20:12:33 +00:00
|
|
|
request.POST or None,
|
|
|
|
form_kwargs={'user': request.user}
|
2018-04-13 18:58:29 +00:00
|
|
|
)
|
2018-04-11 19:53:54 +00:00
|
|
|
if invoice_form.is_valid() and articles_formset.is_valid():
|
|
|
|
# Get the article list and build an list out of it
|
|
|
|
# contiaining (article_name, article_price, quantity, total_price)
|
|
|
|
articles_info = []
|
|
|
|
for articles_form in articles_formset:
|
|
|
|
if articles_form.cleaned_data:
|
|
|
|
article = articles_form.cleaned_data['article']
|
|
|
|
quantity = articles_form.cleaned_data['quantity']
|
|
|
|
articles_info.append({
|
|
|
|
'name': article.name,
|
|
|
|
'price': article.prix,
|
|
|
|
'quantity': quantity,
|
|
|
|
'total_price': article.prix * quantity
|
|
|
|
})
|
2018-04-11 17:20:40 +00:00
|
|
|
paid = invoice_form.cleaned_data['paid']
|
|
|
|
recipient = invoice_form.cleaned_data['dest']
|
|
|
|
address = invoice_form.cleaned_data['chambre']
|
2018-04-11 19:53:54 +00:00
|
|
|
total_price = sum(a['total_price'] for a in articles_info)
|
|
|
|
|
2017-11-14 19:00:24 +00:00
|
|
|
return render_invoice(request, {
|
2017-10-13 03:08:30 +00:00
|
|
|
'DATE': timezone.now(),
|
2018-04-11 17:20:40 +00:00
|
|
|
'recipient_name': recipient,
|
|
|
|
'address': address,
|
2018-04-11 19:53:54 +00:00
|
|
|
'article': articles_info,
|
2018-04-09 17:40:46 +00:00
|
|
|
'total': total_price,
|
2017-10-13 03:08:30 +00:00
|
|
|
'paid': paid,
|
2018-01-31 02:27:59 +00:00
|
|
|
'asso_name': AssoOption.get_cached_value('name'),
|
|
|
|
'line1': AssoOption.get_cached_value('adresse1'),
|
|
|
|
'line2': AssoOption.get_cached_value('adresse2'),
|
|
|
|
'siret': AssoOption.get_cached_value('siret'),
|
|
|
|
'email': AssoOption.get_cached_value('contact'),
|
|
|
|
'phone': AssoOption.get_cached_value('telephone'),
|
2017-10-13 03:08:30 +00:00
|
|
|
'tpl_path': os.path.join(settings.BASE_DIR, LOGO_PATH)
|
2018-07-03 11:58:10 +00:00
|
|
|
})
|
2017-10-13 03:08:30 +00:00
|
|
|
return form({
|
2018-04-09 17:40:46 +00:00
|
|
|
'factureform': invoice_form,
|
2018-04-11 19:53:54 +00:00
|
|
|
'action_name': _("Create"),
|
|
|
|
'articlesformset': articles_formset,
|
|
|
|
'articles': articles
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-08 01:27:02 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change facture to invoice
|
2016-07-11 22:05:07 +00:00
|
|
|
@login_required
|
2017-12-27 20:09:00 +00:00
|
|
|
@can_view(Facture)
|
2018-04-15 01:00:05 +00:00
|
|
|
def facture_pdf(request, facture, **_kwargs):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to generate a PDF file from an existing invoice in database
|
|
|
|
Creates a line for each Purchase (thus article sold) and generate the
|
|
|
|
invoice with the total price, the payment method, the address and the
|
|
|
|
legal information for the user.
|
|
|
|
"""
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change vente to purchase
|
2018-04-09 17:40:46 +00:00
|
|
|
purchases_objects = Vente.objects.all().filter(facture=facture)
|
2018-04-11 19:53:54 +00:00
|
|
|
# Get the article list and build an list out of it
|
|
|
|
# contiaining (article_name, article_price, quantity, total_price)
|
|
|
|
purchases_info = []
|
2018-04-09 17:40:46 +00:00
|
|
|
for purchase in purchases_objects:
|
2018-04-11 19:53:54 +00:00
|
|
|
purchases_info.append({
|
|
|
|
'name': purchase.name,
|
|
|
|
'price': purchase.prix,
|
|
|
|
'quantity': purchase.number,
|
|
|
|
'total_price': purchase.prix_total
|
|
|
|
})
|
2017-11-14 19:00:24 +00:00
|
|
|
return render_invoice(request, {
|
2017-10-13 03:08:30 +00:00
|
|
|
'paid': True,
|
|
|
|
'fid': facture.id,
|
|
|
|
'DATE': facture.date,
|
2018-04-11 17:20:40 +00:00
|
|
|
'recipient_name': "{} {}".format(
|
|
|
|
facture.user.name,
|
|
|
|
facture.user.surname
|
|
|
|
),
|
2018-04-11 18:40:59 +00:00
|
|
|
'address': facture.user.room,
|
2018-04-11 19:53:54 +00:00
|
|
|
'article': purchases_info,
|
2017-10-13 03:08:30 +00:00
|
|
|
'total': facture.prix_total(),
|
2018-01-31 02:27:59 +00:00
|
|
|
'asso_name': AssoOption.get_cached_value('name'),
|
|
|
|
'line1': AssoOption.get_cached_value('adresse1'),
|
|
|
|
'line2': AssoOption.get_cached_value('adresse2'),
|
|
|
|
'siret': AssoOption.get_cached_value('siret'),
|
|
|
|
'email': AssoOption.get_cached_value('contact'),
|
|
|
|
'phone': AssoOption.get_cached_value('telephone'),
|
2017-10-13 03:08:30 +00:00
|
|
|
'tpl_path': os.path.join(settings.BASE_DIR, LOGO_PATH)
|
2018-07-03 11:58:10 +00:00
|
|
|
})
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-11 22:05:07 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change facture to invoice
|
2016-07-13 23:54:06 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_edit(Facture)
|
2018-04-15 01:00:05 +00:00
|
|
|
def edit_facture(request, facture, **_kwargs):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to edit an existing invoice.
|
|
|
|
Articles can be added or remove to the invoice and quantity
|
|
|
|
can be set as desired. This is also the view used to invalidate
|
|
|
|
an invoice.
|
|
|
|
"""
|
2018-07-10 16:38:05 +00:00
|
|
|
invoice_form = FactureForm(
|
2018-04-13 18:58:29 +00:00
|
|
|
request.POST or None,
|
|
|
|
instance=facture,
|
|
|
|
user=request.user
|
|
|
|
)
|
2018-04-09 17:40:46 +00:00
|
|
|
purchases_objects = Vente.objects.filter(facture=facture)
|
|
|
|
purchase_form_set = modelformset_factory(
|
2017-10-13 20:47:32 +00:00
|
|
|
Vente,
|
|
|
|
fields=('name', 'number'),
|
|
|
|
extra=0,
|
2018-04-09 17:40:46 +00:00
|
|
|
max_num=len(purchases_objects)
|
2018-07-03 11:58:10 +00:00
|
|
|
)
|
2018-04-13 18:58:29 +00:00
|
|
|
purchase_form = purchase_form_set(
|
|
|
|
request.POST or None,
|
|
|
|
queryset=purchases_objects
|
|
|
|
)
|
2018-04-09 17:40:46 +00:00
|
|
|
if invoice_form.is_valid() and purchase_form.is_valid():
|
|
|
|
if invoice_form.changed_data:
|
|
|
|
invoice_form.save()
|
|
|
|
purchase_form.save()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The invoice has been successfully edited.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index'))
|
2017-10-13 03:08:30 +00:00
|
|
|
return form({
|
2018-04-09 17:40:46 +00:00
|
|
|
'factureform': invoice_form,
|
|
|
|
'venteform': purchase_form
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/edit_facture.html', request)
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-02 13:58:50 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change facture to invoice
|
2016-07-14 20:29:30 +00:00
|
|
|
@login_required
|
2017-12-09 01:15:11 +00:00
|
|
|
@can_delete(Facture)
|
2018-04-15 01:00:05 +00:00
|
|
|
def del_facture(request, facture, **_kwargs):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to delete an existing invocie.
|
|
|
|
"""
|
2016-07-18 16:37:52 +00:00
|
|
|
if request.method == "POST":
|
2018-04-09 17:40:46 +00:00
|
|
|
facture.delete()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
2018-03-31 15:23:34 +00:00
|
|
|
_("The invoice has been successfully deleted.")
|
2018-03-31 13:43:46 +00:00
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index'))
|
2017-10-13 03:08:30 +00:00
|
|
|
return form({
|
|
|
|
'objet': facture,
|
2018-04-09 17:40:46 +00:00
|
|
|
'objet_name': _("Invoice")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/delete.html', request)
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-14 20:29:30 +00:00
|
|
|
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_create(Article)
|
2016-07-06 18:57:31 +00:00
|
|
|
def add_article(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to add an article.
|
2018-04-13 18:58:29 +00:00
|
|
|
|
2018-04-09 17:40:46 +00:00
|
|
|
.. note:: If a purchase has already been sold, the price are calculated
|
|
|
|
once and for all. That means even if the price of an article is edited
|
|
|
|
later, it won't change the invoice. That is really important to keep
|
|
|
|
this behaviour in order not to modify all the past and already
|
|
|
|
accepted invoices.
|
|
|
|
"""
|
2016-07-06 18:57:31 +00:00
|
|
|
article = ArticleForm(request.POST or None)
|
|
|
|
if article.is_valid():
|
2018-03-31 15:18:39 +00:00
|
|
|
article.save()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The article has been successfully created.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-article'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': article,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _("Add"),
|
|
|
|
'title': _("New article")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-08 01:27:02 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_edit(Article)
|
2018-04-15 01:00:05 +00:00
|
|
|
def edit_article(request, article_instance, **_kwargs):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to edit an article.
|
|
|
|
"""
|
2016-07-08 01:27:02 +00:00
|
|
|
article = ArticleForm(request.POST or None, instance=article_instance)
|
|
|
|
if article.is_valid():
|
2018-03-31 22:06:44 +00:00
|
|
|
if article.changed_data:
|
|
|
|
article.save()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The article has been successfully edited.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-article'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': article,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _('Edit'),
|
|
|
|
'title': _("Edit article")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-06 18:57:31 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-13 17:56:16 +00:00
|
|
|
@can_delete_set(Article)
|
|
|
|
def del_article(request, instances):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to delete one of the articles.
|
|
|
|
"""
|
2017-12-13 17:56:16 +00:00
|
|
|
article = DelArticleForm(request.POST or None, instances=instances)
|
2016-07-06 18:57:31 +00:00
|
|
|
if article.is_valid():
|
|
|
|
article_del = article.cleaned_data['articles']
|
2018-03-31 15:18:39 +00:00
|
|
|
article_del.delete()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The article(s) have been successfully deleted.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-article'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': article,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _("Delete"),
|
|
|
|
'title': _("Delete article")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-06 18:57:31 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change paiement to payment
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_create(Paiement)
|
2016-07-06 19:43:39 +00:00
|
|
|
def add_paiement(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to add a payment method.
|
|
|
|
"""
|
2018-07-02 19:13:13 +00:00
|
|
|
payment = PaiementForm(request.POST or None, prefix='payment')
|
|
|
|
payment_method = payment_method_factory(
|
|
|
|
payment.instance,
|
|
|
|
request.POST or None,
|
|
|
|
prefix='payment_method'
|
|
|
|
)
|
|
|
|
if payment.is_valid() and payment_method.is_valid():
|
|
|
|
payment = payment.save()
|
2018-07-05 13:21:51 +00:00
|
|
|
payment_method.save(payment)
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The payment method has been successfully created.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-paiement'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': payment,
|
2018-07-02 19:13:13 +00:00
|
|
|
'payment_method': payment_method,
|
2018-07-11 13:15:58 +00:00
|
|
|
'action_name': _("Add"),
|
|
|
|
'title': _("New payment method")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-08 01:27:02 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : chnage paiement to Payment
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_edit(Paiement)
|
2018-04-15 13:34:51 +00:00
|
|
|
def edit_paiement(request, paiement_instance, **_kwargs):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to edit a payment method.
|
|
|
|
"""
|
2018-07-02 19:13:13 +00:00
|
|
|
payment = PaiementForm(
|
|
|
|
request.POST or None,
|
|
|
|
instance=paiement_instance,
|
|
|
|
prefix="payment"
|
|
|
|
)
|
|
|
|
payment_method = payment_method_factory(
|
|
|
|
paiement_instance,
|
|
|
|
request.POST or None,
|
2018-07-03 14:46:29 +00:00
|
|
|
prefix='payment_method',
|
|
|
|
creation=False
|
2018-07-02 19:13:13 +00:00
|
|
|
)
|
|
|
|
|
2018-07-16 19:46:13 +00:00
|
|
|
if payment.is_valid() and \
|
|
|
|
(payment_method is None or payment_method.is_valid()):
|
2018-07-02 19:13:13 +00:00
|
|
|
payment.save()
|
2018-07-16 19:46:13 +00:00
|
|
|
if payment_method is not None:
|
|
|
|
payment_method.save()
|
2018-07-02 19:13:13 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The payement method has been successfully edited.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-paiement'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': payment,
|
2018-07-02 19:13:13 +00:00
|
|
|
'payment_method': payment_method,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _("Edit"),
|
|
|
|
'title': _("Edit payment method")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-06 19:43:39 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change paiement to payment
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-13 17:56:16 +00:00
|
|
|
@can_delete_set(Paiement)
|
|
|
|
def del_paiement(request, instances):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to delete a set of payment methods.
|
|
|
|
"""
|
|
|
|
payment = DelPaiementForm(request.POST or None, instances=instances)
|
|
|
|
if payment.is_valid():
|
|
|
|
payment_dels = payment.cleaned_data['paiements']
|
|
|
|
for payment_del in payment_dels:
|
2016-07-06 19:43:39 +00:00
|
|
|
try:
|
2018-04-09 17:40:46 +00:00
|
|
|
payment_del.delete()
|
2017-10-13 03:08:30 +00:00
|
|
|
messages.success(
|
2017-10-13 20:47:32 +00:00
|
|
|
request,
|
2018-03-31 13:43:46 +00:00
|
|
|
_("The payment method %(method_name)s has been \
|
2018-03-31 15:23:34 +00:00
|
|
|
successfully deleted.") % {
|
2018-04-13 11:40:02 +00:00
|
|
|
'method_name': payment_del
|
2018-03-31 13:43:46 +00:00
|
|
|
}
|
|
|
|
)
|
2016-07-06 19:43:39 +00:00
|
|
|
except ProtectedError:
|
2017-10-13 03:08:30 +00:00
|
|
|
messages.error(
|
|
|
|
request,
|
2018-03-31 15:23:34 +00:00
|
|
|
_("The payment method %(method_name)s can't be deleted \
|
2018-03-31 13:43:46 +00:00
|
|
|
because there are invoices using it.") % {
|
2018-04-13 11:40:02 +00:00
|
|
|
'method_name': payment_del
|
2018-03-31 13:43:46 +00:00
|
|
|
}
|
2017-10-13 03:08:30 +00:00
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-paiement'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': payment,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _("Delete"),
|
|
|
|
'title': _("Delete payment method")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-06 19:43:39 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change banque to bank
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_create(Banque)
|
2016-07-06 20:20:49 +00:00
|
|
|
def add_banque(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to add a bank.
|
|
|
|
"""
|
|
|
|
bank = BanqueForm(request.POST or None)
|
|
|
|
if bank.is_valid():
|
|
|
|
bank.save()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The bank has been successfully created.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-banque'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': bank,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _("Add"),
|
|
|
|
'title': _("New bank")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-08 01:27:02 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change banque to bank
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-08 22:59:20 +00:00
|
|
|
@can_edit(Banque)
|
2018-04-15 01:00:05 +00:00
|
|
|
def edit_banque(request, banque_instance, **_kwargs):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to edit a bank.
|
|
|
|
"""
|
|
|
|
bank = BanqueForm(request.POST or None, instance=banque_instance)
|
|
|
|
if bank.is_valid():
|
|
|
|
if bank.changed_data:
|
|
|
|
bank.save()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The bank has been successfully edited")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-banque'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': bank,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _("Edit"),
|
|
|
|
'title': _("Edit bank")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-06 20:20:49 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : chnage banque to bank
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-13 17:56:16 +00:00
|
|
|
@can_delete_set(Banque)
|
|
|
|
def del_banque(request, instances):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to delete a set of banks.
|
|
|
|
"""
|
|
|
|
bank = DelBanqueForm(request.POST or None, instances=instances)
|
|
|
|
if bank.is_valid():
|
|
|
|
bank_dels = bank.cleaned_data['banques']
|
|
|
|
for bank_del in bank_dels:
|
2016-07-06 20:20:49 +00:00
|
|
|
try:
|
2018-04-09 17:40:46 +00:00
|
|
|
bank_del.delete()
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("The bank %(bank_name)s has been successfully \
|
|
|
|
deleted.") % {
|
2018-04-13 11:40:02 +00:00
|
|
|
'bank_name': bank_del
|
2018-03-31 13:43:46 +00:00
|
|
|
}
|
|
|
|
)
|
2016-07-06 20:20:49 +00:00
|
|
|
except ProtectedError:
|
2018-03-31 13:43:46 +00:00
|
|
|
messages.error(
|
|
|
|
request,
|
|
|
|
_("The bank %(bank_name)s can't be deleted \
|
|
|
|
because there are invoices using it.") % {
|
2018-04-13 11:40:02 +00:00
|
|
|
'bank_name': bank_del
|
2018-03-31 13:43:46 +00:00
|
|
|
}
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:index-banque'))
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
|
|
|
'factureform': bank,
|
2018-07-13 20:23:32 +00:00
|
|
|
'action_name': _("Delete"),
|
|
|
|
'title': _("Delete bank")
|
2018-07-03 11:58:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|
2016-07-06 20:20:49 +00:00
|
|
|
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change facture to invoice
|
2016-07-17 18:08:56 +00:00
|
|
|
@login_required
|
2017-12-27 20:09:00 +00:00
|
|
|
@can_view_all(Facture)
|
2017-12-28 13:04:14 +00:00
|
|
|
@can_change(Facture, 'control')
|
2016-07-17 18:08:56 +00:00
|
|
|
def control(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to control the invoices all at once.
|
|
|
|
"""
|
2018-01-30 22:07:43 +00:00
|
|
|
pagination_number = GeneralOption.get_cached_value('pagination_number')
|
2018-04-13 18:58:29 +00:00
|
|
|
invoice_list = (Facture.objects.select_related('user').
|
|
|
|
select_related('paiement'))
|
2018-04-09 17:40:46 +00:00
|
|
|
invoice_list = SortTable.sort(
|
|
|
|
invoice_list,
|
2017-10-22 00:33:44 +00:00
|
|
|
request.GET.get('col'),
|
|
|
|
request.GET.get('order'),
|
|
|
|
SortTable.COTISATIONS_CONTROL
|
|
|
|
)
|
2018-04-09 17:40:46 +00:00
|
|
|
control_invoices_formset = modelformset_factory(
|
2017-10-13 20:47:32 +00:00
|
|
|
Facture,
|
|
|
|
fields=('control', 'valid'),
|
|
|
|
extra=0
|
2018-04-09 17:40:46 +00:00
|
|
|
)
|
|
|
|
invoice_list = re2o_paginator(request, invoice_list, pagination_number)
|
|
|
|
control_invoices_form = control_invoices_formset(
|
|
|
|
request.POST or None,
|
|
|
|
queryset=invoice_list.object_list
|
|
|
|
)
|
|
|
|
if control_invoices_form.is_valid():
|
|
|
|
control_invoices_form.save()
|
2018-04-03 01:47:03 +00:00
|
|
|
reversion.set_comment("Controle")
|
2018-05-10 20:28:27 +00:00
|
|
|
messages.success(
|
|
|
|
request,
|
|
|
|
_("Your changes have been properly taken into account.")
|
|
|
|
)
|
2017-10-26 22:11:18 +00:00
|
|
|
return redirect(reverse('cotisations:control'))
|
2017-10-13 03:08:30 +00:00
|
|
|
return render(request, 'cotisations/control.html', {
|
2018-04-09 17:40:46 +00:00
|
|
|
'facture_list': invoice_list,
|
|
|
|
'controlform': control_invoices_form
|
2018-07-03 11:58:10 +00:00
|
|
|
})
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-17 18:08:56 +00:00
|
|
|
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-27 20:09:00 +00:00
|
|
|
@can_view_all(Article)
|
2016-07-08 01:27:02 +00:00
|
|
|
def index_article(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to display the list of all available articles.
|
|
|
|
"""
|
|
|
|
# TODO : Offer other means of sorting
|
2016-07-08 01:27:02 +00:00
|
|
|
article_list = Article.objects.order_by('name')
|
2017-10-13 03:08:30 +00:00
|
|
|
return render(request, 'cotisations/index_article.html', {
|
|
|
|
'article_list': article_list
|
2018-07-03 11:58:10 +00:00
|
|
|
})
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-08 01:27:02 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change paiement to payment
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-27 20:09:00 +00:00
|
|
|
@can_view_all(Paiement)
|
2016-07-08 01:27:02 +00:00
|
|
|
def index_paiement(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to display the list of all available payment methods.
|
|
|
|
"""
|
|
|
|
payment_list = Paiement.objects.order_by('moyen')
|
2017-10-13 03:08:30 +00:00
|
|
|
return render(request, 'cotisations/index_paiement.html', {
|
2018-04-09 17:40:46 +00:00
|
|
|
'paiement_list': payment_list
|
2018-07-03 11:58:10 +00:00
|
|
|
})
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-08 01:27:02 +00:00
|
|
|
|
2018-03-31 13:43:46 +00:00
|
|
|
# TODO : change banque to bank
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-27 20:09:00 +00:00
|
|
|
@can_view_all(Banque)
|
2016-07-08 01:27:02 +00:00
|
|
|
def index_banque(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to display the list of all available banks.
|
|
|
|
"""
|
|
|
|
bank_list = Banque.objects.order_by('name')
|
2017-10-13 03:08:30 +00:00
|
|
|
return render(request, 'cotisations/index_banque.html', {
|
2018-04-09 17:40:46 +00:00
|
|
|
'banque_list': bank_list
|
2018-07-03 11:58:10 +00:00
|
|
|
})
|
2017-10-13 03:08:30 +00:00
|
|
|
|
2016-07-08 01:27:02 +00:00
|
|
|
|
2016-07-08 10:35:53 +00:00
|
|
|
@login_required
|
2017-12-27 20:09:00 +00:00
|
|
|
@can_view_all(Facture)
|
2016-07-02 13:58:50 +00:00
|
|
|
def index(request):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
|
|
|
View used to display the list of all exisitng invoices.
|
|
|
|
"""
|
2018-01-30 22:07:43 +00:00
|
|
|
pagination_number = GeneralOption.get_cached_value('pagination_number')
|
2018-04-09 17:40:46 +00:00
|
|
|
invoice_list = Facture.objects.select_related('user')\
|
2017-10-22 00:33:44 +00:00
|
|
|
.select_related('paiement').prefetch_related('vente_set')
|
2018-04-09 17:40:46 +00:00
|
|
|
invoice_list = SortTable.sort(
|
|
|
|
invoice_list,
|
2017-10-22 00:33:44 +00:00
|
|
|
request.GET.get('col'),
|
|
|
|
request.GET.get('order'),
|
|
|
|
SortTable.COTISATIONS_INDEX
|
|
|
|
)
|
2018-04-09 17:40:46 +00:00
|
|
|
invoice_list = re2o_paginator(request, invoice_list, pagination_number)
|
2017-10-13 03:08:30 +00:00
|
|
|
return render(request, 'cotisations/index.html', {
|
2018-04-09 17:40:46 +00:00
|
|
|
'facture_list': invoice_list
|
2018-07-03 11:58:10 +00:00
|
|
|
})
|
2018-01-11 18:25:41 +00:00
|
|
|
|
|
|
|
|
2018-07-03 19:38:10 +00:00
|
|
|
# TODO : change solde to balance
|
2018-01-12 00:07:25 +00:00
|
|
|
@login_required
|
2018-07-03 19:38:10 +00:00
|
|
|
@can_edit(User)
|
|
|
|
def credit_solde(request, user, **_kwargs):
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
2018-07-03 19:38:10 +00:00
|
|
|
View used to edit the balance of a user.
|
|
|
|
Can be use either to increase or decrease a user's balance.
|
2018-04-09 17:40:46 +00:00
|
|
|
"""
|
2018-07-16 18:14:26 +00:00
|
|
|
try:
|
|
|
|
balance = find_payment_method(Paiement.objects.get(is_balance=True))
|
|
|
|
except Paiement.DoesNotExist:
|
|
|
|
credit_allowed = False
|
|
|
|
else:
|
|
|
|
credit_allowed = (
|
|
|
|
balance is not None
|
|
|
|
and balance.can_credit_balance(request.user)
|
|
|
|
)
|
|
|
|
if not credit_allowed:
|
|
|
|
messages.error(
|
|
|
|
request,
|
|
|
|
_("You are not allowed to credit your balance.")
|
|
|
|
)
|
|
|
|
return redirect(reverse(
|
|
|
|
'users:profil',
|
|
|
|
kwargs={'userid': user.id}
|
|
|
|
))
|
|
|
|
|
2018-04-09 17:40:46 +00:00
|
|
|
refill_form = RechargeForm(request.POST or None, user=request.user)
|
|
|
|
if refill_form.is_valid():
|
2018-07-13 20:03:22 +00:00
|
|
|
price = refill_form.cleaned_data['value']
|
2018-07-10 14:46:49 +00:00
|
|
|
invoice = Facture(user=user)
|
2018-07-03 17:30:31 +00:00
|
|
|
invoice.paiement = refill_form.cleaned_data['payment']
|
2018-07-13 20:03:22 +00:00
|
|
|
p = find_payment_method(invoice.paiement)
|
|
|
|
if hasattr(p, 'check_price'):
|
|
|
|
price_ok, msg = p.check_price(price, user)
|
|
|
|
refill_form.add_error(None, msg)
|
|
|
|
else:
|
|
|
|
price_ok = True
|
|
|
|
if price_ok:
|
|
|
|
invoice.valid = True
|
|
|
|
invoice.save()
|
|
|
|
Vente.objects.create(
|
|
|
|
facture=invoice,
|
|
|
|
name='solde',
|
|
|
|
prix=refill_form.cleaned_data['value'],
|
|
|
|
number=1
|
|
|
|
)
|
|
|
|
return invoice.paiement.end_payment(invoice, request)
|
2018-07-13 15:52:49 +00:00
|
|
|
p = get_object_or_404(Paiement, is_balance=True)
|
2018-04-09 17:40:46 +00:00
|
|
|
return form({
|
2018-07-03 19:38:10 +00:00
|
|
|
'factureform': refill_form,
|
|
|
|
'balance': request.user.solde,
|
|
|
|
'title': _("Refill your balance"),
|
2018-07-13 15:52:49 +00:00
|
|
|
'action_name': _("Pay"),
|
|
|
|
'max_balance': p.payment_method.maximum_balance,
|
2018-07-03 19:38:10 +00:00
|
|
|
}, 'cotisations/facture.html', request)
|