2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2016,2017
|
|
|
|
# - Skia <skia@libskia.so>
|
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a published by the Free Software
|
|
|
|
# Foundation; either version 3 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 Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
from django.shortcuts import get_object_or_404
|
2017-03-27 21:24:25 +00:00
|
|
|
from django.http import Http404
|
2016-09-28 09:07:32 +00:00
|
|
|
from django.core.exceptions import PermissionDenied
|
2016-09-29 16:17:44 +00:00
|
|
|
from django.views.generic import ListView, DetailView, RedirectView, TemplateView
|
2017-04-03 09:57:28 +00:00
|
|
|
from django.views.generic.base import View
|
2018-10-04 19:29:19 +00:00
|
|
|
from django.views.generic.edit import (
|
|
|
|
UpdateView,
|
|
|
|
CreateView,
|
|
|
|
DeleteView,
|
|
|
|
ProcessFormView,
|
|
|
|
FormMixin,
|
2018-10-19 17:25:55 +00:00
|
|
|
FormView,
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2016-03-29 08:30:24 +00:00
|
|
|
from django.forms.models import modelform_factory
|
|
|
|
from django.forms import CheckboxSelectMultiple
|
2016-09-28 09:07:32 +00:00
|
|
|
from django.core.urlresolvers import reverse_lazy, reverse
|
2016-10-03 17:30:05 +00:00
|
|
|
from django.http import HttpResponseRedirect, HttpResponse
|
2016-04-12 11:08:37 +00:00
|
|
|
from django.utils import timezone
|
2016-04-15 09:50:31 +00:00
|
|
|
from django import forms
|
2016-06-26 17:30:28 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2016-07-17 10:38:02 +00:00
|
|
|
from django.conf import settings
|
2016-11-25 15:04:55 +00:00
|
|
|
from django.db import DataError, transaction, models
|
2016-04-12 11:08:37 +00:00
|
|
|
|
2016-06-26 17:30:28 +00:00
|
|
|
import re
|
2016-09-13 00:04:49 +00:00
|
|
|
import pytz
|
|
|
|
from datetime import date, timedelta, datetime
|
2016-08-19 21:24:23 +00:00
|
|
|
from ajax_select.fields import AutoCompleteSelectField, AutoCompleteSelectMultipleField
|
2017-06-12 07:47:24 +00:00
|
|
|
from ajax_select import make_ajax_field
|
2016-03-28 12:54:35 +00:00
|
|
|
|
2018-10-19 17:25:55 +00:00
|
|
|
from core.views import CanViewMixin, TabedViewMixin, CanEditMixin
|
2017-06-12 07:47:24 +00:00
|
|
|
from core.views.forms import LoginForm, SelectDate, SelectDateTime
|
2016-08-26 18:56:16 +00:00
|
|
|
from core.models import User
|
2016-12-10 00:58:30 +00:00
|
|
|
from subscription.models import Subscription
|
2018-10-04 19:29:19 +00:00
|
|
|
from counter.models import (
|
|
|
|
Counter,
|
|
|
|
Customer,
|
2018-10-17 23:16:26 +00:00
|
|
|
StudentCard,
|
2018-10-04 19:29:19 +00:00
|
|
|
Product,
|
|
|
|
Selling,
|
|
|
|
Refilling,
|
|
|
|
ProductType,
|
|
|
|
CashRegisterSummary,
|
|
|
|
CashRegisterSummaryItem,
|
|
|
|
Eticket,
|
|
|
|
Permanency,
|
|
|
|
)
|
2016-09-15 09:07:03 +00:00
|
|
|
from accounting.models import CurrencyField
|
2016-03-28 12:54:35 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class CounterAdminMixin(View):
|
2017-04-03 09:57:28 +00:00
|
|
|
"""
|
|
|
|
This view is made to protect counter admin section
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-04-03 13:00:13 +00:00
|
|
|
edit_group = [settings.SITH_GROUP_COUNTER_ADMIN_ID]
|
|
|
|
edit_club = []
|
|
|
|
|
2017-04-03 11:50:28 +00:00
|
|
|
def _test_group(self, user):
|
2017-04-03 13:00:13 +00:00
|
|
|
for g in self.edit_group:
|
2017-04-03 11:50:28 +00:00
|
|
|
if user.is_in_group(g):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2017-04-03 13:00:13 +00:00
|
|
|
def _test_club(self, user):
|
|
|
|
for c in self.edit_club:
|
|
|
|
if c.can_be_edited_by(user):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2017-04-03 09:57:28 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2018-10-04 19:29:19 +00:00
|
|
|
if not (
|
|
|
|
request.user.is_root
|
|
|
|
or self._test_group(request.user)
|
|
|
|
or self._test_club(request.user)
|
|
|
|
):
|
2017-04-03 09:57:28 +00:00
|
|
|
raise PermissionDenied
|
2017-04-06 21:29:43 +00:00
|
|
|
return super(CounterAdminMixin, self).dispatch(request, *args, **kwargs)
|
2017-04-03 09:57:28 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2018-10-19 17:25:55 +00:00
|
|
|
class StudentCardForm(forms.ModelForm):
|
|
|
|
"""
|
|
|
|
Form for adding student cards
|
|
|
|
Only used for user profile since CounterClick is to complicated
|
|
|
|
"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = StudentCard
|
|
|
|
fields = ["uid"]
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
cleaned_data = super(StudentCardForm, self).clean()
|
|
|
|
uid = cleaned_data.get("uid")
|
|
|
|
if not StudentCard.is_valid(uid):
|
|
|
|
raise forms.ValidationError(_("This uid is invalid"), code="invalid")
|
|
|
|
return cleaned_data
|
|
|
|
|
|
|
|
|
|
|
|
class StudentCardDeleteView(DeleteView):
|
|
|
|
"""
|
|
|
|
View used to delete a card from a user
|
|
|
|
"""
|
|
|
|
|
|
|
|
model = StudentCard
|
|
|
|
template_name = "core/delete_confirm.jinja"
|
|
|
|
pk_url_kwarg = "card_id"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
self.customer = get_object_or_404(Customer, pk=kwargs["customer_id"])
|
|
|
|
if not self.get_object().can_edit(self.customer.user):
|
|
|
|
raise PermissionDenied
|
|
|
|
return super(StudentCardDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_success_url(self, **kwargs):
|
|
|
|
return reverse_lazy(
|
|
|
|
"core:user_prefs", kwargs={"user_id": self.customer.user.pk}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2016-04-15 09:50:31 +00:00
|
|
|
class GetUserForm(forms.Form):
|
2016-04-18 02:37:37 +00:00
|
|
|
"""
|
|
|
|
The Form class aims at providing a valid user_id field in its cleaned data, in order to pass it to some view,
|
|
|
|
reverse function, or any other use.
|
|
|
|
|
|
|
|
The Form implements a nice JS widget allowing the user to type a customer account id, or search the database with
|
|
|
|
some nickname, first name, or last name (TODO)
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2018-10-19 17:25:55 +00:00
|
|
|
code = forms.CharField(
|
|
|
|
label="Code", max_length=StudentCard.UID_SIZE, required=False
|
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
id = AutoCompleteSelectField(
|
|
|
|
"users", required=False, label=_("Select user"), help_text=None
|
|
|
|
)
|
2016-04-15 09:50:31 +00:00
|
|
|
|
2016-06-26 17:30:28 +00:00
|
|
|
def as_p(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.fields["code"].widget.attrs["autofocus"] = True
|
2016-06-26 17:30:28 +00:00
|
|
|
return super(GetUserForm, self).as_p()
|
|
|
|
|
2016-04-18 02:37:37 +00:00
|
|
|
def clean(self):
|
|
|
|
cleaned_data = super(GetUserForm, self).clean()
|
2016-08-01 22:32:55 +00:00
|
|
|
cus = None
|
2018-10-04 19:29:19 +00:00
|
|
|
if cleaned_data["code"] != "":
|
2018-10-17 23:16:26 +00:00
|
|
|
if len(cleaned_data["code"]) == StudentCard.UID_SIZE:
|
|
|
|
card = StudentCard.objects.filter(uid=cleaned_data["code"])
|
|
|
|
if card.exists():
|
|
|
|
cus = card.first().customer
|
|
|
|
if cus is None:
|
|
|
|
cus = Customer.objects.filter(
|
|
|
|
account_id__iexact=cleaned_data["code"]
|
|
|
|
).first()
|
2018-10-04 19:29:19 +00:00
|
|
|
elif cleaned_data["id"] is not None:
|
|
|
|
cus = Customer.objects.filter(user=cleaned_data["id"]).first()
|
|
|
|
if cus is None or not cus.can_buy:
|
2016-07-27 18:05:45 +00:00
|
|
|
raise forms.ValidationError(_("User not found"))
|
2018-10-04 19:29:19 +00:00
|
|
|
cleaned_data["user_id"] = cus.user.id
|
|
|
|
cleaned_data["user"] = cus.user
|
2016-04-18 02:37:37 +00:00
|
|
|
return cleaned_data
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-07-17 09:38:19 +00:00
|
|
|
class RefillForm(forms.ModelForm):
|
2018-10-04 19:29:19 +00:00
|
|
|
error_css_class = "error"
|
|
|
|
required_css_class = "required"
|
|
|
|
amount = forms.FloatField(
|
|
|
|
min_value=0, widget=forms.NumberInput(attrs={"class": "focus"})
|
|
|
|
)
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-07-17 09:38:19 +00:00
|
|
|
class Meta:
|
|
|
|
model = Refilling
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["amount", "payment_method", "bank"]
|
2016-07-17 09:38:19 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterTabsMixin(TabedViewMixin):
|
|
|
|
def get_tabs_title(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
if hasattr(self.object, "stock_owner"):
|
2017-01-03 13:50:49 +00:00
|
|
|
return self.object.stock_owner.counter
|
|
|
|
else:
|
|
|
|
return self.object
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
def get_list_of_tabs(self):
|
|
|
|
tab_list = []
|
2018-10-04 19:29:19 +00:00
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse_lazy(
|
|
|
|
"counter:details",
|
|
|
|
kwargs={
|
|
|
|
"counter_id": self.object.stock_owner.counter.id
|
|
|
|
if hasattr(self.object, "stock_owner")
|
|
|
|
else self.object.id
|
|
|
|
},
|
|
|
|
),
|
|
|
|
"slug": "counter",
|
|
|
|
"name": _("Counter"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
if (
|
|
|
|
self.object.stock_owner.counter.type
|
|
|
|
if hasattr(self.object, "stock_owner")
|
|
|
|
else self.object.type == "BAR"
|
|
|
|
):
|
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse_lazy(
|
|
|
|
"counter:cash_summary",
|
|
|
|
kwargs={
|
|
|
|
"counter_id": self.object.stock_owner.counter.id
|
|
|
|
if hasattr(self.object, "stock_owner")
|
|
|
|
else self.object.id
|
|
|
|
},
|
|
|
|
),
|
|
|
|
"slug": "cash_summary",
|
|
|
|
"name": _("Cash summary"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse_lazy(
|
|
|
|
"counter:last_ops",
|
|
|
|
kwargs={
|
|
|
|
"counter_id": self.object.stock_owner.counter.id
|
|
|
|
if hasattr(self.object, "stock_owner")
|
|
|
|
else self.object.id
|
|
|
|
},
|
|
|
|
),
|
|
|
|
"slug": "last_ops",
|
|
|
|
"name": _("Last operations"),
|
|
|
|
}
|
|
|
|
)
|
2017-05-01 14:53:30 +00:00
|
|
|
try:
|
2018-10-04 19:29:19 +00:00
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse_lazy(
|
|
|
|
"stock:take_items",
|
|
|
|
kwargs={
|
|
|
|
"stock_id": self.object.stock.id
|
|
|
|
if hasattr(self.object, "stock")
|
|
|
|
else self.object.stock_owner.id
|
|
|
|
},
|
|
|
|
),
|
|
|
|
"slug": "take_items_from_stock",
|
|
|
|
"name": _("Take items from stock"),
|
|
|
|
}
|
|
|
|
)
|
2017-06-12 07:47:24 +00:00
|
|
|
except:
|
|
|
|
pass # The counter just have no stock
|
2016-09-28 09:07:32 +00:00
|
|
|
return tab_list
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
class CounterMain(
|
|
|
|
CounterTabsMixin, CanViewMixin, DetailView, ProcessFormView, FormMixin
|
|
|
|
):
|
2016-03-31 08:36:00 +00:00
|
|
|
"""
|
|
|
|
The public (barman) view
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-03-28 12:54:35 +00:00
|
|
|
model = Counter
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/counter_main.jinja"
|
2016-03-28 12:54:35 +00:00
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
form_class = (
|
|
|
|
GetUserForm
|
|
|
|
) # Form to enter a client code and get the corresponding user id
|
2016-09-28 09:07:32 +00:00
|
|
|
current_tab = "counter"
|
2016-03-29 08:30:24 +00:00
|
|
|
|
2016-09-26 09:17:00 +00:00
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.object.type == "BAR" and not (
|
|
|
|
"counter_token" in self.request.session.keys()
|
|
|
|
and self.request.session["counter_token"] == self.object.token
|
|
|
|
): # Check the token to avoid the bar to be stolen
|
|
|
|
return HttpResponseRedirect(
|
|
|
|
reverse_lazy(
|
|
|
|
"counter:details",
|
|
|
|
args=self.args,
|
|
|
|
kwargs={"counter_id": self.object.id},
|
|
|
|
)
|
|
|
|
+ "?bad_location"
|
|
|
|
)
|
2016-09-26 09:17:00 +00:00
|
|
|
return super(CounterMain, self).post(request, *args, **kwargs)
|
|
|
|
|
2016-04-12 08:00:47 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
2016-04-12 11:08:37 +00:00
|
|
|
"""
|
2016-04-18 02:37:37 +00:00
|
|
|
We handle here the login form for the barman
|
2016-04-12 11:08:37 +00:00
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.request.method == "POST":
|
2016-04-18 02:37:37 +00:00
|
|
|
self.object = self.get_object()
|
2016-09-12 15:34:33 +00:00
|
|
|
self.object.update_activity()
|
2016-04-15 09:50:31 +00:00
|
|
|
kwargs = super(CounterMain, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["login_form"] = LoginForm()
|
|
|
|
kwargs["login_form"].fields["username"].widget.attrs["autofocus"] = True
|
|
|
|
kwargs[
|
|
|
|
"login_form"
|
|
|
|
].cleaned_data = {} # add_error fails if there are no cleaned_data
|
2016-08-20 14:09:46 +00:00
|
|
|
if "credentials" in self.request.GET:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["login_form"].add_error(None, _("Bad credentials"))
|
2016-09-08 23:54:26 +00:00
|
|
|
if "sellers" in self.request.GET:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["login_form"].add_error(None, _("User is not barman"))
|
|
|
|
kwargs["form"] = self.get_form()
|
|
|
|
kwargs["form"].cleaned_data = {} # same as above
|
2016-09-26 09:17:00 +00:00
|
|
|
if "bad_location" in self.request.GET:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["form"].add_error(
|
|
|
|
None, _("Bad location, someone is already logged in somewhere else")
|
|
|
|
)
|
|
|
|
if self.object.type == "BAR":
|
|
|
|
kwargs["barmen"] = self.object.get_barmen_list()
|
2016-07-21 18:03:31 +00:00
|
|
|
elif self.request.user.is_authenticated():
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["barmen"] = [self.request.user]
|
|
|
|
if "last_basket" in self.request.session.keys():
|
|
|
|
kwargs["last_basket"] = self.request.session.pop("last_basket")
|
|
|
|
kwargs["last_customer"] = self.request.session.pop("last_customer")
|
|
|
|
kwargs["last_total"] = self.request.session.pop("last_total")
|
|
|
|
kwargs["new_customer_amount"] = self.request.session.pop(
|
|
|
|
"new_customer_amount"
|
|
|
|
)
|
2016-04-15 09:50:31 +00:00
|
|
|
return kwargs
|
|
|
|
|
2016-04-18 02:37:37 +00:00
|
|
|
def form_valid(self, form):
|
|
|
|
"""
|
|
|
|
We handle here the redirection, passing the user id of the asked customer
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
self.kwargs["user_id"] = form.cleaned_data["user_id"]
|
2016-04-18 02:37:37 +00:00
|
|
|
return super(CounterMain, self).form_valid(form)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse_lazy("counter:click", args=self.args, kwargs=self.kwargs)
|
2016-04-18 02:37:37 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-01-04 18:39:37 +00:00
|
|
|
class CounterClick(CounterTabsMixin, CanViewMixin, DetailView):
|
2016-04-15 09:50:31 +00:00
|
|
|
"""
|
|
|
|
The click view
|
2016-04-18 23:54:51 +00:00
|
|
|
This is a detail view not to have to worry about loading the counter
|
|
|
|
Everything is made by hand in the post method
|
2016-04-15 09:50:31 +00:00
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-04-18 15:34:21 +00:00
|
|
|
model = Counter
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/counter_click.jinja"
|
2016-04-15 09:50:31 +00:00
|
|
|
pk_url_kwarg = "counter_id"
|
2016-09-28 09:07:32 +00:00
|
|
|
current_tab = "counter"
|
2016-04-18 15:34:21 +00:00
|
|
|
|
2017-03-27 21:24:25 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.customer = get_object_or_404(Customer, user__id=self.kwargs["user_id"])
|
2017-04-03 08:41:36 +00:00
|
|
|
obj = self.get_object()
|
2017-03-27 21:24:25 +00:00
|
|
|
if not self.customer.can_buy:
|
|
|
|
raise Http404
|
2017-04-03 08:41:36 +00:00
|
|
|
if obj.type == "BAR":
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
not (
|
|
|
|
"counter_token" in request.session.keys()
|
|
|
|
and request.session["counter_token"] == obj.token
|
|
|
|
)
|
|
|
|
or len(obj.get_barmen_list()) < 1
|
|
|
|
):
|
2017-04-03 08:41:36 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
else:
|
|
|
|
if not request.user.is_authenticated():
|
|
|
|
raise PermissionDenied
|
2017-03-27 21:24:25 +00:00
|
|
|
return super(CounterClick, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
2016-04-18 15:34:21 +00:00
|
|
|
def get(self, request, *args, **kwargs):
|
2016-04-18 23:54:51 +00:00
|
|
|
"""Simple get view"""
|
2018-10-04 19:29:19 +00:00
|
|
|
if "basket" not in request.session.keys(): # Init the basket session entry
|
|
|
|
request.session["basket"] = {}
|
|
|
|
request.session["basket_total"] = 0
|
|
|
|
request.session["not_enough"] = False # Reset every variable
|
|
|
|
request.session["too_young"] = False
|
|
|
|
request.session["not_allowed"] = False
|
|
|
|
request.session["no_age"] = False
|
2016-07-17 09:38:19 +00:00
|
|
|
self.refill_form = None
|
2016-04-19 17:58:57 +00:00
|
|
|
ret = super(CounterClick, self).get(request, *args, **kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
if (self.object.type != "BAR" and not request.user.is_authenticated()) or (
|
|
|
|
self.object.type == "BAR" and len(self.object.get_barmen_list()) < 1
|
|
|
|
): # Check that at least one barman is logged in
|
2017-06-12 07:47:24 +00:00
|
|
|
ret = self.cancel(request) # Otherwise, go to main view
|
2016-04-19 17:58:57 +00:00
|
|
|
return ret
|
2016-04-15 09:50:31 +00:00
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
2016-04-18 23:54:51 +00:00
|
|
|
""" Handle the many possibilities of the post request """
|
2016-04-18 15:34:21 +00:00
|
|
|
self.object = self.get_object()
|
2016-07-17 09:38:19 +00:00
|
|
|
self.refill_form = None
|
2018-10-04 19:29:19 +00:00
|
|
|
if (self.object.type != "BAR" and not request.user.is_authenticated()) or (
|
|
|
|
self.object.type == "BAR" and len(self.object.get_barmen_list()) < 1
|
|
|
|
): # Check that at least one barman is logged in
|
2016-04-19 17:58:57 +00:00
|
|
|
return self.cancel(request)
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.object.type == "BAR" and not (
|
|
|
|
"counter_token" in self.request.session.keys()
|
|
|
|
and self.request.session["counter_token"] == self.object.token
|
|
|
|
): # Also check the token to avoid the bar to be stolen
|
|
|
|
return HttpResponseRedirect(
|
|
|
|
reverse_lazy(
|
|
|
|
"counter:details",
|
|
|
|
args=self.args,
|
|
|
|
kwargs={"counter_id": self.object.id},
|
|
|
|
)
|
|
|
|
+ "?bad_location"
|
|
|
|
)
|
|
|
|
if "basket" not in request.session.keys():
|
|
|
|
request.session["basket"] = {}
|
|
|
|
request.session["basket_total"] = 0
|
|
|
|
request.session["not_enough"] = False # Reset every variable
|
|
|
|
request.session["too_young"] = False
|
|
|
|
request.session["not_allowed"] = False
|
|
|
|
request.session["no_age"] = False
|
2018-10-18 23:21:57 +00:00
|
|
|
request.session["not_valid_student_card_uid"] = False
|
2016-07-22 11:34:34 +00:00
|
|
|
if self.object.type != "BAR":
|
|
|
|
self.operator = request.user
|
|
|
|
elif self.is_barman_price():
|
|
|
|
self.operator = self.customer.user
|
|
|
|
else:
|
2016-08-06 10:37:36 +00:00
|
|
|
self.operator = self.object.get_random_barman()
|
2016-04-18 23:54:51 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
if "add_product" in request.POST["action"]:
|
2016-04-18 23:54:51 +00:00
|
|
|
self.add_product(request)
|
2018-10-18 23:21:57 +00:00
|
|
|
elif "add_student_card" in request.POST["action"]:
|
|
|
|
self.add_student_card(request)
|
2018-10-04 19:29:19 +00:00
|
|
|
elif "del_product" in request.POST["action"]:
|
2016-04-18 23:54:51 +00:00
|
|
|
self.del_product(request)
|
2018-10-04 19:29:19 +00:00
|
|
|
elif "refill" in request.POST["action"]:
|
2016-06-26 18:07:29 +00:00
|
|
|
self.refill(request)
|
2018-10-04 19:29:19 +00:00
|
|
|
elif "code" in request.POST["action"]:
|
2016-06-26 17:30:28 +00:00
|
|
|
return self.parse_code(request)
|
2018-10-04 19:29:19 +00:00
|
|
|
elif "cancel" in request.POST["action"]:
|
2016-04-18 23:54:51 +00:00
|
|
|
return self.cancel(request)
|
2018-10-04 19:29:19 +00:00
|
|
|
elif "finish" in request.POST["action"]:
|
2016-04-18 23:54:51 +00:00
|
|
|
return self.finish(request)
|
|
|
|
context = self.get_context_data(object=self.object)
|
|
|
|
return self.render_to_response(context)
|
|
|
|
|
2016-06-26 17:30:28 +00:00
|
|
|
def is_barman_price(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.object.type == "BAR" and self.customer.user.id in [
|
|
|
|
s.id for s in self.object.get_barmen_list()
|
|
|
|
]:
|
2016-06-01 22:26:31 +00:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2016-08-20 00:55:48 +00:00
|
|
|
def get_product(self, pid):
|
|
|
|
return Product.objects.filter(pk=int(pid)).first()
|
|
|
|
|
2016-06-01 22:26:31 +00:00
|
|
|
def get_price(self, pid):
|
2016-08-20 00:55:48 +00:00
|
|
|
p = self.get_product(pid)
|
2016-06-01 22:26:31 +00:00
|
|
|
if self.is_barman_price():
|
|
|
|
price = p.special_selling_price
|
|
|
|
else:
|
|
|
|
price = p.selling_price
|
|
|
|
return price
|
|
|
|
|
|
|
|
def sum_basket(self, request):
|
|
|
|
total = 0
|
2018-10-04 19:29:19 +00:00
|
|
|
for pid, infos in request.session["basket"].items():
|
|
|
|
total += infos["price"] * infos["qty"]
|
2016-06-02 12:55:12 +00:00
|
|
|
return total / 100
|
2016-06-01 22:26:31 +00:00
|
|
|
|
2016-08-20 14:09:46 +00:00
|
|
|
def get_total_quantity_for_pid(self, request, pid):
|
|
|
|
pid = str(pid)
|
|
|
|
try:
|
2018-10-04 19:29:19 +00:00
|
|
|
return (
|
|
|
|
request.session["basket"][pid]["qty"]
|
|
|
|
+ request.session["basket"][pid]["bonus_qty"]
|
|
|
|
)
|
2016-08-20 14:09:46 +00:00
|
|
|
except:
|
|
|
|
return 0
|
|
|
|
|
2017-07-21 19:39:49 +00:00
|
|
|
def compute_record_product(self, request, product=None):
|
|
|
|
recorded = 0
|
2018-10-04 19:29:19 +00:00
|
|
|
basket = request.session["basket"]
|
2017-07-21 19:39:49 +00:00
|
|
|
|
|
|
|
if product:
|
|
|
|
if product.is_record_product:
|
|
|
|
recorded -= 1
|
|
|
|
elif product.is_unrecord_product:
|
|
|
|
recorded += 1
|
|
|
|
|
|
|
|
for p in basket:
|
|
|
|
bproduct = self.get_product(str(p))
|
|
|
|
if bproduct.is_record_product:
|
2018-10-04 19:29:19 +00:00
|
|
|
recorded -= basket[p]["qty"]
|
2017-07-21 19:39:49 +00:00
|
|
|
elif bproduct.is_unrecord_product:
|
2018-10-04 19:29:19 +00:00
|
|
|
recorded += basket[p]["qty"]
|
2017-07-21 19:39:49 +00:00
|
|
|
return recorded
|
|
|
|
|
|
|
|
def is_record_product_ok(self, request, product):
|
|
|
|
return self.customer.can_record_more(
|
2018-10-04 19:29:19 +00:00
|
|
|
self.compute_record_product(request, product)
|
|
|
|
)
|
2017-07-21 19:39:49 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
def add_product(self, request, q=1, p=None):
|
2016-08-20 00:55:48 +00:00
|
|
|
"""
|
|
|
|
Add a product to the basket
|
|
|
|
q is the quantity passed as integer
|
|
|
|
p is the product id, passed as an integer
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
pid = p or request.POST["product_id"]
|
2016-07-16 14:48:56 +00:00
|
|
|
pid = str(pid)
|
2016-06-01 22:26:31 +00:00
|
|
|
price = self.get_price(pid)
|
2016-06-02 12:55:12 +00:00
|
|
|
total = self.sum_basket(request)
|
2016-08-20 14:09:46 +00:00
|
|
|
product = self.get_product(pid)
|
2016-08-20 20:12:46 +00:00
|
|
|
can_buy = False
|
2016-08-29 01:02:13 +00:00
|
|
|
if not product.buying_groups.exists():
|
|
|
|
can_buy = True
|
|
|
|
else:
|
|
|
|
for g in product.buying_groups.all():
|
|
|
|
if self.customer.user.is_in_group(g.name):
|
|
|
|
can_buy = True
|
2016-08-20 20:12:46 +00:00
|
|
|
if not can_buy:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["not_allowed"] = True
|
2016-08-20 20:12:46 +00:00
|
|
|
return False
|
2017-06-12 07:47:24 +00:00
|
|
|
bq = 0 # Bonus quantity, for trays
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
product.tray
|
|
|
|
): # Handle the tray to adjust the quantity q to add and the bonus quantity bq
|
2016-08-20 14:09:46 +00:00
|
|
|
total_qty_mod_6 = self.get_total_quantity_for_pid(request, pid) % 6
|
2017-06-12 07:47:24 +00:00
|
|
|
bq = int((total_qty_mod_6 + q) / 6) # Integer division
|
2016-08-20 14:09:46 +00:00
|
|
|
q -= bq
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.customer.amount < (
|
|
|
|
total + round(q * float(price), 2)
|
|
|
|
): # Check for enough money
|
|
|
|
request.session["not_enough"] = True
|
2016-06-26 17:30:28 +00:00
|
|
|
return False
|
2018-10-04 19:29:19 +00:00
|
|
|
if product.is_unrecord_product and not self.is_record_product_ok(
|
|
|
|
request, product
|
|
|
|
):
|
|
|
|
request.session["not_allowed"] = True
|
2017-07-21 19:39:49 +00:00
|
|
|
return False
|
2016-09-01 14:55:43 +00:00
|
|
|
if product.limit_age >= 18 and not self.customer.user.date_of_birth:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["no_age"] = True
|
2016-09-01 14:55:43 +00:00
|
|
|
return False
|
2016-10-15 00:33:38 +00:00
|
|
|
if product.limit_age >= 18 and self.customer.user.is_banned_alcohol:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["not_allowed"] = True
|
2016-10-15 00:33:38 +00:00
|
|
|
return False
|
2016-10-16 01:45:06 +00:00
|
|
|
if self.customer.user.is_banned_counter:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["not_allowed"] = True
|
2016-10-16 01:45:06 +00:00
|
|
|
return False
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
self.customer.user.date_of_birth
|
|
|
|
and self.customer.user.get_age() < product.limit_age
|
|
|
|
): # Check if affordable
|
|
|
|
request.session["too_young"] = True
|
2016-08-20 00:55:48 +00:00
|
|
|
return False
|
2018-10-04 19:29:19 +00:00
|
|
|
if pid in request.session["basket"]: # Add if already in basket
|
|
|
|
request.session["basket"][pid]["qty"] += q
|
|
|
|
request.session["basket"][pid]["bonus_qty"] += bq
|
2017-06-12 07:47:24 +00:00
|
|
|
else: # or create if not
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["basket"][pid] = {
|
|
|
|
"qty": q,
|
|
|
|
"price": int(price * 100),
|
|
|
|
"bonus_qty": bq,
|
|
|
|
}
|
2016-04-18 23:54:51 +00:00
|
|
|
request.session.modified = True
|
2016-06-26 17:30:28 +00:00
|
|
|
return True
|
2016-04-18 23:54:51 +00:00
|
|
|
|
2018-10-18 23:21:57 +00:00
|
|
|
def add_student_card(self, request):
|
|
|
|
"""
|
|
|
|
Add a new student card on the customer account
|
|
|
|
"""
|
|
|
|
uid = request.POST["student_card_uid"]
|
|
|
|
uid = str(uid)
|
2018-10-19 17:25:55 +00:00
|
|
|
if not StudentCard.is_valid(uid):
|
2018-10-18 23:21:57 +00:00
|
|
|
request.session["not_valid_student_card_uid"] = True
|
|
|
|
return False
|
|
|
|
|
|
|
|
self.customer.add_student_card(uid, request, self.object)
|
|
|
|
return True
|
|
|
|
|
2016-04-18 23:54:51 +00:00
|
|
|
def del_product(self, request):
|
|
|
|
""" Delete a product from the basket """
|
2018-10-04 19:29:19 +00:00
|
|
|
pid = str(request.POST["product_id"])
|
2016-08-20 14:09:46 +00:00
|
|
|
product = self.get_product(pid)
|
2018-10-04 19:29:19 +00:00
|
|
|
if pid in request.session["basket"]:
|
|
|
|
if (
|
|
|
|
product.tray
|
|
|
|
and (self.get_total_quantity_for_pid(request, pid) % 6 == 0)
|
|
|
|
and request.session["basket"][pid]["bonus_qty"]
|
|
|
|
):
|
|
|
|
request.session["basket"][pid]["bonus_qty"] -= 1
|
2016-08-20 14:09:46 +00:00
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["basket"][pid]["qty"] -= 1
|
|
|
|
if request.session["basket"][pid]["qty"] <= 0:
|
|
|
|
del request.session["basket"][pid]
|
2016-04-18 23:54:51 +00:00
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["basket"][pid] = None
|
2016-04-18 23:54:51 +00:00
|
|
|
request.session.modified = True
|
|
|
|
|
2016-06-26 17:30:28 +00:00
|
|
|
def parse_code(self, request):
|
|
|
|
"""Parse the string entered by the barman"""
|
2018-10-04 19:29:19 +00:00
|
|
|
string = str(request.POST["code"]).upper()
|
2016-07-18 15:47:43 +00:00
|
|
|
if string == _("END"):
|
2016-06-26 17:30:28 +00:00
|
|
|
return self.finish(request)
|
2016-07-18 15:47:43 +00:00
|
|
|
elif string == _("CAN"):
|
2016-06-26 17:30:28 +00:00
|
|
|
return self.cancel(request)
|
|
|
|
regex = re.compile(r"^((?P<nb>[0-9]+)X)?(?P<code>[A-Z0-9]+)$")
|
|
|
|
m = regex.match(string)
|
|
|
|
if m is not None:
|
2018-10-04 19:29:19 +00:00
|
|
|
nb = m.group("nb")
|
|
|
|
code = m.group("code")
|
2016-06-26 17:30:28 +00:00
|
|
|
if nb is None:
|
|
|
|
nb = 1
|
|
|
|
else:
|
|
|
|
nb = int(nb)
|
2016-07-22 11:34:34 +00:00
|
|
|
p = self.object.products.filter(code=code).first()
|
2016-06-26 17:30:28 +00:00
|
|
|
if p is not None:
|
|
|
|
while nb > 0 and not self.add_product(request, nb, p.id):
|
|
|
|
nb -= 1
|
|
|
|
context = self.get_context_data(object=self.object)
|
|
|
|
return self.render_to_response(context)
|
|
|
|
|
2016-04-18 23:54:51 +00:00
|
|
|
def finish(self, request):
|
|
|
|
""" Finish the click session, and validate the basket """
|
2016-07-21 23:19:04 +00:00
|
|
|
with transaction.atomic():
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["last_basket"] = []
|
2017-07-27 14:53:53 +00:00
|
|
|
if self.sum_basket(request) > self.customer.amount:
|
|
|
|
raise DataError(_("You have not enough money to buy all the basket"))
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
for pid, infos in request.session["basket"].items():
|
2016-07-21 23:19:04 +00:00
|
|
|
# This duplicates code for DB optimization (prevent to load many times the same object)
|
|
|
|
p = Product.objects.filter(pk=pid).first()
|
|
|
|
if self.is_barman_price():
|
|
|
|
uprice = p.special_selling_price
|
|
|
|
else:
|
|
|
|
uprice = p.selling_price
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["last_basket"].append(
|
|
|
|
"%d x %s" % (infos["qty"] + infos["bonus_qty"], p.name)
|
|
|
|
)
|
|
|
|
s = Selling(
|
|
|
|
label=p.name,
|
|
|
|
product=p,
|
|
|
|
club=p.club,
|
|
|
|
counter=self.object,
|
|
|
|
unit_price=uprice,
|
|
|
|
quantity=infos["qty"],
|
|
|
|
seller=self.operator,
|
|
|
|
customer=self.customer,
|
|
|
|
)
|
2016-07-21 23:19:04 +00:00
|
|
|
s.save()
|
2018-10-04 19:29:19 +00:00
|
|
|
if infos["bonus_qty"]:
|
|
|
|
s = Selling(
|
|
|
|
label=p.name + " (Plateau)",
|
|
|
|
product=p,
|
|
|
|
club=p.club,
|
|
|
|
counter=self.object,
|
|
|
|
unit_price=0,
|
|
|
|
quantity=infos["bonus_qty"],
|
|
|
|
seller=self.operator,
|
|
|
|
customer=self.customer,
|
|
|
|
)
|
2016-08-20 14:09:46 +00:00
|
|
|
s.save()
|
2017-07-21 19:39:49 +00:00
|
|
|
self.customer.recorded_products -= self.compute_record_product(request)
|
|
|
|
self.customer.save()
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["last_customer"] = self.customer.user.get_display_name()
|
|
|
|
request.session["last_total"] = "%0.2f" % self.sum_basket(request)
|
|
|
|
request.session["new_customer_amount"] = str(self.customer.amount)
|
|
|
|
del request.session["basket"]
|
2016-07-21 23:19:04 +00:00
|
|
|
request.session.modified = True
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs = {"counter_id": self.object.id}
|
|
|
|
return HttpResponseRedirect(
|
|
|
|
reverse_lazy("counter:details", args=self.args, kwargs=kwargs)
|
|
|
|
)
|
2016-04-18 23:54:51 +00:00
|
|
|
|
|
|
|
def cancel(self, request):
|
|
|
|
""" Cancel the click session """
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs = {"counter_id": self.object.id}
|
|
|
|
request.session.pop("basket", None)
|
|
|
|
return HttpResponseRedirect(
|
|
|
|
reverse_lazy("counter:details", args=self.args, kwargs=kwargs)
|
|
|
|
)
|
2016-04-18 15:34:21 +00:00
|
|
|
|
2016-06-26 18:07:29 +00:00
|
|
|
def refill(self, request):
|
|
|
|
"""Refill the customer's account"""
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.get_object().type == "BAR":
|
2017-04-03 08:41:36 +00:00
|
|
|
form = RefillForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
form.instance.counter = self.object
|
|
|
|
form.instance.operator = self.operator
|
|
|
|
form.instance.customer = self.customer
|
|
|
|
form.instance.save()
|
|
|
|
else:
|
|
|
|
self.refill_form = form
|
2016-07-17 09:38:19 +00:00
|
|
|
else:
|
2017-04-03 08:41:36 +00:00
|
|
|
raise PermissionDenied
|
2016-06-26 18:07:29 +00:00
|
|
|
|
2016-04-18 15:34:21 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
2016-04-18 23:54:51 +00:00
|
|
|
""" Add customer to the context """
|
2016-04-18 15:34:21 +00:00
|
|
|
kwargs = super(CounterClick, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["customer"] = self.customer
|
|
|
|
kwargs["basket_total"] = self.sum_basket(self.request)
|
|
|
|
kwargs["refill_form"] = self.refill_form or RefillForm()
|
|
|
|
kwargs["categories"] = ProductType.objects.all()
|
2018-10-18 23:21:57 +00:00
|
|
|
kwargs["student_card_max_uid_size"] = StudentCard.UID_SIZE
|
2016-04-18 15:34:21 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-03-31 08:36:00 +00:00
|
|
|
class CounterLogin(RedirectView):
|
2016-04-12 08:00:47 +00:00
|
|
|
"""
|
|
|
|
Handle the login of a barman
|
|
|
|
|
2016-09-26 09:17:00 +00:00
|
|
|
Logged barmen are stored in the Permanency model
|
2016-04-12 08:00:47 +00:00
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-03-31 08:36:00 +00:00
|
|
|
permanent = False
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-04-12 08:00:47 +00:00
|
|
|
def post(self, request, *args, **kwargs):
|
2016-04-12 11:08:37 +00:00
|
|
|
"""
|
|
|
|
Register the logged user as barman for this counter
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
self.counter_id = kwargs["counter_id"]
|
|
|
|
self.counter = Counter.objects.filter(id=kwargs["counter_id"]).first()
|
2016-08-31 00:43:49 +00:00
|
|
|
form = LoginForm(request, data=request.POST)
|
2016-08-20 14:09:46 +00:00
|
|
|
self.errors = []
|
2016-03-31 08:36:00 +00:00
|
|
|
if form.is_valid():
|
2018-10-04 19:29:19 +00:00
|
|
|
user = User.objects.filter(username=form.cleaned_data["username"]).first()
|
|
|
|
if (
|
|
|
|
user in self.counter.sellers.all()
|
|
|
|
and not user in self.counter.get_barmen_list()
|
|
|
|
):
|
2016-09-26 09:17:00 +00:00
|
|
|
if len(self.counter.get_barmen_list()) <= 0:
|
|
|
|
self.counter.gen_token()
|
2018-10-04 19:29:19 +00:00
|
|
|
request.session["counter_token"] = self.counter.token
|
2016-08-26 18:56:16 +00:00
|
|
|
self.counter.add_barman(user)
|
2016-08-20 14:09:46 +00:00
|
|
|
else:
|
2016-09-08 23:54:26 +00:00
|
|
|
self.errors += ["sellers"]
|
2016-04-12 08:00:47 +00:00
|
|
|
else:
|
2016-08-20 14:09:46 +00:00
|
|
|
self.errors += ["credentials"]
|
2016-04-12 08:00:47 +00:00
|
|
|
return super(CounterLogin, self).post(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_redirect_url(self, *args, **kwargs):
|
2018-10-04 19:29:19 +00:00
|
|
|
return (
|
|
|
|
reverse_lazy("counter:details", args=args, kwargs=kwargs)
|
|
|
|
+ "?"
|
|
|
|
+ "&".join(self.errors)
|
|
|
|
)
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-04-12 08:00:47 +00:00
|
|
|
|
|
|
|
class CounterLogout(RedirectView):
|
|
|
|
permanent = False
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-04-12 08:00:47 +00:00
|
|
|
def post(self, request, *args, **kwargs):
|
2016-04-12 11:08:37 +00:00
|
|
|
"""
|
|
|
|
Unregister the user from the barman
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
self.counter = Counter.objects.filter(id=kwargs["counter_id"]).first()
|
|
|
|
user = User.objects.filter(id=request.POST["user_id"]).first()
|
2016-08-26 18:56:16 +00:00
|
|
|
self.counter.del_barman(user)
|
2016-04-12 08:00:47 +00:00
|
|
|
return super(CounterLogout, self).post(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_redirect_url(self, *args, **kwargs):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse_lazy("counter:details", args=args, kwargs=kwargs)
|
|
|
|
|
2016-03-31 08:36:00 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
# Counter admin views
|
|
|
|
|
2016-04-18 15:34:21 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterAdminTabsMixin(TabedViewMixin):
|
2016-09-04 17:24:53 +00:00
|
|
|
tabs_title = _("Counter administration")
|
|
|
|
list_of_tabs = [
|
2018-10-04 19:29:19 +00:00
|
|
|
{"url": reverse_lazy("stock:list"), "slug": "stocks", "name": _("Stocks")},
|
2017-06-12 07:47:24 +00:00
|
|
|
{
|
2018-10-04 19:29:19 +00:00
|
|
|
"url": reverse_lazy("counter:admin_list"),
|
|
|
|
"slug": "counters",
|
|
|
|
"name": _("Counters"),
|
2017-06-12 07:47:24 +00:00
|
|
|
},
|
|
|
|
{
|
2018-10-04 19:29:19 +00:00
|
|
|
"url": reverse_lazy("counter:product_list"),
|
|
|
|
"slug": "products",
|
|
|
|
"name": _("Products"),
|
2017-06-12 07:47:24 +00:00
|
|
|
},
|
|
|
|
{
|
2018-10-04 19:29:19 +00:00
|
|
|
"url": reverse_lazy("counter:product_list_archived"),
|
|
|
|
"slug": "archive",
|
|
|
|
"name": _("Archived products"),
|
2017-06-12 07:47:24 +00:00
|
|
|
},
|
|
|
|
{
|
2018-10-04 19:29:19 +00:00
|
|
|
"url": reverse_lazy("counter:producttype_list"),
|
|
|
|
"slug": "product_types",
|
|
|
|
"name": _("Product types"),
|
2017-06-12 07:47:24 +00:00
|
|
|
},
|
|
|
|
{
|
2018-10-04 19:29:19 +00:00
|
|
|
"url": reverse_lazy("counter:cash_summary_list"),
|
|
|
|
"slug": "cash_summary",
|
|
|
|
"name": _("Cash register summaries"),
|
2017-06-12 07:47:24 +00:00
|
|
|
},
|
|
|
|
{
|
2018-10-04 19:29:19 +00:00
|
|
|
"url": reverse_lazy("counter:invoices_call"),
|
|
|
|
"slug": "invoices_call",
|
|
|
|
"name": _("Invoices call"),
|
2017-06-12 07:47:24 +00:00
|
|
|
},
|
|
|
|
{
|
2018-10-04 19:29:19 +00:00
|
|
|
"url": reverse_lazy("counter:eticket_list"),
|
|
|
|
"slug": "etickets",
|
|
|
|
"name": _("Etickets"),
|
2017-06-12 07:47:24 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterListView(CounterAdminTabsMixin, CanViewMixin, ListView):
|
2016-03-31 08:36:00 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-03-31 08:36:00 +00:00
|
|
|
model = Counter
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/counter_list.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "counters"
|
2016-09-04 13:49:25 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-08-19 21:24:23 +00:00
|
|
|
class CounterEditForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Counter
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["sellers", "products"]
|
|
|
|
|
|
|
|
sellers = make_ajax_field(Counter, "sellers", "users", help_text="")
|
|
|
|
products = make_ajax_field(Counter, "products", "products", help_text="")
|
2016-08-19 21:24:23 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class CounterEditView(CounterAdminTabsMixin, CounterAdminMixin, UpdateView):
|
2016-08-19 21:24:23 +00:00
|
|
|
"""
|
|
|
|
Edit a counter's main informations (for the counter's manager)
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-19 21:24:23 +00:00
|
|
|
model = Counter
|
|
|
|
form_class = CounterEditForm
|
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/edit.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "counters"
|
2016-08-19 21:24:23 +00:00
|
|
|
|
2017-04-03 11:50:28 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
obj = self.get_object()
|
2017-04-03 13:00:13 +00:00
|
|
|
self.edit_club.append(obj.club)
|
2017-04-03 11:50:28 +00:00
|
|
|
return super(CounterEditView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
2016-08-19 21:24:23 +00:00
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse_lazy("counter:admin", kwargs={"counter_id": self.object.id})
|
2016-08-19 21:24:23 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class CounterEditPropView(CounterAdminTabsMixin, CounterAdminMixin, UpdateView):
|
2016-03-29 08:30:24 +00:00
|
|
|
"""
|
2016-03-31 08:36:00 +00:00
|
|
|
Edit a counter's main informations (for the counter's admin)
|
2016-03-29 08:30:24 +00:00
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-03-29 08:30:24 +00:00
|
|
|
model = Counter
|
2018-10-04 19:29:19 +00:00
|
|
|
form_class = modelform_factory(Counter, fields=["name", "club", "type"])
|
2016-03-29 08:30:24 +00:00
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/edit.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "counters"
|
2016-03-29 08:30:24 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class CounterCreateView(CounterAdminTabsMixin, CounterAdminMixin, CreateView):
|
2016-03-29 08:30:24 +00:00
|
|
|
"""
|
2016-03-31 08:36:00 +00:00
|
|
|
Create a counter (for the admins)
|
2016-03-29 08:30:24 +00:00
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-03-29 08:30:24 +00:00
|
|
|
model = Counter
|
2018-10-04 19:29:19 +00:00
|
|
|
form_class = modelform_factory(
|
|
|
|
Counter,
|
|
|
|
fields=["name", "club", "type", "products"],
|
|
|
|
widgets={"products": CheckboxSelectMultiple},
|
|
|
|
)
|
|
|
|
template_name = "core/create.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "counters"
|
2016-03-29 08:30:24 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class CounterDeleteView(CounterAdminTabsMixin, CounterAdminMixin, DeleteView):
|
2016-03-29 08:30:24 +00:00
|
|
|
"""
|
2016-03-31 08:36:00 +00:00
|
|
|
Delete a counter (for the admins)
|
2016-03-29 08:30:24 +00:00
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-03-29 08:30:24 +00:00
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/delete_confirm.jinja"
|
|
|
|
success_url = reverse_lazy("counter:admin_list")
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "counters"
|
2016-03-31 08:36:00 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 15:23:02 +00:00
|
|
|
# Product management
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class ProductTypeListView(CounterAdminTabsMixin, CounterAdminMixin, ListView):
|
2016-07-27 18:05:45 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 18:05:45 +00:00
|
|
|
model = ProductType
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/producttype_list.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "product_types"
|
2016-07-27 18:05:45 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class ProductTypeCreateView(CounterAdminTabsMixin, CounterAdminMixin, CreateView):
|
2016-07-27 18:05:45 +00:00
|
|
|
"""
|
|
|
|
A create view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 18:05:45 +00:00
|
|
|
model = ProductType
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["name", "description", "comment", "icon"]
|
|
|
|
template_name = "core/create.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-07-27 18:05:45 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class ProductTypeEditView(CounterAdminTabsMixin, CounterAdminMixin, UpdateView):
|
2016-07-27 18:05:45 +00:00
|
|
|
"""
|
|
|
|
An edit view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 18:05:45 +00:00
|
|
|
model = ProductType
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/edit.jinja"
|
|
|
|
fields = ["name", "description", "comment", "icon"]
|
2016-07-27 18:05:45 +00:00
|
|
|
pk_url_kwarg = "type_id"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-07-27 18:05:45 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class ProductArchivedListView(CounterAdminTabsMixin, CounterAdminMixin, ListView):
|
2016-09-04 13:49:25 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-04 13:49:25 +00:00
|
|
|
model = Product
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/product_list.jinja"
|
2016-09-04 13:49:25 +00:00
|
|
|
queryset = Product.objects.filter(archived=True)
|
2018-10-04 19:29:19 +00:00
|
|
|
ordering = ["name"]
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "archive"
|
2016-09-04 13:49:25 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class ProductListView(CounterAdminTabsMixin, CounterAdminMixin, ListView):
|
2016-07-27 15:23:02 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 15:23:02 +00:00
|
|
|
model = Product
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/product_list.jinja"
|
2016-09-04 13:49:25 +00:00
|
|
|
queryset = Product.objects.filter(archived=False)
|
2018-10-04 19:29:19 +00:00
|
|
|
ordering = ["name"]
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-09-04 13:49:25 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-08-20 20:12:46 +00:00
|
|
|
class ProductEditForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Product
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = [
|
|
|
|
"name",
|
|
|
|
"description",
|
|
|
|
"product_type",
|
|
|
|
"code",
|
|
|
|
"parent_product",
|
|
|
|
"buying_groups",
|
|
|
|
"purchase_price",
|
|
|
|
"selling_price",
|
|
|
|
"special_selling_price",
|
|
|
|
"icon",
|
|
|
|
"club",
|
|
|
|
"limit_age",
|
|
|
|
"tray",
|
|
|
|
"archived",
|
|
|
|
]
|
|
|
|
|
|
|
|
parent_product = AutoCompleteSelectField(
|
|
|
|
"products", show_help_text=False, label=_("Parent product"), required=False
|
|
|
|
)
|
|
|
|
buying_groups = AutoCompleteSelectMultipleField(
|
|
|
|
"groups",
|
|
|
|
show_help_text=False,
|
|
|
|
help_text="",
|
|
|
|
label=_("Buying groups"),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
club = AutoCompleteSelectField("clubs", show_help_text=False)
|
|
|
|
counters = AutoCompleteSelectMultipleField(
|
|
|
|
"counters",
|
|
|
|
show_help_text=False,
|
|
|
|
help_text="",
|
|
|
|
label=_("Counters"),
|
|
|
|
required=False,
|
|
|
|
)
|
2016-08-20 20:12:46 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(ProductEditForm, self).__init__(*args, **kwargs)
|
|
|
|
if self.instance.id:
|
2018-10-04 19:29:19 +00:00
|
|
|
self.fields["counters"].initial = [
|
|
|
|
str(c.id) for c in self.instance.counters.all()
|
|
|
|
]
|
2016-08-20 20:12:46 +00:00
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
ret = super(ProductEditForm, self).save(*args, **kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.fields["counters"].initial:
|
|
|
|
for cid in self.fields["counters"].initial:
|
2016-08-20 20:12:46 +00:00
|
|
|
c = Counter.objects.filter(id=int(cid)).first()
|
|
|
|
c.products.remove(self.instance)
|
|
|
|
c.save()
|
2018-10-04 19:29:19 +00:00
|
|
|
for cid in self.cleaned_data["counters"]:
|
2016-08-20 20:12:46 +00:00
|
|
|
c = Counter.objects.filter(id=int(cid)).first()
|
|
|
|
c.products.add(self.instance)
|
|
|
|
c.save()
|
|
|
|
return ret
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class ProductCreateView(CounterAdminTabsMixin, CounterAdminMixin, CreateView):
|
2016-07-27 15:23:02 +00:00
|
|
|
"""
|
|
|
|
A create view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 15:23:02 +00:00
|
|
|
model = Product
|
2016-08-20 20:12:46 +00:00
|
|
|
form_class = ProductEditForm
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/create.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-07-27 15:23:02 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class ProductEditView(CounterAdminTabsMixin, CounterAdminMixin, UpdateView):
|
2016-07-27 15:23:02 +00:00
|
|
|
"""
|
|
|
|
An edit view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 15:23:02 +00:00
|
|
|
model = Product
|
2016-08-19 21:24:23 +00:00
|
|
|
form_class = ProductEditForm
|
2016-07-27 15:23:02 +00:00
|
|
|
pk_url_kwarg = "product_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/edit.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-08-18 19:06:10 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class RefillingDeleteView(DeleteView):
|
2016-08-18 19:06:10 +00:00
|
|
|
"""
|
|
|
|
Delete a refilling (for the admins)
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-18 19:06:10 +00:00
|
|
|
model = Refilling
|
|
|
|
pk_url_kwarg = "refilling_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/delete_confirm.jinja"
|
2016-08-18 19:06:10 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
We have here a very particular right handling, we can't inherit from CanEditPropMixin
|
|
|
|
"""
|
|
|
|
self.object = self.get_object()
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
timezone.now() - self.object.date
|
|
|
|
<= timedelta(minutes=settings.SITH_LAST_OPERATIONS_LIMIT)
|
|
|
|
and "counter_token" in request.session.keys()
|
|
|
|
and request.session["counter_token"]
|
|
|
|
and Counter.objects.filter( # check if not null for counters that have no token set
|
|
|
|
token=request.session["counter_token"]
|
|
|
|
).exists()
|
|
|
|
):
|
|
|
|
self.success_url = reverse(
|
|
|
|
"counter:details", kwargs={"counter_id": self.object.counter.id}
|
|
|
|
)
|
2016-09-28 09:07:32 +00:00
|
|
|
return super(RefillingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
elif self.object.is_owned_by(request.user):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.success_url = reverse(
|
|
|
|
"core:user_account", kwargs={"user_id": self.object.customer.user.id}
|
|
|
|
)
|
2016-09-28 09:07:32 +00:00
|
|
|
return super(RefillingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
raise PermissionDenied
|
2016-08-18 19:06:10 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class SellingDeleteView(DeleteView):
|
2016-08-18 19:06:10 +00:00
|
|
|
"""
|
|
|
|
Delete a selling (for the admins)
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-18 19:06:10 +00:00
|
|
|
model = Selling
|
|
|
|
pk_url_kwarg = "selling_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/delete_confirm.jinja"
|
2016-08-18 19:06:10 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
We have here a very particular right handling, we can't inherit from CanEditPropMixin
|
|
|
|
"""
|
|
|
|
self.object = self.get_object()
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
timezone.now() - self.object.date
|
|
|
|
<= timedelta(minutes=settings.SITH_LAST_OPERATIONS_LIMIT)
|
|
|
|
and "counter_token" in request.session.keys()
|
|
|
|
and request.session["counter_token"]
|
|
|
|
and Counter.objects.filter( # check if not null for counters that have no token set
|
|
|
|
token=request.session["counter_token"]
|
|
|
|
).exists()
|
|
|
|
):
|
|
|
|
self.success_url = reverse(
|
|
|
|
"counter:details", kwargs={"counter_id": self.object.counter.id}
|
|
|
|
)
|
2016-09-28 09:07:32 +00:00
|
|
|
return super(SellingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
elif self.object.is_owned_by(request.user):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.success_url = reverse(
|
|
|
|
"core:user_account", kwargs={"user_id": self.object.customer.user.id}
|
|
|
|
)
|
2016-09-28 09:07:32 +00:00
|
|
|
return super(SellingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
raise PermissionDenied
|
2016-08-18 19:06:10 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-26 18:57:04 +00:00
|
|
|
# Cash register summaries
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-08-26 18:57:04 +00:00
|
|
|
class CashRegisterSummaryForm(forms.Form):
|
|
|
|
"""
|
|
|
|
Provide the cash summary form
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-03-01 09:21:57 +00:00
|
|
|
ten_cents = forms.IntegerField(label=_("10 cents"), required=False, min_value=0)
|
|
|
|
twenty_cents = forms.IntegerField(label=_("20 cents"), required=False, min_value=0)
|
|
|
|
fifty_cents = forms.IntegerField(label=_("50 cents"), required=False, min_value=0)
|
|
|
|
one_euro = forms.IntegerField(label=_("1 euro"), required=False, min_value=0)
|
|
|
|
two_euros = forms.IntegerField(label=_("2 euros"), required=False, min_value=0)
|
|
|
|
five_euros = forms.IntegerField(label=_("5 euros"), required=False, min_value=0)
|
|
|
|
ten_euros = forms.IntegerField(label=_("10 euros"), required=False, min_value=0)
|
|
|
|
twenty_euros = forms.IntegerField(label=_("20 euros"), required=False, min_value=0)
|
|
|
|
fifty_euros = forms.IntegerField(label=_("50 euros"), required=False, min_value=0)
|
2018-10-04 19:29:19 +00:00
|
|
|
hundred_euros = forms.IntegerField(
|
|
|
|
label=_("100 euros"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_1_value = forms.DecimalField(
|
|
|
|
label=_("Check amount"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_1_quantity = forms.IntegerField(
|
|
|
|
label=_("Check quantity"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_2_value = forms.DecimalField(
|
|
|
|
label=_("Check amount"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_2_quantity = forms.IntegerField(
|
|
|
|
label=_("Check quantity"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_3_value = forms.DecimalField(
|
|
|
|
label=_("Check amount"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_3_quantity = forms.IntegerField(
|
|
|
|
label=_("Check quantity"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_4_value = forms.DecimalField(
|
|
|
|
label=_("Check amount"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_4_quantity = forms.IntegerField(
|
|
|
|
label=_("Check quantity"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_5_value = forms.DecimalField(
|
|
|
|
label=_("Check amount"), required=False, min_value=0
|
|
|
|
)
|
|
|
|
check_5_quantity = forms.IntegerField(
|
|
|
|
label=_("Check quantity"), required=False, min_value=0
|
|
|
|
)
|
2016-08-26 18:57:04 +00:00
|
|
|
comment = forms.CharField(label=_("Comment"), required=False)
|
|
|
|
emptied = forms.BooleanField(label=_("Emptied"), required=False)
|
|
|
|
|
2016-09-29 12:54:03 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2018-10-04 19:29:19 +00:00
|
|
|
instance = kwargs.pop("instance", None)
|
2016-09-29 12:54:03 +00:00
|
|
|
super(CashRegisterSummaryForm, self).__init__(*args, **kwargs)
|
|
|
|
if instance:
|
2018-10-04 19:29:19 +00:00
|
|
|
self.fields["ten_cents"].initial = (
|
|
|
|
instance.ten_cents.quantity if instance.ten_cents else 0
|
|
|
|
)
|
|
|
|
self.fields["twenty_cents"].initial = (
|
|
|
|
instance.twenty_cents.quantity if instance.twenty_cents else 0
|
|
|
|
)
|
|
|
|
self.fields["fifty_cents"].initial = (
|
|
|
|
instance.fifty_cents.quantity if instance.fifty_cents else 0
|
|
|
|
)
|
|
|
|
self.fields["one_euro"].initial = (
|
|
|
|
instance.one_euro.quantity if instance.one_euro else 0
|
|
|
|
)
|
|
|
|
self.fields["two_euros"].initial = (
|
|
|
|
instance.two_euros.quantity if instance.two_euros else 0
|
|
|
|
)
|
|
|
|
self.fields["five_euros"].initial = (
|
|
|
|
instance.five_euros.quantity if instance.five_euros else 0
|
|
|
|
)
|
|
|
|
self.fields["ten_euros"].initial = (
|
|
|
|
instance.ten_euros.quantity if instance.ten_euros else 0
|
|
|
|
)
|
|
|
|
self.fields["twenty_euros"].initial = (
|
|
|
|
instance.twenty_euros.quantity if instance.twenty_euros else 0
|
|
|
|
)
|
|
|
|
self.fields["fifty_euros"].initial = (
|
|
|
|
instance.fifty_euros.quantity if instance.fifty_euros else 0
|
|
|
|
)
|
|
|
|
self.fields["hundred_euros"].initial = (
|
|
|
|
instance.hundred_euros.quantity if instance.hundred_euros else 0
|
|
|
|
)
|
|
|
|
self.fields["check_1_quantity"].initial = (
|
|
|
|
instance.check_1.quantity if instance.check_1 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_2_quantity"].initial = (
|
|
|
|
instance.check_2.quantity if instance.check_2 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_3_quantity"].initial = (
|
|
|
|
instance.check_3.quantity if instance.check_3 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_4_quantity"].initial = (
|
|
|
|
instance.check_4.quantity if instance.check_4 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_5_quantity"].initial = (
|
|
|
|
instance.check_5.quantity if instance.check_5 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_1_value"].initial = (
|
|
|
|
instance.check_1.value if instance.check_1 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_2_value"].initial = (
|
|
|
|
instance.check_2.value if instance.check_2 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_3_value"].initial = (
|
|
|
|
instance.check_3.value if instance.check_3 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_4_value"].initial = (
|
|
|
|
instance.check_4.value if instance.check_4 else 0
|
|
|
|
)
|
|
|
|
self.fields["check_5_value"].initial = (
|
|
|
|
instance.check_5.value if instance.check_5 else 0
|
|
|
|
)
|
|
|
|
self.fields["comment"].initial = instance.comment
|
|
|
|
self.fields["emptied"].initial = instance.emptied
|
2016-09-29 12:54:03 +00:00
|
|
|
self.instance = instance
|
|
|
|
else:
|
|
|
|
self.instance = None
|
|
|
|
|
|
|
|
def save(self, counter=None):
|
2016-08-26 18:57:04 +00:00
|
|
|
cd = self.cleaned_data
|
2016-09-29 12:54:03 +00:00
|
|
|
summary = self.instance or CashRegisterSummary(
|
2018-10-04 19:29:19 +00:00
|
|
|
counter=counter, user=counter.get_random_barman()
|
2017-06-12 07:47:24 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
summary.comment = cd["comment"]
|
|
|
|
summary.emptied = cd["emptied"]
|
2016-08-26 18:57:04 +00:00
|
|
|
summary.save()
|
2016-09-29 12:54:03 +00:00
|
|
|
summary.items.all().delete()
|
2016-08-26 18:57:04 +00:00
|
|
|
# Cash
|
2018-10-04 19:29:19 +00:00
|
|
|
if cd["ten_cents"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=0.1, quantity=cd["ten_cents"]
|
|
|
|
).save()
|
|
|
|
if cd["twenty_cents"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=0.2, quantity=cd["twenty_cents"]
|
|
|
|
).save()
|
|
|
|
if cd["fifty_cents"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=0.5, quantity=cd["fifty_cents"]
|
|
|
|
).save()
|
|
|
|
if cd["one_euro"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=1, quantity=cd["one_euro"]
|
|
|
|
).save()
|
|
|
|
if cd["two_euros"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=2, quantity=cd["two_euros"]
|
|
|
|
).save()
|
|
|
|
if cd["five_euros"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=5, quantity=cd["five_euros"]
|
|
|
|
).save()
|
|
|
|
if cd["ten_euros"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=10, quantity=cd["ten_euros"]
|
|
|
|
).save()
|
|
|
|
if cd["twenty_euros"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=20, quantity=cd["twenty_euros"]
|
|
|
|
).save()
|
|
|
|
if cd["fifty_euros"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=50, quantity=cd["fifty_euros"]
|
|
|
|
).save()
|
|
|
|
if cd["hundred_euros"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary, value=100, quantity=cd["hundred_euros"]
|
|
|
|
).save()
|
2016-08-26 18:57:04 +00:00
|
|
|
# Checks
|
2018-10-04 19:29:19 +00:00
|
|
|
if cd["check_1_quantity"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary,
|
|
|
|
value=cd["check_1_value"],
|
|
|
|
quantity=cd["check_1_quantity"],
|
|
|
|
check=True,
|
|
|
|
).save()
|
|
|
|
if cd["check_2_quantity"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary,
|
|
|
|
value=cd["check_2_value"],
|
|
|
|
quantity=cd["check_2_quantity"],
|
|
|
|
check=True,
|
|
|
|
).save()
|
|
|
|
if cd["check_3_quantity"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary,
|
|
|
|
value=cd["check_3_value"],
|
|
|
|
quantity=cd["check_3_quantity"],
|
|
|
|
check=True,
|
|
|
|
).save()
|
|
|
|
if cd["check_4_quantity"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary,
|
|
|
|
value=cd["check_4_value"],
|
|
|
|
quantity=cd["check_4_quantity"],
|
|
|
|
check=True,
|
|
|
|
).save()
|
|
|
|
if cd["check_5_quantity"]:
|
|
|
|
CashRegisterSummaryItem(
|
|
|
|
cash_summary=summary,
|
|
|
|
value=cd["check_5_value"],
|
|
|
|
quantity=cd["check_5_quantity"],
|
|
|
|
check=True,
|
|
|
|
).save()
|
2016-08-26 18:57:04 +00:00
|
|
|
if summary.items.count() < 1:
|
|
|
|
summary.delete()
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterLastOperationsView(CounterTabsMixin, CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Provide the last operations to allow barmen to delete them
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/last_ops.jinja"
|
2016-09-28 09:07:32 +00:00
|
|
|
current_tab = "last_ops"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
We have here again a very particular right handling
|
|
|
|
"""
|
|
|
|
self.object = self.get_object()
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
self.object.get_barmen_list()
|
|
|
|
and "counter_token" in request.session.keys()
|
|
|
|
and request.session["counter_token"]
|
|
|
|
and Counter.objects.filter( # check if not null for counters that have no token set
|
|
|
|
token=request.session["counter_token"]
|
|
|
|
).exists()
|
|
|
|
):
|
|
|
|
return super(CounterLastOperationsView, self).dispatch(
|
|
|
|
request, *args, **kwargs
|
|
|
|
)
|
|
|
|
return HttpResponseRedirect(
|
|
|
|
reverse("counter:details", kwargs={"counter_id": self.object.id})
|
|
|
|
+ "?bad_location"
|
|
|
|
)
|
2016-09-28 09:07:32 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
"""Add form to the context """
|
|
|
|
kwargs = super(CounterLastOperationsView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
threshold = timezone.now() - timedelta(
|
|
|
|
minutes=settings.SITH_LAST_OPERATIONS_LIMIT
|
|
|
|
)
|
|
|
|
kwargs["last_refillings"] = self.object.refillings.filter(
|
|
|
|
date__gte=threshold
|
|
|
|
).order_by("-id")[:20]
|
|
|
|
kwargs["last_sellings"] = self.object.sellings.filter(
|
|
|
|
date__gte=threshold
|
|
|
|
).order_by("-id")[:20]
|
2016-09-28 09:07:32 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterCashSummaryView(CounterTabsMixin, CanViewMixin, DetailView):
|
2016-08-26 18:57:04 +00:00
|
|
|
"""
|
|
|
|
Provide the cash summary form
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-26 18:57:04 +00:00
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/cash_register_summary.jinja"
|
2016-09-28 09:07:32 +00:00
|
|
|
current_tab = "cash_summary"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
We have here again a very particular right handling
|
|
|
|
"""
|
|
|
|
self.object = self.get_object()
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
self.object.get_barmen_list()
|
|
|
|
and "counter_token" in request.session.keys()
|
|
|
|
and request.session["counter_token"]
|
|
|
|
and Counter.objects.filter( # check if not null for counters that have no token set
|
|
|
|
token=request.session["counter_token"]
|
|
|
|
).exists()
|
|
|
|
):
|
|
|
|
return super(CounterCashSummaryView, self).dispatch(
|
|
|
|
request, *args, **kwargs
|
|
|
|
)
|
|
|
|
return HttpResponseRedirect(
|
|
|
|
reverse("counter:details", kwargs={"counter_id": self.object.id})
|
|
|
|
+ "?bad_location"
|
|
|
|
)
|
2016-08-26 18:57:04 +00:00
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
self.form = CashRegisterSummaryForm()
|
|
|
|
return super(CounterCashSummaryView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
self.form = CashRegisterSummaryForm(request.POST)
|
|
|
|
if self.form.is_valid():
|
|
|
|
self.form.save(self.object)
|
|
|
|
return HttpResponseRedirect(self.get_success_url())
|
|
|
|
return super(CounterCashSummaryView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse_lazy("counter:details", kwargs={"counter_id": self.object.id})
|
2016-08-26 18:57:04 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
""" Add form to the context """
|
|
|
|
kwargs = super(CounterCashSummaryView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["form"] = self.form
|
2016-08-26 18:57:04 +00:00
|
|
|
return kwargs
|
2016-09-12 15:34:33 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-09-12 15:34:33 +00:00
|
|
|
class CounterActivityView(DetailView):
|
|
|
|
"""
|
|
|
|
Show the bar activity
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-12 15:34:33 +00:00
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/activity.jinja"
|
2016-09-12 15:34:33 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class CounterStatView(DetailView, CounterAdminMixin):
|
2016-09-15 09:07:03 +00:00
|
|
|
"""
|
|
|
|
Show the bar stats
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-15 09:07:03 +00:00
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/stats.jinja"
|
2016-09-15 09:07:03 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
""" Add stats to the context """
|
|
|
|
from django.db.models import Sum, Case, When, F, DecimalField
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-15 09:07:03 +00:00
|
|
|
kwargs = super(CounterStatView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["Customer"] = Customer
|
|
|
|
kwargs["User"] = User
|
2016-09-15 09:07:03 +00:00
|
|
|
semester_start = Subscription.compute_start(d=date.today(), duration=3)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["total_sellings"] = Selling.objects.filter(
|
|
|
|
date__gte=semester_start, counter=self.object
|
|
|
|
).aggregate(
|
|
|
|
total_sellings=Sum(
|
|
|
|
F("quantity") * F("unit_price"), output_field=CurrencyField()
|
|
|
|
)
|
|
|
|
)[
|
|
|
|
"total_sellings"
|
|
|
|
]
|
|
|
|
kwargs["top"] = (
|
|
|
|
Selling.objects.values("customer__user")
|
|
|
|
.annotate(
|
|
|
|
selling_sum=Sum(
|
|
|
|
Case(
|
|
|
|
When(
|
|
|
|
counter=self.object,
|
|
|
|
date__gte=semester_start,
|
|
|
|
unit_price__gt=0,
|
|
|
|
then=F("unit_price") * F("quantity"),
|
|
|
|
),
|
|
|
|
output_field=CurrencyField(),
|
|
|
|
)
|
|
|
|
)
|
2017-06-12 07:47:24 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
.exclude(selling_sum=None)
|
|
|
|
.order_by("-selling_sum")
|
|
|
|
.all()[:100]
|
|
|
|
)
|
|
|
|
kwargs["top_barman"] = (
|
|
|
|
Permanency.objects.values("user")
|
|
|
|
.annotate(
|
|
|
|
perm_sum=Sum(
|
|
|
|
Case(
|
|
|
|
When(
|
|
|
|
counter=self.object,
|
|
|
|
end__gt=datetime(year=1999, month=1, day=1),
|
|
|
|
then=F("end") - F("start"),
|
|
|
|
),
|
|
|
|
output_field=models.DateTimeField(),
|
|
|
|
)
|
|
|
|
)
|
2017-06-12 07:47:24 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
.exclude(perm_sum=None)
|
|
|
|
.order_by("-perm_sum")
|
|
|
|
.all()[:100]
|
|
|
|
)
|
|
|
|
kwargs["top_barman_semester"] = (
|
|
|
|
Permanency.objects.values("user")
|
|
|
|
.annotate(
|
|
|
|
perm_sum=Sum(
|
|
|
|
Case(
|
|
|
|
When(
|
|
|
|
counter=self.object,
|
|
|
|
start__gt=semester_start,
|
|
|
|
end__gt=datetime(year=1999, month=1, day=1),
|
|
|
|
then=F("end") - F("start"),
|
|
|
|
),
|
|
|
|
output_field=models.DateTimeField(),
|
|
|
|
)
|
|
|
|
)
|
2017-06-12 07:47:24 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
.exclude(perm_sum=None)
|
|
|
|
.order_by("-perm_sum")
|
|
|
|
.all()[:100]
|
|
|
|
)
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["sith_date"] = settings.SITH_START_DATE[0]
|
|
|
|
kwargs["semester_start"] = semester_start
|
2016-09-15 09:07:03 +00:00
|
|
|
return kwargs
|
|
|
|
|
2016-09-26 21:56:24 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2016-09-27 14:44:12 +00:00
|
|
|
try:
|
|
|
|
return super(CounterStatView, self).dispatch(request, *args, **kwargs)
|
|
|
|
except:
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
request.user.is_root
|
2016-09-27 14:56:30 +00:00
|
|
|
or request.user.is_board_member
|
2018-10-04 19:29:19 +00:00
|
|
|
or self.object.is_owned_by(request.user)
|
|
|
|
):
|
2016-09-27 14:56:30 +00:00
|
|
|
return super(CanEditMixin, self).dispatch(request, *args, **kwargs)
|
2016-09-26 21:56:24 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
|
|
|
class CashSummaryEditView(CounterAdminTabsMixin, CounterAdminMixin, UpdateView):
|
2016-09-29 12:54:03 +00:00
|
|
|
"""Edit cash summaries"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-29 12:54:03 +00:00
|
|
|
model = CashRegisterSummary
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/cash_register_summary.jinja"
|
2016-09-29 12:54:03 +00:00
|
|
|
context_object_name = "cashsummary"
|
|
|
|
pk_url_kwarg = "cashsummary_id"
|
|
|
|
form_class = CashRegisterSummaryForm
|
|
|
|
current_tab = "cash_summary"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse("counter:cash_summary_list")
|
2016-09-15 09:07:03 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-10-10 16:29:13 +00:00
|
|
|
class CashSummaryFormBase(forms.Form):
|
2018-10-04 19:29:19 +00:00
|
|
|
begin_date = forms.DateTimeField(
|
|
|
|
["%Y-%m-%d %H:%M:%S"],
|
|
|
|
label=_("Begin date"),
|
|
|
|
required=False,
|
|
|
|
widget=SelectDateTime,
|
|
|
|
)
|
|
|
|
end_date = forms.DateTimeField(
|
|
|
|
["%Y-%m-%d %H:%M:%S"],
|
|
|
|
label=_("End date"),
|
|
|
|
required=False,
|
|
|
|
widget=SelectDateTime,
|
|
|
|
)
|
2016-10-10 16:29:13 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class CashSummaryListView(CounterAdminTabsMixin, CounterAdminMixin, ListView):
|
2016-09-13 00:04:49 +00:00
|
|
|
"""Display a list of cash summaries"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-13 00:04:49 +00:00
|
|
|
model = CashRegisterSummary
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/cash_summary_list.jinja"
|
2016-09-13 00:04:49 +00:00
|
|
|
context_object_name = "cashsummary_list"
|
|
|
|
current_tab = "cash_summary"
|
2018-10-04 19:29:19 +00:00
|
|
|
queryset = CashRegisterSummary.objects.all().order_by("-date")
|
2017-03-13 22:32:06 +00:00
|
|
|
paginate_by = settings.SITH_COUNTER_CASH_SUMMARY_LENGTH
|
2016-09-13 00:04:49 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
""" Add sums to the context """
|
|
|
|
kwargs = super(CashSummaryListView, self).get_context_data(**kwargs)
|
2016-10-10 16:29:13 +00:00
|
|
|
form = CashSummaryFormBase(self.request.GET)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["form"] = form
|
|
|
|
kwargs["summaries_sums"] = {}
|
|
|
|
kwargs["refilling_sums"] = {}
|
2016-09-13 00:04:49 +00:00
|
|
|
for c in Counter.objects.filter(type="BAR").all():
|
2016-10-10 16:29:13 +00:00
|
|
|
refillings = Refilling.objects.filter(counter=c)
|
|
|
|
cashredistersummaries = CashRegisterSummary.objects.filter(counter=c)
|
2018-10-04 19:29:19 +00:00
|
|
|
if form.is_valid() and form.cleaned_data["begin_date"]:
|
|
|
|
refillings = refillings.filter(
|
|
|
|
date__gte=form.cleaned_data["begin_date"]
|
|
|
|
)
|
|
|
|
cashredistersummaries = cashredistersummaries.filter(
|
|
|
|
date__gte=form.cleaned_data["begin_date"]
|
|
|
|
)
|
2016-09-13 00:04:49 +00:00
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
last_summary = (
|
|
|
|
CashRegisterSummary.objects.filter(counter=c, emptied=True)
|
|
|
|
.order_by("-date")
|
|
|
|
.first()
|
|
|
|
)
|
2016-10-10 16:29:13 +00:00
|
|
|
if last_summary:
|
2016-10-18 12:48:47 +00:00
|
|
|
refillings = refillings.filter(date__gt=last_summary.date)
|
2018-10-04 19:29:19 +00:00
|
|
|
cashredistersummaries = cashredistersummaries.filter(
|
|
|
|
date__gt=last_summary.date
|
|
|
|
)
|
2016-10-10 16:29:13 +00:00
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
refillings = refillings.filter(
|
|
|
|
date__gte=datetime(year=1994, month=5, day=17, tzinfo=pytz.UTC)
|
|
|
|
) # My birth date should be old enough
|
|
|
|
cashredistersummaries = cashredistersummaries.filter(
|
|
|
|
date__gte=datetime(year=1994, month=5, day=17, tzinfo=pytz.UTC)
|
|
|
|
)
|
|
|
|
if form.is_valid() and form.cleaned_data["end_date"]:
|
|
|
|
refillings = refillings.filter(date__lte=form.cleaned_data["end_date"])
|
|
|
|
cashredistersummaries = cashredistersummaries.filter(
|
|
|
|
date__lte=form.cleaned_data["end_date"]
|
|
|
|
)
|
|
|
|
kwargs["summaries_sums"][c.name] = sum(
|
|
|
|
[s.get_total() for s in cashredistersummaries.all()]
|
|
|
|
)
|
|
|
|
kwargs["refilling_sums"][c.name] = sum([s.amount for s in refillings.all()])
|
2016-09-13 00:04:49 +00:00
|
|
|
return kwargs
|
2016-09-29 12:54:03 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class InvoiceCallView(CounterAdminTabsMixin, CounterAdminMixin, TemplateView):
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/invoices_call.jinja"
|
|
|
|
current_tab = "invoices_call"
|
2016-09-29 16:17:44 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
""" Add sums to the context """
|
|
|
|
kwargs = super(InvoiceCallView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["months"] = Selling.objects.datetimes("date", "month", order="DESC")
|
2016-09-29 16:17:44 +00:00
|
|
|
start_date = None
|
|
|
|
end_date = None
|
|
|
|
try:
|
2018-10-04 19:29:19 +00:00
|
|
|
start_date = datetime.strptime(self.request.GET["month"], "%Y-%m")
|
2016-09-29 16:17:44 +00:00
|
|
|
except:
|
2018-10-04 19:29:19 +00:00
|
|
|
start_date = datetime(
|
|
|
|
year=timezone.now().year,
|
|
|
|
month=(timezone.now().month + 10) % 12 + 1,
|
|
|
|
day=1,
|
|
|
|
)
|
2016-09-30 16:43:53 +00:00
|
|
|
start_date = start_date.replace(tzinfo=pytz.UTC)
|
2018-10-04 19:29:19 +00:00
|
|
|
end_date = (start_date + timedelta(days=32)).replace(
|
|
|
|
day=1, hour=0, minute=0, microsecond=0
|
|
|
|
)
|
2016-09-29 16:17:44 +00:00
|
|
|
from django.db.models import Sum, Case, When, F, DecimalField
|
2018-10-04 19:29:19 +00:00
|
|
|
|
|
|
|
kwargs["sum_cb"] = sum(
|
|
|
|
[
|
|
|
|
r.amount
|
|
|
|
for r in Refilling.objects.filter(
|
|
|
|
payment_method="CARD",
|
|
|
|
is_validated=True,
|
|
|
|
date__gte=start_date,
|
|
|
|
date__lte=end_date,
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
kwargs["sum_cb"] += sum(
|
|
|
|
[
|
|
|
|
s.quantity * s.unit_price
|
|
|
|
for s in Selling.objects.filter(
|
|
|
|
payment_method="CARD",
|
|
|
|
is_validated=True,
|
|
|
|
date__gte=start_date,
|
|
|
|
date__lte=end_date,
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
kwargs["start_date"] = start_date
|
|
|
|
kwargs["sums"] = (
|
|
|
|
Selling.objects.values("club__name")
|
|
|
|
.annotate(
|
|
|
|
selling_sum=Sum(
|
|
|
|
Case(
|
|
|
|
When(
|
|
|
|
date__gte=start_date,
|
|
|
|
date__lt=end_date,
|
|
|
|
then=F("unit_price") * F("quantity"),
|
|
|
|
),
|
|
|
|
output_field=CurrencyField(),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.exclude(selling_sum=None)
|
|
|
|
.order_by("-selling_sum")
|
|
|
|
)
|
2016-09-29 16:17:44 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class EticketListView(CounterAdminTabsMixin, CounterAdminMixin, ListView):
|
2016-10-03 17:30:05 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
model = Eticket
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/eticket_list.jinja"
|
|
|
|
ordering = ["id"]
|
2016-10-03 17:30:05 +00:00
|
|
|
current_tab = "etickets"
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
class EticketForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Eticket
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["product", "banner", "event_title", "event_date"]
|
|
|
|
widgets = {"event_date": SelectDate}
|
|
|
|
|
|
|
|
product = AutoCompleteSelectField(
|
|
|
|
"products", show_help_text=False, label=_("Product"), required=True
|
|
|
|
)
|
2016-10-03 17:30:05 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class EticketCreateView(CounterAdminTabsMixin, CounterAdminMixin, CreateView):
|
2016-10-03 17:30:05 +00:00
|
|
|
"""
|
|
|
|
Create an eticket
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
model = Eticket
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/create.jinja"
|
2016-10-03 17:30:05 +00:00
|
|
|
form_class = EticketForm
|
|
|
|
current_tab = "etickets"
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2017-04-04 13:45:02 +00:00
|
|
|
class EticketEditView(CounterAdminTabsMixin, CounterAdminMixin, UpdateView):
|
2016-10-03 17:30:05 +00:00
|
|
|
"""
|
|
|
|
Edit an eticket
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
model = Eticket
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/edit.jinja"
|
2016-10-03 17:30:05 +00:00
|
|
|
form_class = EticketForm
|
|
|
|
pk_url_kwarg = "eticket_id"
|
|
|
|
current_tab = "etickets"
|
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
class EticketPDFView(CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display the PDF of an eticket
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
model = Selling
|
|
|
|
pk_url_kwarg = "selling_id"
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
from reportlab.pdfgen import canvas
|
|
|
|
from reportlab.lib.utils import ImageReader
|
|
|
|
from reportlab.lib.units import cm
|
|
|
|
from reportlab.graphics.shapes import Drawing
|
|
|
|
from reportlab.graphics.barcode.qr import QrCodeWidget
|
|
|
|
from reportlab.graphics import renderPDF
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
self.object = self.get_object()
|
|
|
|
eticket = self.object.product.eticket
|
|
|
|
user = self.object.customer.user
|
2018-10-04 19:29:19 +00:00
|
|
|
code = "%s %s %s %s" % (
|
|
|
|
self.object.customer.user.id,
|
|
|
|
self.object.product.id,
|
|
|
|
self.object.id,
|
|
|
|
self.object.quantity,
|
|
|
|
)
|
2016-10-03 17:30:05 +00:00
|
|
|
code += " " + eticket.get_hash(code)[:8].upper()
|
2018-10-04 19:29:19 +00:00
|
|
|
response = HttpResponse(content_type="application/pdf")
|
|
|
|
response["Content-Disposition"] = 'filename="eticket.pdf"'
|
2016-10-03 17:30:05 +00:00
|
|
|
p = canvas.Canvas(response)
|
|
|
|
p.setTitle("Eticket")
|
|
|
|
im = ImageReader("core/static/core/img/eticket.jpg")
|
|
|
|
width, height = im.getSize()
|
|
|
|
size = max(width, height)
|
|
|
|
width = 8 * cm * width / size
|
|
|
|
height = 8 * cm * height / size
|
|
|
|
p.drawImage(im, 10 * cm, 25 * cm, width, height)
|
|
|
|
if eticket.banner:
|
|
|
|
im = ImageReader(eticket.banner)
|
|
|
|
width, height = im.getSize()
|
|
|
|
size = max(width, height)
|
|
|
|
width = 6 * cm * width / size
|
|
|
|
height = 6 * cm * height / size
|
|
|
|
p.drawImage(im, 1 * cm, 25 * cm, width, height)
|
|
|
|
if user.profile_pict:
|
|
|
|
im = ImageReader(user.profile_pict.file)
|
|
|
|
width, height = im.getSize()
|
|
|
|
size = max(width, height)
|
|
|
|
width = 150 * width / size
|
|
|
|
height = 150 * height / size
|
|
|
|
p.drawImage(im, 10.5 * cm - width / 2, 16 * cm, width, height)
|
|
|
|
if eticket.event_title:
|
|
|
|
p.setFont("Helvetica-Bold", 20)
|
|
|
|
p.drawCentredString(10.5 * cm, 23.6 * cm, eticket.event_title)
|
|
|
|
if eticket.event_date:
|
|
|
|
p.setFont("Helvetica-Bold", 16)
|
2018-10-04 19:29:19 +00:00
|
|
|
p.drawCentredString(
|
|
|
|
10.5 * cm, 22.6 * cm, eticket.event_date.strftime("%d %b %Y")
|
|
|
|
) # FIXME with a locale
|
2016-10-03 17:30:05 +00:00
|
|
|
p.setFont("Helvetica-Bold", 14)
|
2018-10-04 19:29:19 +00:00
|
|
|
p.drawCentredString(
|
|
|
|
10.5 * cm,
|
|
|
|
15 * cm,
|
|
|
|
"%s : %d %s"
|
|
|
|
% (user.get_display_name(), self.object.quantity, str(_("people(s)"))),
|
|
|
|
)
|
2016-10-03 17:30:05 +00:00
|
|
|
p.setFont("Courier-Bold", 14)
|
|
|
|
qrcode = QrCodeWidget(code)
|
|
|
|
bounds = qrcode.getBounds()
|
|
|
|
width = bounds[2] - bounds[0]
|
|
|
|
height = bounds[3] - bounds[1]
|
2018-10-04 19:29:19 +00:00
|
|
|
d = Drawing(260, 260, transform=[260.0 / width, 0, 0, 260.0 / height, 0, 0])
|
2016-10-03 17:30:05 +00:00
|
|
|
d.add(qrcode)
|
|
|
|
renderPDF.draw(d, p, 10.5 * cm - 130, 6.1 * cm)
|
|
|
|
p.drawCentredString(10.5 * cm, 6 * cm, code)
|
|
|
|
|
2016-12-18 23:08:17 +00:00
|
|
|
partners = ImageReader("core/static/core/img/partners.png")
|
|
|
|
width, height = partners.getSize()
|
|
|
|
size = max(width, height)
|
|
|
|
width = width * 2 / 3
|
|
|
|
height = height * 2 / 3
|
|
|
|
p.drawImage(partners, 0 * cm, 0 * cm, width, height)
|
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
p.showPage()
|
|
|
|
p.save()
|
|
|
|
return response
|
2017-09-02 13:05:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CounterRefillingListView(CounterAdminTabsMixin, CounterAdminMixin, ListView):
|
|
|
|
"""
|
|
|
|
List of refillings on a counter
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-09-02 13:05:36 +00:00
|
|
|
model = Refilling
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "counter/refilling_list.jinja"
|
2017-09-02 13:05:36 +00:00
|
|
|
current_tab = "counters"
|
|
|
|
paginate_by = 30
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.counter = get_object_or_404(Counter, pk=kwargs["counter_id"])
|
2017-09-02 13:05:36 +00:00
|
|
|
self.queryset = Refilling.objects.filter(counter__id=self.counter.id)
|
|
|
|
return super(CounterRefillingListView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(CounterRefillingListView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["counter"] = self.counter
|
2017-09-02 13:05:36 +00:00
|
|
|
return kwargs
|
2018-10-19 17:25:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
class StudentCardFormView(FormView):
|
|
|
|
"""
|
|
|
|
Add a new student card
|
|
|
|
"""
|
|
|
|
|
|
|
|
form_class = StudentCardForm
|
|
|
|
template_name = "core/create.jinja"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
self.customer = get_object_or_404(Customer, pk=kwargs["customer_id"])
|
|
|
|
return super(StudentCardFormView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
data = form.clean()
|
|
|
|
res = super(FormView, self).form_valid(form)
|
|
|
|
self.customer.add_student_card(data["uid"], self.request)
|
|
|
|
return res
|
|
|
|
|
|
|
|
def get_success_url(self, **kwargs):
|
|
|
|
return reverse_lazy(
|
|
|
|
"core:user_prefs", kwargs={"user_id": self.customer.user.pk}
|
|
|
|
)
|