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.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2016-07-21 23:19:50 +00:00
|
|
|
from django.db import models, DataError
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2016-08-18 17:52:20 +00:00
|
|
|
from django.conf import settings
|
2016-07-21 23:19:50 +00:00
|
|
|
|
|
|
|
from accounting.models import CurrencyField
|
2016-08-18 17:52:20 +00:00
|
|
|
from counter.models import Counter, Product, Customer, Selling, Refilling
|
2016-07-21 23:19:50 +00:00
|
|
|
from core.models import User
|
2016-12-10 00:58:30 +00:00
|
|
|
from subscription.models import Subscription
|
2016-07-21 23:19:50 +00:00
|
|
|
|
|
|
|
class Basket(models.Model):
|
|
|
|
"""
|
2016-07-26 17:39:19 +00:00
|
|
|
Basket is built when the user connects to an eboutic page
|
2016-07-21 23:19:50 +00:00
|
|
|
"""
|
|
|
|
user = models.ForeignKey(User, related_name='baskets', verbose_name=_('user'), blank=False)
|
|
|
|
date = models.DateTimeField(_('date'), auto_now=True)
|
|
|
|
|
2016-07-26 17:39:19 +00:00
|
|
|
def add_product(self, p, q = 1):
|
|
|
|
item = self.items.filter(product_id=p.id).first()
|
|
|
|
if item is None:
|
2016-08-18 17:52:20 +00:00
|
|
|
BasketItem(basket=self, product_id=p.id, product_name=p.name, type_id=p.product_type.id,
|
2016-07-26 17:39:19 +00:00
|
|
|
quantity=q, product_unit_price=p.selling_price).save()
|
|
|
|
else:
|
|
|
|
item.quantity += q
|
|
|
|
item.save()
|
|
|
|
|
|
|
|
def del_product(self, p, q = 1):
|
|
|
|
item = self.items.filter(product_id=p.id).first()
|
|
|
|
if item is not None:
|
|
|
|
item.quantity -= q
|
|
|
|
item.save()
|
|
|
|
if item.quantity <= 0:
|
|
|
|
item.delete()
|
|
|
|
|
2016-07-21 23:19:50 +00:00
|
|
|
def get_total(self):
|
|
|
|
total = 0
|
|
|
|
for i in self.items.all():
|
|
|
|
total += i.quantity * i.product_unit_price
|
|
|
|
return total
|
|
|
|
|
2016-07-26 17:39:19 +00:00
|
|
|
def __str__(self):
|
2016-12-08 14:16:42 +00:00
|
|
|
return "%s's basket (%d items)" % (self.user, self.items.all().count())
|
2016-07-26 17:39:19 +00:00
|
|
|
|
2016-07-21 23:19:50 +00:00
|
|
|
class Invoice(models.Model):
|
|
|
|
"""
|
|
|
|
Invoices are generated once the payment has been validated
|
|
|
|
"""
|
|
|
|
user = models.ForeignKey(User, related_name='invoices', verbose_name=_('user'), blank=False)
|
|
|
|
date = models.DateTimeField(_('date'), auto_now=True)
|
|
|
|
validated = models.BooleanField(_("validated"), default=False)
|
|
|
|
|
2016-08-18 17:52:20 +00:00
|
|
|
def __str__(self):
|
|
|
|
return "%s - %s - %s" % (self.user, self.get_total(), self.date)
|
|
|
|
|
2016-07-21 23:19:50 +00:00
|
|
|
def get_total(self):
|
|
|
|
total = 0
|
|
|
|
for i in self.items.all():
|
|
|
|
total += i.quantity * i.product_unit_price
|
|
|
|
return total
|
|
|
|
|
|
|
|
def validate(self, *args, **kwargs):
|
|
|
|
if self.validated:
|
|
|
|
raise DataError(_("Invoice already validated"))
|
2016-07-26 17:58:36 +00:00
|
|
|
from counter.models import Customer
|
|
|
|
if not Customer.objects.filter(user=self.user).exists():
|
2016-08-18 17:52:20 +00:00
|
|
|
number = Customer.objects.count() + 1
|
2016-08-04 22:50:25 +00:00
|
|
|
Customer(user=self.user, account_id=Customer.generate_account_id(number), amount=0).save()
|
2016-08-18 17:52:20 +00:00
|
|
|
eboutic = Counter.objects.filter(type="EBOUTIC").first()
|
|
|
|
for i in self.items.all():
|
|
|
|
if i.type_id == settings.SITH_COUNTER_PRODUCTTYPE_REFILLING:
|
|
|
|
new = Refilling(
|
|
|
|
counter=eboutic,
|
|
|
|
customer=self.user.customer,
|
|
|
|
operator=self.user,
|
|
|
|
amount=i.product_unit_price * i.quantity,
|
|
|
|
payment_method="CARD",
|
|
|
|
bank="OTHER",
|
|
|
|
date=self.date,
|
|
|
|
)
|
|
|
|
new.save()
|
|
|
|
else:
|
|
|
|
product = Product.objects.filter(id=i.product_id).first()
|
|
|
|
new = Selling(
|
|
|
|
label=i.product_name,
|
|
|
|
counter=eboutic,
|
|
|
|
club=product.club,
|
|
|
|
product=product,
|
|
|
|
seller=self.user,
|
|
|
|
customer=self.user.customer,
|
|
|
|
unit_price=i.product_unit_price,
|
|
|
|
quantity=i.quantity,
|
|
|
|
payment_method="CARD",
|
|
|
|
is_validated=True,
|
|
|
|
date=self.date,
|
|
|
|
)
|
|
|
|
new.save()
|
2016-07-26 13:10:48 +00:00
|
|
|
self.validated = True
|
|
|
|
self.save()
|
2016-07-21 23:19:50 +00:00
|
|
|
|
|
|
|
class AbstractBaseItem(models.Model):
|
2016-07-26 17:39:19 +00:00
|
|
|
product_id = models.IntegerField(_('product id'))
|
2016-07-21 23:19:50 +00:00
|
|
|
product_name = models.CharField(_('product name'), max_length=255)
|
2016-08-18 17:52:20 +00:00
|
|
|
type_id = models.IntegerField(_('product type id'))
|
2016-07-21 23:19:50 +00:00
|
|
|
product_unit_price = CurrencyField(_('unit price'))
|
|
|
|
quantity = models.IntegerField(_('quantity'))
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
abstract = True
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "Item: %s (%s) x%d" % (self.product_name, self.product_unit_price, self.quantity)
|
|
|
|
|
|
|
|
class BasketItem(AbstractBaseItem):
|
|
|
|
basket = models.ForeignKey(Basket, related_name='items', verbose_name=_('basket'))
|
|
|
|
|
|
|
|
class InvoiceItem(AbstractBaseItem):
|
|
|
|
invoice = models.ForeignKey(Invoice, related_name='items', verbose_name=_('invoice'))
|