2016-03-28 12:54:35 +00:00
|
|
|
from django.shortcuts import render
|
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
|
2016-04-15 09:50:31 +00:00
|
|
|
from django.views.generic.edit import UpdateView, CreateView, DeleteView, ProcessFormView, FormMixin
|
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-09-26 21:56:24 +00:00
|
|
|
from django.core.exceptions import PermissionDenied
|
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-07-21 23:19:04 +00:00
|
|
|
from django.db import DataError, transaction
|
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
|
|
|
|
from ajax_select import make_ajax_form, make_ajax_field
|
2016-03-28 12:54:35 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
from core.views import CanViewMixin, CanEditMixin, CanEditPropMixin, CanCreateMixin, TabedViewMixin
|
2016-10-10 16:29:13 +00:00
|
|
|
from core.views.forms import SelectUser, 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
|
2016-10-03 17:30:05 +00:00
|
|
|
from counter.models import Counter, Customer, Product, Selling, Refilling, ProductType, CashRegisterSummary, CashRegisterSummaryItem, Eticket
|
2016-09-15 09:07:03 +00:00
|
|
|
from accounting.models import CurrencyField
|
2016-03-28 12:54:35 +00:00
|
|
|
|
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)
|
|
|
|
"""
|
2016-06-26 17:30:28 +00:00
|
|
|
code = forms.CharField(label="Code", max_length=10, required=False)
|
2016-08-19 21:24:23 +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):
|
|
|
|
self.fields['code'].widget.attrs['autofocus'] = True
|
|
|
|
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
|
2016-04-18 02:37:37 +00:00
|
|
|
if cleaned_data['code'] != "":
|
2016-09-01 08:00:31 +00:00
|
|
|
cus = Customer.objects.filter(account_id__iexact=cleaned_data['code']).first()
|
2016-04-18 02:37:37 +00:00
|
|
|
elif cleaned_data['id'] is not None:
|
2016-08-01 22:32:55 +00:00
|
|
|
cus = Customer.objects.filter(user=cleaned_data['id']).first()
|
2016-12-10 00:58:30 +00:00
|
|
|
sub = cus.user if cus is not None else None
|
2016-08-18 17:52:20 +00:00
|
|
|
if (cus is None or sub is None or not sub.subscriptions.last() or
|
|
|
|
(date.today() - sub.subscriptions.last().subscription_end) > timedelta(days=90)):
|
2016-07-27 18:05:45 +00:00
|
|
|
raise forms.ValidationError(_("User not found"))
|
2016-08-01 22:32:55 +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
|
|
|
|
|
2016-07-17 09:38:19 +00:00
|
|
|
class RefillForm(forms.ModelForm):
|
|
|
|
error_css_class = 'error'
|
|
|
|
required_css_class = 'required'
|
|
|
|
class Meta:
|
|
|
|
model = Refilling
|
|
|
|
fields = ['amount', 'payment_method', 'bank']
|
2016-10-16 00:47:21 +00:00
|
|
|
widgets = {
|
|
|
|
'amount': forms.NumberInput(attrs={'class':'focus'},)
|
|
|
|
}
|
2016-07-17 09:38:19 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterTabsMixin(TabedViewMixin):
|
|
|
|
def get_tabs_title(self):
|
|
|
|
return self.object
|
|
|
|
def get_list_of_tabs(self):
|
|
|
|
tab_list = []
|
|
|
|
tab_list.append({
|
|
|
|
'url': reverse_lazy('counter:details', kwargs={'counter_id': self.object.id}),
|
|
|
|
'slug': 'counter',
|
|
|
|
'name': _("Counter"),
|
|
|
|
})
|
|
|
|
if self.object.type == "BAR":
|
|
|
|
tab_list.append({
|
|
|
|
'url': reverse_lazy('counter:cash_summary', kwargs={'counter_id': self.object.id}),
|
|
|
|
'slug': 'cash_summary',
|
|
|
|
'name': _("Cash summary"),
|
|
|
|
})
|
|
|
|
tab_list.append({
|
|
|
|
'url': reverse_lazy('counter:last_ops', kwargs={'counter_id': self.object.id}),
|
|
|
|
'slug': 'last_ops',
|
|
|
|
'name': _("Last operations"),
|
|
|
|
})
|
|
|
|
return tab_list
|
|
|
|
|
2016-09-29 10:53:09 +00:00
|
|
|
class CounterMain(CounterTabsMixin, DetailView, ProcessFormView, FormMixin):
|
2016-03-31 08:36:00 +00:00
|
|
|
"""
|
|
|
|
The public (barman) view
|
|
|
|
"""
|
2016-03-28 12:54:35 +00:00
|
|
|
model = Counter
|
2016-04-15 09:50:31 +00:00
|
|
|
template_name = 'counter/counter_main.jinja'
|
2016-03-28 12:54:35 +00:00
|
|
|
pk_url_kwarg = "counter_id"
|
2016-04-18 02:37:37 +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()
|
|
|
|
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')
|
|
|
|
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
|
|
|
"""
|
2016-04-18 02:37:37 +00:00
|
|
|
if self.request.method == 'POST':
|
|
|
|
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)
|
2016-08-31 00:43:49 +00:00
|
|
|
kwargs['login_form'] = LoginForm()
|
2016-06-26 18:07:29 +00:00
|
|
|
kwargs['login_form'].fields['username'].widget.attrs['autofocus'] = True
|
2016-08-20 14:09:46 +00:00
|
|
|
kwargs['login_form'].cleaned_data = {} # add_error fails if there are no cleaned_data
|
|
|
|
if "credentials" in self.request.GET:
|
|
|
|
kwargs['login_form'].add_error(None, _("Bad credentials"))
|
2016-09-08 23:54:26 +00:00
|
|
|
if "sellers" in self.request.GET:
|
|
|
|
kwargs['login_form'].add_error(None, _("User is not barman"))
|
2016-04-15 09:50:31 +00:00
|
|
|
kwargs['form'] = self.get_form()
|
2016-09-26 09:17:00 +00:00
|
|
|
kwargs['form'].cleaned_data = {} # same as above
|
|
|
|
if "bad_location" in self.request.GET:
|
2016-09-26 09:31:45 +00:00
|
|
|
kwargs['form'].add_error(None, _("Bad location, someone is already logged in somewhere else"))
|
2016-07-21 18:03:31 +00:00
|
|
|
if self.object.type == 'BAR':
|
2016-08-06 10:37:36 +00:00
|
|
|
kwargs['barmen'] = self.object.get_barmen_list()
|
2016-07-21 18:03:31 +00:00
|
|
|
elif self.request.user.is_authenticated():
|
|
|
|
kwargs['barmen'] = [self.request.user]
|
2016-05-31 23:33:20 +00:00
|
|
|
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
|
|
|
|
"""
|
|
|
|
self.kwargs['user_id'] = form.cleaned_data['user_id']
|
|
|
|
return super(CounterMain, self).form_valid(form)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy('counter:click', args=self.args, kwargs=self.kwargs)
|
|
|
|
|
2016-09-29 10:53:09 +00:00
|
|
|
class CounterClick(CounterTabsMixin, 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
|
|
|
"""
|
2016-04-18 15:34:21 +00:00
|
|
|
model = Counter
|
2016-04-15 09:50:31 +00:00
|
|
|
template_name = 'counter/counter_click.jinja'
|
|
|
|
pk_url_kwarg = "counter_id"
|
2016-09-28 09:07:32 +00:00
|
|
|
current_tab = "counter"
|
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"""
|
2016-04-18 15:34:21 +00:00
|
|
|
self.customer = Customer.objects.filter(user__id=self.kwargs['user_id']).first()
|
2016-06-02 12:55:12 +00:00
|
|
|
if 'basket' not in request.session.keys(): # Init the basket session entry
|
|
|
|
request.session['basket'] = {}
|
|
|
|
request.session['basket_total'] = 0
|
2016-09-01 14:55:43 +00:00
|
|
|
request.session['not_enough'] = False # Reset every variable
|
2016-08-20 00:55:48 +00:00
|
|
|
request.session['too_young'] = False
|
2016-08-20 20:12:46 +00:00
|
|
|
request.session['not_allowed'] = False
|
2016-09-01 14:55:43 +00:00
|
|
|
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)
|
2016-07-21 18:03:31 +00:00
|
|
|
if ((self.object.type != "BAR" and not request.user.is_authenticated()) or
|
|
|
|
(self.object.type == "BAR" and
|
2016-08-06 10:37:36 +00:00
|
|
|
len(self.object.get_barmen_list()) < 1)): # Check that at least one barman is logged in
|
2016-07-21 18:03:31 +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()
|
|
|
|
self.customer = Customer.objects.filter(user__id=self.kwargs['user_id']).first()
|
2016-07-17 09:38:19 +00:00
|
|
|
self.refill_form = None
|
2016-07-22 11:34:34 +00:00
|
|
|
if ((self.object.type != "BAR" and not request.user.is_authenticated()) or
|
|
|
|
(self.object.type == "BAR" and
|
2016-08-06 10:37:36 +00:00
|
|
|
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)
|
2016-09-26 09:17:00 +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')
|
2016-04-18 23:54:51 +00:00
|
|
|
if 'basket' not in request.session.keys():
|
|
|
|
request.session['basket'] = {}
|
2016-06-02 12:55:12 +00:00
|
|
|
request.session['basket_total'] = 0
|
2016-09-01 14:55:43 +00:00
|
|
|
request.session['not_enough'] = False # Reset every variable
|
2016-08-20 00:55:48 +00:00
|
|
|
request.session['too_young'] = False
|
2016-08-20 20:12:46 +00:00
|
|
|
request.session['not_allowed'] = False
|
2016-09-01 14:55:43 +00:00
|
|
|
request.session['no_age'] = 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
|
|
|
|
|
|
|
if 'add_product' in request.POST['action']:
|
|
|
|
self.add_product(request)
|
|
|
|
elif 'del_product' in request.POST['action']:
|
|
|
|
self.del_product(request)
|
2016-06-26 18:07:29 +00:00
|
|
|
elif 'refill' in request.POST['action']:
|
|
|
|
self.refill(request)
|
2016-06-26 17:30:28 +00:00
|
|
|
elif 'code' in request.POST['action']:
|
|
|
|
return self.parse_code(request)
|
2016-04-18 23:54:51 +00:00
|
|
|
elif 'cancel' in request.POST['action']:
|
|
|
|
return self.cancel(request)
|
|
|
|
elif 'finish' in request.POST['action']:
|
|
|
|
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):
|
2016-08-06 10:37:36 +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
|
|
|
|
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:
|
|
|
|
return request.session['basket'][pid]['qty'] + request.session['basket'][pid]['bonus_qty']
|
|
|
|
except:
|
|
|
|
return 0
|
|
|
|
|
2016-06-26 17:30:28 +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
|
|
|
|
"""
|
2016-07-16 14:48:56 +00:00
|
|
|
pid = p or request.POST['product_id']
|
|
|
|
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:
|
|
|
|
request.session['not_allowed'] = True
|
|
|
|
return False
|
2016-08-20 14:09:46 +00:00
|
|
|
bq = 0 # Bonus quantity, for trays
|
|
|
|
if product.tray: # Handle the tray to adjust the quantity q to add and the bonus quantity bq
|
|
|
|
total_qty_mod_6 = self.get_total_quantity_for_pid(request, pid) % 6
|
|
|
|
bq = int((total_qty_mod_6 + q) / 6) # Integer division
|
|
|
|
q -= bq
|
|
|
|
if self.customer.amount < (total + q*float(price)): # Check for enough money
|
2016-06-02 12:55:12 +00:00
|
|
|
request.session['not_enough'] = True
|
2016-06-26 17:30:28 +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:
|
|
|
|
request.session['no_age'] = True
|
|
|
|
return False
|
2016-10-15 00:33:38 +00:00
|
|
|
if product.limit_age >= 18 and self.customer.user.is_banned_alcohol:
|
|
|
|
request.session['not_allowed'] = True
|
|
|
|
return False
|
2016-10-16 01:45:06 +00:00
|
|
|
if self.customer.user.is_banned_counter:
|
|
|
|
request.session['not_allowed'] = True
|
|
|
|
return False
|
2016-09-01 14:55:43 +00:00
|
|
|
if self.customer.user.date_of_birth and self.customer.user.get_age() < product.limit_age: # Check if affordable
|
2016-08-20 00:55:48 +00:00
|
|
|
request.session['too_young'] = True
|
|
|
|
return False
|
2016-08-20 14:09:46 +00:00
|
|
|
if pid in request.session['basket']: # Add if already in basket
|
2016-06-02 12:55:12 +00:00
|
|
|
request.session['basket'][pid]['qty'] += q
|
2016-08-20 14:09:46 +00:00
|
|
|
request.session['basket'][pid]['bonus_qty'] += bq
|
|
|
|
else: # or create if not
|
|
|
|
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
|
|
|
|
|
|
|
def del_product(self, request):
|
|
|
|
""" Delete a product from the basket """
|
2016-04-19 17:58:57 +00:00
|
|
|
pid = str(request.POST['product_id'])
|
2016-08-20 14:09:46 +00:00
|
|
|
product = self.get_product(pid)
|
2016-04-19 17:58:57 +00:00
|
|
|
if pid in request.session['basket']:
|
2016-08-20 14:09:46 +00:00
|
|
|
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
|
|
|
|
else:
|
|
|
|
request.session['basket'][pid]['qty'] -= 1
|
2016-06-01 22:26:31 +00:00
|
|
|
if request.session['basket'][pid]['qty'] <= 0:
|
2016-04-19 17:58:57 +00:00
|
|
|
del request.session['basket'][pid]
|
2016-04-18 23:54:51 +00:00
|
|
|
else:
|
2016-08-20 14:09:46 +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"""
|
|
|
|
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:
|
|
|
|
nb = m.group('nb')
|
|
|
|
code = m.group('code')
|
|
|
|
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():
|
|
|
|
request.session['last_basket'] = []
|
|
|
|
for pid,infos in request.session['basket'].items():
|
|
|
|
# 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
|
|
|
|
if uprice * infos['qty'] > self.customer.amount:
|
|
|
|
raise DataError(_("You have not enough money to buy all the basket"))
|
2016-08-20 14:09:46 +00:00
|
|
|
request.session['last_basket'].append("%d x %s" % (infos['qty']+infos['bonus_qty'], p.name))
|
2016-08-18 01:04:50 +00:00
|
|
|
s = Selling(label=p.name, product=p, club=p.club, counter=self.object, unit_price=uprice,
|
2016-07-22 11:34:34 +00:00
|
|
|
quantity=infos['qty'], seller=self.operator, customer=self.customer)
|
2016-07-21 23:19:04 +00:00
|
|
|
s.save()
|
2016-08-20 14:09:46 +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)
|
|
|
|
s.save()
|
2016-07-21 23:19:04 +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']
|
|
|
|
request.session.modified = True
|
|
|
|
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 """
|
|
|
|
kwargs = {'counter_id': self.object.id}
|
2016-04-19 17:58:57 +00:00
|
|
|
request.session.pop('basket', None)
|
2016-04-18 23:54:51 +00:00
|
|
|
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"""
|
2016-07-17 09:38:19 +00:00
|
|
|
form = RefillForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
form.instance.counter = self.object
|
2016-07-22 11:34:34 +00:00
|
|
|
form.instance.operator = self.operator
|
2016-07-17 09:38:19 +00:00
|
|
|
form.instance.customer = self.customer
|
|
|
|
form.instance.save()
|
|
|
|
else:
|
|
|
|
self.refill_form = form
|
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)
|
|
|
|
kwargs['customer'] = self.customer
|
2016-06-02 12:55:12 +00:00
|
|
|
kwargs['basket_total'] = self.sum_basket(self.request)
|
2016-07-17 09:38:19 +00:00
|
|
|
kwargs['refill_form'] = self.refill_form or RefillForm()
|
2016-08-20 20:12:46 +00:00
|
|
|
kwargs['categories'] = ProductType.objects.all()
|
2016-04-18 15:34:21 +00:00
|
|
|
return kwargs
|
|
|
|
|
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
|
|
|
"""
|
2016-03-31 08:36:00 +00:00
|
|
|
permanent = False
|
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
|
|
|
|
"""
|
2016-04-12 08:00:47 +00:00
|
|
|
self.counter_id = kwargs['counter_id']
|
2016-08-26 18:56:16 +00:00
|
|
|
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():
|
2016-08-26 18:56:16 +00:00
|
|
|
user = User.objects.filter(username=form.cleaned_data['username']).first()
|
2016-09-08 23:54:26 +00:00
|
|
|
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()
|
2017-01-04 15:14:17 +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):
|
2016-08-20 14:09:46 +00:00
|
|
|
return reverse_lazy('counter:details', args=args, kwargs=kwargs)+"?"+'&'.join(self.errors)
|
2016-04-12 08:00:47 +00:00
|
|
|
|
|
|
|
class CounterLogout(RedirectView):
|
|
|
|
permanent = False
|
|
|
|
def post(self, request, *args, **kwargs):
|
2016-04-12 11:08:37 +00:00
|
|
|
"""
|
|
|
|
Unregister the user from the barman
|
|
|
|
"""
|
2016-08-26 18:56:16 +00:00
|
|
|
self.counter = Counter.objects.filter(id=kwargs['counter_id']).first()
|
|
|
|
user = User.objects.filter(id=request.POST['user_id']).first()
|
|
|
|
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):
|
|
|
|
return reverse_lazy('counter:details', args=args, kwargs=kwargs)
|
2016-03-31 08:36:00 +00:00
|
|
|
|
2016-04-18 15:34:21 +00:00
|
|
|
## Counter admin views
|
|
|
|
|
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 = [
|
|
|
|
{
|
|
|
|
'url': reverse_lazy('counter:admin_list'),
|
|
|
|
'slug': 'counters',
|
|
|
|
'name': _("Counters"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'url': reverse_lazy('counter:product_list'),
|
|
|
|
'slug': 'products',
|
|
|
|
'name': _("Products"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'url': reverse_lazy('counter:product_list_archived'),
|
|
|
|
'slug': 'archive',
|
|
|
|
'name': _("Archived products"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'url': reverse_lazy('counter:producttype_list'),
|
|
|
|
'slug': 'product_types',
|
|
|
|
'name': _("Product types"),
|
|
|
|
},
|
2016-09-13 00:04:49 +00:00
|
|
|
{
|
|
|
|
'url': reverse_lazy('counter:cash_summary_list'),
|
|
|
|
'slug': 'cash_summary',
|
|
|
|
'name': _("Cash register summaries"),
|
|
|
|
},
|
2016-09-29 16:17:44 +00:00
|
|
|
{
|
|
|
|
'url': reverse_lazy('counter:invoices_call'),
|
|
|
|
'slug': 'invoices_call',
|
|
|
|
'name': _("Invoices call"),
|
|
|
|
},
|
2016-10-03 17:30:05 +00:00
|
|
|
{
|
|
|
|
'url': reverse_lazy('counter:eticket_list'),
|
|
|
|
'slug': 'etickets',
|
|
|
|
'name': _("Etickets"),
|
|
|
|
},
|
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
|
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
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
|
|
|
|
2016-08-19 21:24:23 +00:00
|
|
|
class CounterEditForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Counter
|
|
|
|
fields = ['sellers', 'products']
|
2016-08-26 18:56:16 +00:00
|
|
|
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
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterEditView(CounterAdminTabsMixin, CanEditMixin, UpdateView):
|
2016-08-19 21:24:23 +00:00
|
|
|
"""
|
|
|
|
Edit a counter's main informations (for the counter's manager)
|
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
form_class = CounterEditForm
|
|
|
|
pk_url_kwarg = "counter_id"
|
2016-08-26 18:56:16 +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
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy('counter:admin', kwargs={'counter_id': self.object.id})
|
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterEditPropView(CounterAdminTabsMixin, CanEditPropMixin, 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
|
|
|
"""
|
|
|
|
model = Counter
|
2016-08-19 21:24:23 +00:00
|
|
|
form_class = modelform_factory(Counter, fields=['name', 'club', 'type'])
|
2016-03-29 08:30:24 +00:00
|
|
|
pk_url_kwarg = "counter_id"
|
2016-08-18 01:04:50 +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
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterCreateView(CounterAdminTabsMixin, CanEditMixin, 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
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
form_class = modelform_factory(Counter, fields=['name', 'club', 'type', 'products'],
|
|
|
|
widgets={'products':CheckboxSelectMultiple})
|
2016-08-18 01:04:50 +00:00
|
|
|
template_name = 'core/create.jinja'
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "counters"
|
2016-03-29 08:30:24 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterDeleteView(CounterAdminTabsMixin, CanEditMixin, 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
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
|
|
|
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
|
|
|
|
2016-07-27 15:23:02 +00:00
|
|
|
# Product management
|
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class ProductTypeListView(CounterAdminTabsMixin, CanEditPropMixin, ListView):
|
2016-07-27 18:05:45 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
|
|
|
model = ProductType
|
|
|
|
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
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class ProductTypeCreateView(CounterAdminTabsMixin, CanCreateMixin, CreateView):
|
2016-07-27 18:05:45 +00:00
|
|
|
"""
|
|
|
|
A create view for the admins
|
|
|
|
"""
|
|
|
|
model = ProductType
|
|
|
|
fields = ['name', 'description', '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
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class ProductTypeEditView(CounterAdminTabsMixin, CanEditPropMixin, UpdateView):
|
2016-07-27 18:05:45 +00:00
|
|
|
"""
|
|
|
|
An edit view for the admins
|
|
|
|
"""
|
|
|
|
model = ProductType
|
|
|
|
template_name = 'core/edit.jinja'
|
|
|
|
fields = ['name', 'description', 'icon']
|
|
|
|
pk_url_kwarg = "type_id"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-07-27 18:05:45 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class ProductArchivedListView(CounterAdminTabsMixin, CanEditPropMixin, ListView):
|
2016-09-04 13:49:25 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
|
|
|
model = Product
|
|
|
|
template_name = 'counter/product_list.jinja'
|
|
|
|
queryset = Product.objects.filter(archived=True)
|
|
|
|
ordering = ['name']
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "archive"
|
2016-09-04 13:49:25 +00:00
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class ProductListView(CounterAdminTabsMixin, CanEditPropMixin, ListView):
|
2016-07-27 15:23:02 +00:00
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
|
|
|
model = Product
|
|
|
|
template_name = 'counter/product_list.jinja'
|
2016-09-04 13:49:25 +00:00
|
|
|
queryset = Product.objects.filter(archived=False)
|
2016-08-31 13:29:16 +00:00
|
|
|
ordering = ['name']
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-09-04 13:49:25 +00:00
|
|
|
|
2016-08-20 20:12:46 +00:00
|
|
|
class ProductEditForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Product
|
|
|
|
fields = ['name', 'description', 'product_type', 'code', 'parent_product', 'buying_groups', 'purchase_price',
|
2016-09-04 13:49:25 +00:00
|
|
|
'selling_price', 'special_selling_price', 'icon', 'club', 'limit_age', 'tray', 'archived']
|
2016-08-20 20:12:46 +00:00
|
|
|
parent_product = AutoCompleteSelectField('products', show_help_text=False, label=_("Parent product"), required=False)
|
2016-08-31 13:29:16 +00:00
|
|
|
buying_groups = AutoCompleteSelectMultipleField('groups', show_help_text=False, help_text="", label=_("Buying groups"), required=False)
|
2016-08-20 20:12:46 +00:00
|
|
|
club = AutoCompleteSelectField('clubs', show_help_text=False)
|
|
|
|
counters = AutoCompleteSelectMultipleField('counters', show_help_text=False, help_text="", label=_("Counters"), required=False)
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(ProductEditForm, self).__init__(*args, **kwargs)
|
|
|
|
if self.instance.id:
|
|
|
|
self.fields['counters'].initial = [str(c.id) for c in self.instance.counters.all()]
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
ret = super(ProductEditForm, self).save(*args, **kwargs)
|
|
|
|
if self.fields['counters'].initial:
|
|
|
|
for cid in self.fields['counters'].initial:
|
|
|
|
c = Counter.objects.filter(id=int(cid)).first()
|
|
|
|
c.products.remove(self.instance)
|
|
|
|
c.save()
|
|
|
|
for cid in self.cleaned_data['counters']:
|
|
|
|
c = Counter.objects.filter(id=int(cid)).first()
|
|
|
|
c.products.add(self.instance)
|
|
|
|
c.save()
|
|
|
|
return ret
|
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class ProductCreateView(CounterAdminTabsMixin, CanCreateMixin, CreateView):
|
2016-07-27 15:23:02 +00:00
|
|
|
"""
|
|
|
|
A create view for the admins
|
|
|
|
"""
|
|
|
|
model = Product
|
2016-08-20 20:12:46 +00:00
|
|
|
form_class = ProductEditForm
|
2016-07-27 18:05:45 +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
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class ProductEditView(CounterAdminTabsMixin, CanEditPropMixin, UpdateView):
|
2016-07-27 15:23:02 +00:00
|
|
|
"""
|
|
|
|
An edit view for the admins
|
|
|
|
"""
|
|
|
|
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"
|
|
|
|
template_name = 'core/edit.jinja'
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "products"
|
2016-08-18 19:06:10 +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)
|
|
|
|
"""
|
|
|
|
model = Refilling
|
|
|
|
pk_url_kwarg = "refilling_id"
|
|
|
|
template_name = 'core/delete_confirm.jinja'
|
|
|
|
|
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()
|
|
|
|
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 # check if not null for counters that have no token set
|
|
|
|
Counter.objects.filter(token=request.session['counter_token']).exists()):
|
|
|
|
self.success_url = reverse('counter:details', kwargs={'counter_id': self.object.counter.id})
|
|
|
|
return super(RefillingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
elif self.object.is_owned_by(request.user):
|
|
|
|
self.success_url = reverse('core:user_account', kwargs={'user_id': self.object.customer.user.id})
|
|
|
|
return super(RefillingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
raise PermissionDenied
|
2016-08-18 19:06:10 +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)
|
|
|
|
"""
|
|
|
|
model = Selling
|
|
|
|
pk_url_kwarg = "selling_id"
|
|
|
|
template_name = 'core/delete_confirm.jinja'
|
|
|
|
|
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()
|
|
|
|
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 # check if not null for counters that have no token set
|
|
|
|
Counter.objects.filter(token=request.session['counter_token']).exists()):
|
|
|
|
self.success_url = reverse('counter:details', kwargs={'counter_id': self.object.counter.id})
|
|
|
|
return super(SellingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
elif self.object.is_owned_by(request.user):
|
|
|
|
self.success_url = reverse('core:user_account', kwargs={'user_id': self.object.customer.user.id})
|
|
|
|
return super(SellingDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
raise PermissionDenied
|
2016-08-18 19:06:10 +00:00
|
|
|
|
2016-08-26 18:57:04 +00:00
|
|
|
# Cash register summaries
|
|
|
|
|
|
|
|
class CashRegisterSummaryForm(forms.Form):
|
|
|
|
"""
|
|
|
|
Provide the cash summary form
|
|
|
|
"""
|
|
|
|
ten_cents = forms.IntegerField(label=_("10 cents"), required=False)
|
|
|
|
twenty_cents = forms.IntegerField(label=_("20 cents"), required=False)
|
|
|
|
fifty_cents = forms.IntegerField(label=_("50 cents"), required=False)
|
|
|
|
one_euro = forms.IntegerField(label=_("1 euro"), required=False)
|
|
|
|
two_euros = forms.IntegerField(label=_("2 euros"), required=False)
|
|
|
|
five_euros = forms.IntegerField(label=_("5 euros"), required=False)
|
|
|
|
ten_euros = forms.IntegerField(label=_("10 euros"), required=False)
|
|
|
|
twenty_euros = forms.IntegerField(label=_("20 euros"), required=False)
|
|
|
|
fifty_euros = forms.IntegerField(label=_("50 euros"), required=False)
|
|
|
|
hundred_euros = forms.IntegerField(label=_("100 euros"), required=False)
|
|
|
|
check_1_value = forms.DecimalField(label=_("Check amount"), required=False)
|
|
|
|
check_1_quantity = forms.IntegerField(label=_("Check quantity"), required=False)
|
|
|
|
check_2_value = forms.DecimalField(label=_("Check amount"), required=False)
|
|
|
|
check_2_quantity = forms.IntegerField(label=_("Check quantity"), required=False)
|
|
|
|
check_3_value = forms.DecimalField(label=_("Check amount"), required=False)
|
|
|
|
check_3_quantity = forms.IntegerField(label=_("Check quantity"), required=False)
|
|
|
|
check_4_value = forms.DecimalField(label=_("Check amount"), required=False)
|
|
|
|
check_4_quantity = forms.IntegerField(label=_("Check quantity"), required=False)
|
|
|
|
check_5_value = forms.DecimalField(label=_("Check amount"), required=False)
|
|
|
|
check_5_quantity = forms.IntegerField(label=_("Check quantity"), required=False)
|
|
|
|
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):
|
|
|
|
instance = kwargs.pop('instance', None)
|
|
|
|
super(CashRegisterSummaryForm, self).__init__(*args, **kwargs)
|
|
|
|
if instance:
|
|
|
|
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
|
|
|
|
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(
|
2016-08-26 18:57:04 +00:00
|
|
|
counter=counter,
|
|
|
|
user=counter.get_random_barman(),
|
|
|
|
)
|
2016-09-29 12:54:03 +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
|
|
|
|
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()
|
|
|
|
# Checks
|
2016-09-29 12:54:03 +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()
|
|
|
|
|
2016-09-28 09:07:32 +00:00
|
|
|
class CounterLastOperationsView(CounterTabsMixin, CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Provide the last operations to allow barmen to delete them
|
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
|
|
|
template_name = 'counter/last_ops.jinja'
|
|
|
|
current_tab = "last_ops"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
We have here again a very particular right handling
|
|
|
|
"""
|
|
|
|
self.object = self.get_object()
|
|
|
|
if (self.object.get_barmen_list() and 'counter_token' in request.session.keys() and
|
|
|
|
request.session['counter_token'] and # check if not null for counters that have no token set
|
|
|
|
Counter.objects.filter(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')
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
"""Add form to the context """
|
|
|
|
kwargs = super(CounterLastOperationsView, self).get_context_data(**kwargs)
|
|
|
|
threshold = timezone.now() - timedelta(minutes=settings.SITH_LAST_OPERATIONS_LIMIT)
|
|
|
|
kwargs['last_refillings'] = self.object.refillings.filter(date__gte=threshold).all()
|
|
|
|
kwargs['last_sellings'] = self.object.sellings.filter(date__gte=threshold).all()
|
|
|
|
return kwargs
|
|
|
|
|
|
|
|
class CounterCashSummaryView(CounterTabsMixin, CanViewMixin, DetailView):
|
2016-08-26 18:57:04 +00:00
|
|
|
"""
|
|
|
|
Provide the cash summary form
|
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
|
|
|
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()
|
|
|
|
if (self.object.get_barmen_list() and 'counter_token' in request.session.keys() and
|
|
|
|
request.session['counter_token'] and # check if not null for counters that have no token set
|
|
|
|
Counter.objects.filter(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):
|
|
|
|
return reverse_lazy('counter:details', kwargs={'counter_id': self.object.id})
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
""" Add form to the context """
|
|
|
|
kwargs = super(CounterCashSummaryView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['form'] = self.form
|
|
|
|
return kwargs
|
2016-09-12 15:34:33 +00:00
|
|
|
|
|
|
|
class CounterActivityView(DetailView):
|
|
|
|
"""
|
|
|
|
Show the bar activity
|
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
|
|
|
template_name = 'counter/activity.jinja'
|
|
|
|
|
2016-09-27 14:44:12 +00:00
|
|
|
class CounterStatView(DetailView, CanEditMixin):
|
2016-09-15 09:07:03 +00:00
|
|
|
"""
|
|
|
|
Show the bar stats
|
|
|
|
"""
|
|
|
|
model = Counter
|
|
|
|
pk_url_kwarg = "counter_id"
|
|
|
|
template_name = 'counter/stats.jinja'
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
""" Add stats to the context """
|
|
|
|
from django.db.models import Sum, Case, When, F, DecimalField
|
|
|
|
kwargs = super(CounterStatView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['Customer'] = Customer
|
|
|
|
semester_start = Subscription.compute_start(d=date.today(), duration=3)
|
|
|
|
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()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
).exclude(selling_sum=None).order_by('-selling_sum').all()[:100]
|
|
|
|
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:
|
2016-09-27 14:56:30 +00:00
|
|
|
if (request.user.is_root
|
|
|
|
or request.user.is_board_member
|
|
|
|
or self.object.is_owned_by(request.user)):
|
|
|
|
return super(CanEditMixin, self).dispatch(request, *args, **kwargs)
|
2016-09-26 21:56:24 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
|
2016-09-29 12:54:03 +00:00
|
|
|
class CashSummaryEditView(CanEditPropMixin, CounterAdminTabsMixin, UpdateView):
|
|
|
|
"""Edit cash summaries"""
|
|
|
|
model = CashRegisterSummary
|
|
|
|
template_name = 'counter/cash_register_summary.jinja'
|
|
|
|
context_object_name = "cashsummary"
|
|
|
|
pk_url_kwarg = "cashsummary_id"
|
|
|
|
form_class = CashRegisterSummaryForm
|
|
|
|
current_tab = "cash_summary"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('counter:cash_summary_list')
|
2016-09-15 09:07:03 +00:00
|
|
|
|
2016-10-10 16:29:13 +00:00
|
|
|
class CashSummaryFormBase(forms.Form):
|
|
|
|
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-09-28 09:07:32 +00:00
|
|
|
class CashSummaryListView(CanEditPropMixin, CounterAdminTabsMixin, ListView):
|
2016-09-13 00:04:49 +00:00
|
|
|
"""Display a list of cash summaries"""
|
|
|
|
model = CashRegisterSummary
|
|
|
|
template_name = 'counter/cash_summary_list.jinja'
|
|
|
|
context_object_name = "cashsummary_list"
|
|
|
|
current_tab = "cash_summary"
|
|
|
|
|
|
|
|
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)
|
|
|
|
kwargs['form'] = form
|
2016-09-13 00:04:49 +00:00
|
|
|
kwargs['summaries_sums'] = {}
|
|
|
|
kwargs['refilling_sums'] = {}
|
|
|
|
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)
|
|
|
|
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:
|
2016-10-10 16:29:13 +00:00
|
|
|
last_summary = CashRegisterSummary.objects.filter(counter=c, emptied=True).order_by('-date').first()
|
|
|
|
if last_summary:
|
2016-10-18 12:48:47 +00:00
|
|
|
refillings = refillings.filter(date__gt=last_summary.date)
|
|
|
|
cashredistersummaries = cashredistersummaries.filter(date__gt=last_summary.date)
|
2016-10-10 16:29:13 +00:00
|
|
|
else:
|
|
|
|
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
|
|
|
|
2016-09-29 16:17:44 +00:00
|
|
|
class InvoiceCallView(CounterAdminTabsMixin, TemplateView):
|
|
|
|
template_name = 'counter/invoices_call.jinja'
|
|
|
|
current_tab = 'invoices_call'
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
""" Add sums to the context """
|
|
|
|
kwargs = super(InvoiceCallView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['months'] = Selling.objects.datetimes('date', 'month', order='DESC')
|
|
|
|
start_date = None
|
|
|
|
end_date = None
|
|
|
|
try:
|
|
|
|
start_date = datetime.strptime(self.request.GET['month'], '%Y-%m')
|
|
|
|
except:
|
|
|
|
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)
|
2016-09-29 16:17:44 +00:00
|
|
|
end_date = (start_date + timedelta(days=32)).replace(day=1, hour=0, minute=0, microsecond=0)
|
|
|
|
from django.db.models import Sum, Case, When, F, DecimalField
|
2016-09-29 16:34:58 +00:00
|
|
|
kwargs['start_date'] = start_date
|
2016-09-29 16:17:44 +00:00
|
|
|
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')
|
|
|
|
return kwargs
|
|
|
|
|
2016-10-03 17:30:05 +00:00
|
|
|
class EticketListView(CounterAdminTabsMixin, CanEditPropMixin, ListView):
|
|
|
|
"""
|
|
|
|
A list view for the admins
|
|
|
|
"""
|
|
|
|
model = Eticket
|
|
|
|
template_name = 'counter/eticket_list.jinja'
|
|
|
|
ordering = ['id']
|
|
|
|
current_tab = "etickets"
|
|
|
|
|
|
|
|
class EticketForm(forms.ModelForm):
|
|
|
|
class Meta:
|
|
|
|
model = Eticket
|
|
|
|
fields = ['product', 'banner', 'event_title', 'event_date']
|
|
|
|
widgets = {
|
|
|
|
'event_date': SelectDate,
|
|
|
|
}
|
|
|
|
product = AutoCompleteSelectField('products', show_help_text=False, label=_("Product"), required=True)
|
|
|
|
|
|
|
|
class EticketCreateView(CounterAdminTabsMixin, CanEditPropMixin, CreateView):
|
|
|
|
"""
|
|
|
|
Create an eticket
|
|
|
|
"""
|
|
|
|
model = Eticket
|
|
|
|
template_name = 'core/create.jinja'
|
|
|
|
form_class = EticketForm
|
|
|
|
current_tab = "etickets"
|
|
|
|
|
|
|
|
class EticketEditView(CounterAdminTabsMixin, CanEditPropMixin, UpdateView):
|
|
|
|
"""
|
|
|
|
Edit an eticket
|
|
|
|
"""
|
|
|
|
model = Eticket
|
|
|
|
template_name = 'core/edit.jinja'
|
|
|
|
form_class = EticketForm
|
|
|
|
pk_url_kwarg = "eticket_id"
|
|
|
|
current_tab = "etickets"
|
|
|
|
|
|
|
|
class EticketPDFView(CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display the PDF of an eticket
|
|
|
|
"""
|
|
|
|
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
|
|
|
|
self.object = self.get_object()
|
|
|
|
eticket = self.object.product.eticket
|
|
|
|
user = self.object.customer.user
|
2016-10-15 17:58:51 +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()
|
|
|
|
response = HttpResponse(content_type='application/pdf')
|
|
|
|
response['Content-Disposition'] = 'filename="eticket.pdf"'
|
|
|
|
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)
|
2016-10-03 22:32:07 +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)
|
2016-11-06 11:32:29 +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]
|
|
|
|
d = Drawing(260, 260, transform=[260./width, 0, 0, 260./height, 0, 0])
|
|
|
|
d.add(qrcode)
|
|
|
|
renderPDF.draw(d, p, 10.5 * cm - 130, 6.1 * cm)
|
|
|
|
p.drawCentredString(10.5 * cm, 6 * cm, code)
|
|
|
|
|
|
|
|
p.showPage()
|
|
|
|
p.save()
|
|
|
|
return response
|
|
|
|
|