mirror of
https://github.com/ae-utbm/sith.git
synced 2025-11-22 12:46:58 +00:00
Compare commits
4 Commits
remove-is_
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a4d21611e | ||
|
|
992b6d6b79 | ||
|
|
710b4aa942 | ||
|
|
5fee2e4720 |
@@ -350,6 +350,7 @@ class Command(BaseCommand):
|
|||||||
date=make_aware(
|
date=make_aware(
|
||||||
self.faker.date_time_between(customer.since, localdate())
|
self.faker.date_time_between(customer.since, localdate())
|
||||||
),
|
),
|
||||||
|
is_validated=True,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
sales.extend(this_customer_sales)
|
sales.extend(this_customer_sales)
|
||||||
|
|||||||
@@ -187,7 +187,11 @@ class TestFilterInactive(TestCase):
|
|||||||
time_inactive = time_active - timedelta(days=3)
|
time_inactive = time_active - timedelta(days=3)
|
||||||
counter, seller = baker.make(Counter), baker.make(User)
|
counter, seller = baker.make(Counter), baker.make(User)
|
||||||
sale_recipe = Recipe(
|
sale_recipe = Recipe(
|
||||||
Selling, counter=counter, club=counter.club, seller=seller, unit_price=0
|
Selling,
|
||||||
|
counter=counter,
|
||||||
|
club=counter.club,
|
||||||
|
seller=seller,
|
||||||
|
is_validated=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
cls.users = [
|
cls.users = [
|
||||||
|
|||||||
@@ -24,6 +24,12 @@
|
|||||||
from django.apps import AppConfig
|
from django.apps import AppConfig
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
|
PAYMENT_METHOD = [
|
||||||
|
("CHECK", _("Check")),
|
||||||
|
("CASH", _("Cash")),
|
||||||
|
("CARD", _("Credit card")),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
class CounterConfig(AppConfig):
|
class CounterConfig(AppConfig):
|
||||||
name = "counter"
|
name = "counter"
|
||||||
|
|||||||
@@ -136,10 +136,7 @@ class GetUserForm(forms.Form):
|
|||||||
|
|
||||||
|
|
||||||
class RefillForm(forms.ModelForm):
|
class RefillForm(forms.ModelForm):
|
||||||
allowed_refilling_methods = [
|
allowed_refilling_methods = ["CASH", "CARD"]
|
||||||
Refilling.PaymentMethod.CASH,
|
|
||||||
Refilling.PaymentMethod.CARD,
|
|
||||||
]
|
|
||||||
|
|
||||||
error_css_class = "error"
|
error_css_class = "error"
|
||||||
required_css_class = "required"
|
required_css_class = "required"
|
||||||
@@ -149,7 +146,7 @@ class RefillForm(forms.ModelForm):
|
|||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Refilling
|
model = Refilling
|
||||||
fields = ["amount", "payment_method"]
|
fields = ["amount", "payment_method", "bank"]
|
||||||
widgets = {"payment_method": forms.RadioSelect}
|
widgets = {"payment_method": forms.RadioSelect}
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
@@ -163,6 +160,9 @@ class RefillForm(forms.ModelForm):
|
|||||||
if self.fields["payment_method"].initial not in self.allowed_refilling_methods:
|
if self.fields["payment_method"].initial not in self.allowed_refilling_methods:
|
||||||
self.fields["payment_method"].initial = self.allowed_refilling_methods[0]
|
self.fields["payment_method"].initial = self.allowed_refilling_methods[0]
|
||||||
|
|
||||||
|
if "CHECK" not in self.allowed_refilling_methods:
|
||||||
|
del self.fields["bank"]
|
||||||
|
|
||||||
|
|
||||||
class CounterEditForm(forms.ModelForm):
|
class CounterEditForm(forms.ModelForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
|
|||||||
@@ -119,6 +119,7 @@ class Command(BaseCommand):
|
|||||||
quantity=1,
|
quantity=1,
|
||||||
unit_price=account.amount,
|
unit_price=account.amount,
|
||||||
date=now(),
|
date=now(),
|
||||||
|
is_validated=True,
|
||||||
)
|
)
|
||||||
for account in accounts
|
for account in accounts
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,84 +0,0 @@
|
|||||||
# Generated by Django 5.2.8 on 2025-11-19 17:59
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
from django.db.migrations.state import StateApps
|
|
||||||
from django.db.models import Case, When
|
|
||||||
|
|
||||||
|
|
||||||
def migrate_selling_payment_method(apps: StateApps, schema_editor):
|
|
||||||
# 0 <=> SITH_ACCOUNT is the default value, so no need to migrate it
|
|
||||||
Selling = apps.get_model("counter", "Selling")
|
|
||||||
Selling.objects.filter(payment_method_str="CARD").update(payment_method=1)
|
|
||||||
|
|
||||||
|
|
||||||
def migrate_selling_payment_method_reverse(apps: StateApps, schema_editor):
|
|
||||||
Selling = apps.get_model("counter", "Selling")
|
|
||||||
Selling.objects.filter(payment_method=1).update(payment_method_str="CARD")
|
|
||||||
|
|
||||||
|
|
||||||
def migrate_refilling_payment_method(apps: StateApps, schema_editor):
|
|
||||||
Refilling = apps.get_model("counter", "Refilling")
|
|
||||||
Refilling.objects.update(
|
|
||||||
payment_method=Case(
|
|
||||||
When(payment_method_str="CARD", then=0),
|
|
||||||
When(payment_method_str="CASH", then=1),
|
|
||||||
When(payment_method_str="CHECK", then=2),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def migrate_refilling_payment_method_reverse(apps: StateApps, schema_editor):
|
|
||||||
Refilling = apps.get_model("counter", "Refilling")
|
|
||||||
Refilling.objects.update(
|
|
||||||
payment_method_str=Case(
|
|
||||||
When(payment_method=0, then="CARD"),
|
|
||||||
When(payment_method=1, then="CASH"),
|
|
||||||
When(payment_method=2, then="CHECK"),
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
dependencies = [("counter", "0034_alter_selling_date_selling_date_month_idx")]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.RemoveField(model_name="selling", name="is_validated"),
|
|
||||||
migrations.RemoveField(model_name="refilling", name="is_validated"),
|
|
||||||
migrations.RemoveField(model_name="refilling", name="bank"),
|
|
||||||
migrations.RenameField(
|
|
||||||
model_name="selling",
|
|
||||||
old_name="payment_method",
|
|
||||||
new_name="payment_method_str",
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="selling",
|
|
||||||
name="payment_method",
|
|
||||||
field=models.PositiveSmallIntegerField(
|
|
||||||
choices=[(0, "Sith account"), (1, "Credit card")],
|
|
||||||
default=0,
|
|
||||||
verbose_name="payment method",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(
|
|
||||||
migrate_selling_payment_method, migrate_selling_payment_method_reverse
|
|
||||||
),
|
|
||||||
migrations.RemoveField(model_name="selling", name="payment_method_str"),
|
|
||||||
migrations.RenameField(
|
|
||||||
model_name="refilling",
|
|
||||||
old_name="payment_method",
|
|
||||||
new_name="payment_method_str",
|
|
||||||
),
|
|
||||||
migrations.AddField(
|
|
||||||
model_name="refilling",
|
|
||||||
name="payment_method",
|
|
||||||
field=models.PositiveSmallIntegerField(
|
|
||||||
choices=[(0, "Credit card"), (1, "Cash"), (2, "Check")],
|
|
||||||
default=0,
|
|
||||||
verbose_name="payment method",
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.RunPython(
|
|
||||||
migrate_refilling_payment_method, migrate_refilling_payment_method_reverse
|
|
||||||
),
|
|
||||||
migrations.RemoveField(model_name="refilling", name="payment_method_str"),
|
|
||||||
]
|
|
||||||
@@ -44,6 +44,7 @@ from club.models import Club
|
|||||||
from core.fields import ResizedImageField
|
from core.fields import ResizedImageField
|
||||||
from core.models import Group, Notification, User
|
from core.models import Group, Notification, User
|
||||||
from core.utils import get_start_of_semester
|
from core.utils import get_start_of_semester
|
||||||
|
from counter.apps import PAYMENT_METHOD
|
||||||
from counter.fields import CurrencyField
|
from counter.fields import CurrencyField
|
||||||
from subscription.models import Subscription
|
from subscription.models import Subscription
|
||||||
|
|
||||||
@@ -79,8 +80,7 @@ class CustomerQuerySet(models.QuerySet):
|
|||||||
)
|
)
|
||||||
money_out = Subquery(
|
money_out = Subquery(
|
||||||
Selling.objects.filter(
|
Selling.objects.filter(
|
||||||
customer=OuterRef("pk"),
|
customer=OuterRef("pk"), payment_method="SITH_ACCOUNT"
|
||||||
payment_method=Selling.PaymentMethod.SITH_ACCOUNT,
|
|
||||||
)
|
)
|
||||||
.values("customer_id")
|
.values("customer_id")
|
||||||
.annotate(res=Sum(F("unit_price") * F("quantity"), default=0))
|
.annotate(res=Sum(F("unit_price") * F("quantity"), default=0))
|
||||||
@@ -731,11 +731,6 @@ class RefillingQuerySet(models.QuerySet):
|
|||||||
class Refilling(models.Model):
|
class Refilling(models.Model):
|
||||||
"""Handle the refilling."""
|
"""Handle the refilling."""
|
||||||
|
|
||||||
class PaymentMethod(models.IntegerChoices):
|
|
||||||
CARD = 0, _("Credit card")
|
|
||||||
CASH = 1, _("Cash")
|
|
||||||
CHECK = 2, _("Check")
|
|
||||||
|
|
||||||
counter = models.ForeignKey(
|
counter = models.ForeignKey(
|
||||||
Counter, related_name="refillings", blank=False, on_delete=models.CASCADE
|
Counter, related_name="refillings", blank=False, on_delete=models.CASCADE
|
||||||
)
|
)
|
||||||
@@ -750,9 +745,16 @@ class Refilling(models.Model):
|
|||||||
Customer, related_name="refillings", blank=False, on_delete=models.CASCADE
|
Customer, related_name="refillings", blank=False, on_delete=models.CASCADE
|
||||||
)
|
)
|
||||||
date = models.DateTimeField(_("date"))
|
date = models.DateTimeField(_("date"))
|
||||||
payment_method = models.PositiveSmallIntegerField(
|
payment_method = models.CharField(
|
||||||
_("payment method"), choices=PaymentMethod, default=PaymentMethod.CARD
|
_("payment method"),
|
||||||
|
max_length=255,
|
||||||
|
choices=PAYMENT_METHOD,
|
||||||
|
default="CARD",
|
||||||
)
|
)
|
||||||
|
bank = models.CharField(
|
||||||
|
_("bank"), max_length=255, choices=settings.SITH_COUNTER_BANK, default="OTHER"
|
||||||
|
)
|
||||||
|
is_validated = models.BooleanField(_("is validated"), default=False)
|
||||||
|
|
||||||
objects = RefillingQuerySet.as_manager()
|
objects = RefillingQuerySet.as_manager()
|
||||||
|
|
||||||
@@ -769,9 +771,10 @@ class Refilling(models.Model):
|
|||||||
if not self.date:
|
if not self.date:
|
||||||
self.date = timezone.now()
|
self.date = timezone.now()
|
||||||
self.full_clean()
|
self.full_clean()
|
||||||
if self._state.adding:
|
if not self.is_validated:
|
||||||
self.customer.amount += self.amount
|
self.customer.amount += self.amount
|
||||||
self.customer.save()
|
self.customer.save()
|
||||||
|
self.is_validated = True
|
||||||
if self.customer.user.preferences.notify_on_refill:
|
if self.customer.user.preferences.notify_on_refill:
|
||||||
Notification(
|
Notification(
|
||||||
user=self.customer.user,
|
user=self.customer.user,
|
||||||
@@ -811,10 +814,6 @@ class SellingQuerySet(models.QuerySet):
|
|||||||
class Selling(models.Model):
|
class Selling(models.Model):
|
||||||
"""Handle the sellings."""
|
"""Handle the sellings."""
|
||||||
|
|
||||||
class PaymentMethod(models.IntegerChoices):
|
|
||||||
SITH_ACCOUNT = 0, _("Sith account")
|
|
||||||
CARD = 1, _("Credit card")
|
|
||||||
|
|
||||||
# We make sure that sellings have a way begger label than any product name is allowed to
|
# We make sure that sellings have a way begger label than any product name is allowed to
|
||||||
label = models.CharField(_("label"), max_length=128)
|
label = models.CharField(_("label"), max_length=128)
|
||||||
product = models.ForeignKey(
|
product = models.ForeignKey(
|
||||||
@@ -851,9 +850,13 @@ class Selling(models.Model):
|
|||||||
on_delete=models.SET_NULL,
|
on_delete=models.SET_NULL,
|
||||||
)
|
)
|
||||||
date = models.DateTimeField(_("date"), db_index=True)
|
date = models.DateTimeField(_("date"), db_index=True)
|
||||||
payment_method = models.PositiveSmallIntegerField(
|
payment_method = models.CharField(
|
||||||
_("payment method"), choices=PaymentMethod, default=PaymentMethod.SITH_ACCOUNT
|
_("payment method"),
|
||||||
|
max_length=255,
|
||||||
|
choices=[("SITH_ACCOUNT", _("Sith account")), ("CARD", _("Credit card"))],
|
||||||
|
default="SITH_ACCOUNT",
|
||||||
)
|
)
|
||||||
|
is_validated = models.BooleanField(_("is validated"), default=False)
|
||||||
|
|
||||||
objects = SellingQuerySet.as_manager()
|
objects = SellingQuerySet.as_manager()
|
||||||
|
|
||||||
@@ -872,12 +875,10 @@ class Selling(models.Model):
|
|||||||
if not self.date:
|
if not self.date:
|
||||||
self.date = timezone.now()
|
self.date = timezone.now()
|
||||||
self.full_clean()
|
self.full_clean()
|
||||||
if (
|
if not self.is_validated:
|
||||||
self._state.adding
|
|
||||||
and self.payment_method == self.PaymentMethod.SITH_ACCOUNT
|
|
||||||
):
|
|
||||||
self.customer.amount -= self.quantity * self.unit_price
|
self.customer.amount -= self.quantity * self.unit_price
|
||||||
self.customer.save(allow_negative=allow_negative)
|
self.customer.save(allow_negative=allow_negative)
|
||||||
|
self.is_validated = True
|
||||||
user = self.customer.user
|
user = self.customer.user
|
||||||
if user.was_subscribed:
|
if user.was_subscribed:
|
||||||
if (
|
if (
|
||||||
@@ -947,9 +948,7 @@ class Selling(models.Model):
|
|||||||
def is_owned_by(self, user: User) -> bool:
|
def is_owned_by(self, user: User) -> bool:
|
||||||
if user.is_anonymous:
|
if user.is_anonymous:
|
||||||
return False
|
return False
|
||||||
return self.payment_method != self.PaymentMethod.CARD and user.is_owner(
|
return self.payment_method != "CARD" and user.is_owner(self.counter)
|
||||||
self.counter
|
|
||||||
)
|
|
||||||
|
|
||||||
def can_be_viewed_by(self, user: User) -> bool:
|
def can_be_viewed_by(self, user: User) -> bool:
|
||||||
if (
|
if (
|
||||||
@@ -959,7 +958,7 @@ class Selling(models.Model):
|
|||||||
return user == self.customer.user
|
return user == self.customer.user
|
||||||
|
|
||||||
def delete(self, *args, **kwargs):
|
def delete(self, *args, **kwargs):
|
||||||
if self.payment_method == Selling.PaymentMethod.SITH_ACCOUNT:
|
if self.payment_method == "SITH_ACCOUNT":
|
||||||
self.customer.amount += self.quantity * self.unit_price
|
self.customer.amount += self.quantity * self.unit_price
|
||||||
self.customer.save()
|
self.customer.save()
|
||||||
super().delete(*args, **kwargs)
|
super().delete(*args, **kwargs)
|
||||||
|
|||||||
@@ -116,6 +116,7 @@ class TestAccountDumpCommand(TestAccountDump):
|
|||||||
operation: Selling = customer.buyings.order_by("date").last()
|
operation: Selling = customer.buyings.order_by("date").last()
|
||||||
assert operation.unit_price == initial_amount
|
assert operation.unit_price == initial_amount
|
||||||
assert operation.counter_id == settings.SITH_COUNTER_ACCOUNT_DUMP_ID
|
assert operation.counter_id == settings.SITH_COUNTER_ACCOUNT_DUMP_ID
|
||||||
|
assert operation.is_validated is True
|
||||||
dump = customer.dumps.last()
|
dump = customer.dumps.last()
|
||||||
assert dump.dump_operation == operation
|
assert dump.dump_operation == operation
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ def set_age(user: User, age: int):
|
|||||||
|
|
||||||
|
|
||||||
def force_refill_user(user: User, amount: Decimal | int):
|
def force_refill_user(user: User, amount: Decimal | int):
|
||||||
baker.make(Refilling, amount=amount, customer=user.customer)
|
baker.make(Refilling, amount=amount, customer=user.customer, is_validated=False)
|
||||||
|
|
||||||
|
|
||||||
class TestFullClickBase(TestCase):
|
class TestFullClickBase(TestCase):
|
||||||
@@ -115,10 +115,18 @@ class TestRefilling(TestFullClickBase):
|
|||||||
) -> HttpResponse:
|
) -> HttpResponse:
|
||||||
used_client = client if client is not None else self.client
|
used_client = client if client is not None else self.client
|
||||||
return used_client.post(
|
return used_client.post(
|
||||||
reverse("counter:refilling_create", kwargs={"customer_id": user.pk}),
|
reverse(
|
||||||
{"amount": str(amount), "payment_method": Refilling.PaymentMethod.CASH},
|
"counter:refilling_create",
|
||||||
|
kwargs={"customer_id": user.pk},
|
||||||
|
),
|
||||||
|
{
|
||||||
|
"amount": str(amount),
|
||||||
|
"payment_method": "CASH",
|
||||||
|
"bank": "OTHER",
|
||||||
|
},
|
||||||
HTTP_REFERER=reverse(
|
HTTP_REFERER=reverse(
|
||||||
"counter:click", kwargs={"counter_id": counter.id, "user_id": user.pk}
|
"counter:click",
|
||||||
|
kwargs={"counter_id": counter.id, "user_id": user.pk},
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -141,7 +149,11 @@ class TestRefilling(TestFullClickBase):
|
|||||||
"counter:refilling_create",
|
"counter:refilling_create",
|
||||||
kwargs={"customer_id": self.customer.pk},
|
kwargs={"customer_id": self.customer.pk},
|
||||||
),
|
),
|
||||||
{"amount": "10", "payment_method": "CASH"},
|
{
|
||||||
|
"amount": "10",
|
||||||
|
"payment_method": "CASH",
|
||||||
|
"bank": "OTHER",
|
||||||
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
self.client.force_login(self.club_admin)
|
self.client.force_login(self.club_admin)
|
||||||
|
|||||||
@@ -298,6 +298,7 @@ def test_update_balance():
|
|||||||
_quantity=len(customers),
|
_quantity=len(customers),
|
||||||
unit_price=10,
|
unit_price=10,
|
||||||
quantity=1,
|
quantity=1,
|
||||||
|
payment_method="SITH_ACCOUNT",
|
||||||
_save_related=True,
|
_save_related=True,
|
||||||
),
|
),
|
||||||
*sale_recipe.prepare(
|
*sale_recipe.prepare(
|
||||||
@@ -305,12 +306,14 @@ def test_update_balance():
|
|||||||
_quantity=3,
|
_quantity=3,
|
||||||
unit_price=5,
|
unit_price=5,
|
||||||
quantity=2,
|
quantity=2,
|
||||||
|
payment_method="SITH_ACCOUNT",
|
||||||
_save_related=True,
|
_save_related=True,
|
||||||
),
|
),
|
||||||
sale_recipe.prepare(
|
sale_recipe.prepare(
|
||||||
customer=customers[4],
|
customer=customers[4],
|
||||||
quantity=1,
|
quantity=1,
|
||||||
unit_price=50,
|
unit_price=50,
|
||||||
|
payment_method="SITH_ACCOUNT",
|
||||||
_save_related=True,
|
_save_related=True,
|
||||||
),
|
),
|
||||||
*sale_recipe.prepare(
|
*sale_recipe.prepare(
|
||||||
@@ -321,7 +324,7 @@ def test_update_balance():
|
|||||||
_quantity=len(customers),
|
_quantity=len(customers),
|
||||||
unit_price=50,
|
unit_price=50,
|
||||||
quantity=1,
|
quantity=1,
|
||||||
payment_method=Selling.PaymentMethod.CARD,
|
payment_method="CARD",
|
||||||
_save_related=True,
|
_save_related=True,
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -67,13 +67,15 @@ class InvoiceCallView(
|
|||||||
end_date = start_date + relativedelta(months=1)
|
end_date = start_date + relativedelta(months=1)
|
||||||
|
|
||||||
kwargs["sum_cb"] = Refilling.objects.filter(
|
kwargs["sum_cb"] = Refilling.objects.filter(
|
||||||
payment_method=Refilling.PaymentMethod.CARD,
|
payment_method="CARD",
|
||||||
|
is_validated=True,
|
||||||
date__gte=start_date,
|
date__gte=start_date,
|
||||||
date__lte=end_date,
|
date__lte=end_date,
|
||||||
).aggregate(res=Sum("amount", default=0))["res"]
|
).aggregate(res=Sum("amount", default=0))["res"]
|
||||||
kwargs["sum_cb"] += (
|
kwargs["sum_cb"] += (
|
||||||
Selling.objects.filter(
|
Selling.objects.filter(
|
||||||
payment_method=Selling.PaymentMethod.CARD,
|
payment_method="CARD",
|
||||||
|
is_validated=True,
|
||||||
date__gte=start_date,
|
date__gte=start_date,
|
||||||
date__lte=end_date,
|
date__lte=end_date,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -110,9 +110,7 @@ class Basket(models.Model):
|
|||||||
)["total"]
|
)["total"]
|
||||||
)
|
)
|
||||||
|
|
||||||
def generate_sales(
|
def generate_sales(self, counter, seller: User, payment_method: str):
|
||||||
self, counter, seller: User, payment_method: Selling.PaymentMethod
|
|
||||||
):
|
|
||||||
"""Generate a list of sold items corresponding to the items
|
"""Generate a list of sold items corresponding to the items
|
||||||
of this basket WITHOUT saving them NOR deleting the basket.
|
of this basket WITHOUT saving them NOR deleting the basket.
|
||||||
|
|
||||||
@@ -253,7 +251,8 @@ class Invoice(models.Model):
|
|||||||
customer=customer,
|
customer=customer,
|
||||||
operator=self.user,
|
operator=self.user,
|
||||||
amount=i.product_unit_price * i.quantity,
|
amount=i.product_unit_price * i.quantity,
|
||||||
payment_method=Refilling.PaymentMethod.CARD,
|
payment_method="CARD",
|
||||||
|
bank="OTHER",
|
||||||
date=self.date,
|
date=self.date,
|
||||||
)
|
)
|
||||||
new.save()
|
new.save()
|
||||||
@@ -268,7 +267,8 @@ class Invoice(models.Model):
|
|||||||
customer=customer,
|
customer=customer,
|
||||||
unit_price=i.product_unit_price,
|
unit_price=i.product_unit_price,
|
||||||
quantity=i.quantity,
|
quantity=i.quantity,
|
||||||
payment_method=Selling.PaymentMethod.CARD,
|
payment_method="CARD",
|
||||||
|
is_validated=True,
|
||||||
date=self.date,
|
date=self.date,
|
||||||
)
|
)
|
||||||
new.save()
|
new.save()
|
||||||
|
|||||||
@@ -108,22 +108,12 @@ def test_eboutic_basket_expiry(
|
|||||||
|
|
||||||
client.force_login(customer.user)
|
client.force_login(customer.user)
|
||||||
|
|
||||||
if sellings:
|
for date in sellings:
|
||||||
sale_recipe.make(
|
sale_recipe.make(
|
||||||
customer=customer,
|
customer=customer, counter=eboutic, date=date, is_validated=True
|
||||||
counter=eboutic,
|
|
||||||
date=iter(sellings),
|
|
||||||
_quantity=len(sellings),
|
|
||||||
_bulk_create=True,
|
|
||||||
)
|
|
||||||
if refillings:
|
|
||||||
refill_recipe.make(
|
|
||||||
customer=customer,
|
|
||||||
counter=eboutic,
|
|
||||||
date=iter(refillings),
|
|
||||||
_quantity=len(refillings),
|
|
||||||
_bulk_create=True,
|
|
||||||
)
|
)
|
||||||
|
for date in refillings:
|
||||||
|
refill_recipe.make(customer=customer, counter=eboutic, date=date)
|
||||||
|
|
||||||
assert (
|
assert (
|
||||||
f'x-data="basket({int(expected.timestamp() * 1000) if expected else "null"})"'
|
f'x-data="basket({int(expected.timestamp() * 1000) if expected else "null"})"'
|
||||||
|
|||||||
@@ -114,13 +114,13 @@ class TestPaymentSith(TestPaymentBase):
|
|||||||
"quantity"
|
"quantity"
|
||||||
)
|
)
|
||||||
assert len(sellings) == 2
|
assert len(sellings) == 2
|
||||||
assert sellings[0].payment_method == Selling.PaymentMethod.SITH_ACCOUNT
|
assert sellings[0].payment_method == "SITH_ACCOUNT"
|
||||||
assert sellings[0].quantity == 1
|
assert sellings[0].quantity == 1
|
||||||
assert sellings[0].unit_price == self.snack.selling_price
|
assert sellings[0].unit_price == self.snack.selling_price
|
||||||
assert sellings[0].counter.type == "EBOUTIC"
|
assert sellings[0].counter.type == "EBOUTIC"
|
||||||
assert sellings[0].product == self.snack
|
assert sellings[0].product == self.snack
|
||||||
|
|
||||||
assert sellings[1].payment_method == Selling.PaymentMethod.SITH_ACCOUNT
|
assert sellings[1].payment_method == "SITH_ACCOUNT"
|
||||||
assert sellings[1].quantity == 2
|
assert sellings[1].quantity == 2
|
||||||
assert sellings[1].unit_price == self.beer.selling_price
|
assert sellings[1].unit_price == self.beer.selling_price
|
||||||
assert sellings[1].counter.type == "EBOUTIC"
|
assert sellings[1].counter.type == "EBOUTIC"
|
||||||
@@ -198,13 +198,13 @@ class TestPaymentCard(TestPaymentBase):
|
|||||||
"quantity"
|
"quantity"
|
||||||
)
|
)
|
||||||
assert len(sellings) == 2
|
assert len(sellings) == 2
|
||||||
assert sellings[0].payment_method == Selling.PaymentMethod.CARD
|
assert sellings[0].payment_method == "CARD"
|
||||||
assert sellings[0].quantity == 1
|
assert sellings[0].quantity == 1
|
||||||
assert sellings[0].unit_price == self.snack.selling_price
|
assert sellings[0].unit_price == self.snack.selling_price
|
||||||
assert sellings[0].counter.type == "EBOUTIC"
|
assert sellings[0].counter.type == "EBOUTIC"
|
||||||
assert sellings[0].product == self.snack
|
assert sellings[0].product == self.snack
|
||||||
|
|
||||||
assert sellings[1].payment_method == Selling.PaymentMethod.CARD
|
assert sellings[1].payment_method == "CARD"
|
||||||
assert sellings[1].quantity == 2
|
assert sellings[1].quantity == 2
|
||||||
assert sellings[1].unit_price == self.beer.selling_price
|
assert sellings[1].unit_price == self.beer.selling_price
|
||||||
assert sellings[1].counter.type == "EBOUTIC"
|
assert sellings[1].counter.type == "EBOUTIC"
|
||||||
|
|||||||
@@ -275,9 +275,7 @@ class EbouticPayWithSith(CanViewMixin, SingleObjectMixin, View):
|
|||||||
return redirect("eboutic:payment_result", "failure")
|
return redirect("eboutic:payment_result", "failure")
|
||||||
|
|
||||||
eboutic = get_eboutic()
|
eboutic = get_eboutic()
|
||||||
sales = basket.generate_sales(
|
sales = basket.generate_sales(eboutic, basket.user, "SITH_ACCOUNT")
|
||||||
eboutic, basket.user, Selling.PaymentMethod.SITH_ACCOUNT
|
|
||||||
)
|
|
||||||
try:
|
try:
|
||||||
with transaction.atomic():
|
with transaction.atomic():
|
||||||
# Selling.save has some important business logic in it.
|
# Selling.save has some important business logic in it.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2025-11-19 21:00+0100\n"
|
"POT-Creation-Date: 2025-11-12 21:44+0100\n"
|
||||||
"PO-Revision-Date: 2016-07-18\n"
|
"PO-Revision-Date: 2016-07-18\n"
|
||||||
"Last-Translator: Maréchal <thomas.girod@utbm.fr\n"
|
"Last-Translator: Maréchal <thomas.girod@utbm.fr\n"
|
||||||
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
"Language-Team: AE info <ae.info@utbm.fr>\n"
|
||||||
@@ -2928,6 +2928,18 @@ msgstr "Photos"
|
|||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr "Compte"
|
msgstr "Compte"
|
||||||
|
|
||||||
|
#: counter/apps.py sith/settings.py
|
||||||
|
msgid "Check"
|
||||||
|
msgstr "Chèque"
|
||||||
|
|
||||||
|
#: counter/apps.py sith/settings.py
|
||||||
|
msgid "Cash"
|
||||||
|
msgstr "Espèces"
|
||||||
|
|
||||||
|
#: counter/apps.py counter/models.py sith/settings.py
|
||||||
|
msgid "Credit card"
|
||||||
|
msgstr "Carte bancaire"
|
||||||
|
|
||||||
#: counter/apps.py counter/models.py
|
#: counter/apps.py counter/models.py
|
||||||
msgid "counter"
|
msgid "counter"
|
||||||
msgstr "comptoir"
|
msgstr "comptoir"
|
||||||
@@ -3140,29 +3152,21 @@ msgstr "vendeurs"
|
|||||||
msgid "token"
|
msgid "token"
|
||||||
msgstr "jeton"
|
msgstr "jeton"
|
||||||
|
|
||||||
#: counter/models.py sith/settings.py
|
|
||||||
msgid "Credit card"
|
|
||||||
msgstr "Carte bancaire"
|
|
||||||
|
|
||||||
#: counter/models.py sith/settings.py
|
|
||||||
msgid "Cash"
|
|
||||||
msgstr "Espèces"
|
|
||||||
|
|
||||||
#: counter/models.py sith/settings.py
|
|
||||||
msgid "Check"
|
|
||||||
msgstr "Chèque"
|
|
||||||
|
|
||||||
#: counter/models.py subscription/models.py
|
#: counter/models.py subscription/models.py
|
||||||
msgid "payment method"
|
msgid "payment method"
|
||||||
msgstr "méthode de paiement"
|
msgstr "méthode de paiement"
|
||||||
|
|
||||||
#: counter/models.py
|
#: counter/models.py
|
||||||
msgid "refilling"
|
msgid "bank"
|
||||||
msgstr "rechargement"
|
msgstr "banque"
|
||||||
|
|
||||||
#: counter/models.py
|
#: counter/models.py
|
||||||
msgid "Sith account"
|
msgid "is validated"
|
||||||
msgstr "Compte utilisateur"
|
msgstr "est validé"
|
||||||
|
|
||||||
|
#: counter/models.py
|
||||||
|
msgid "refilling"
|
||||||
|
msgstr "rechargement"
|
||||||
|
|
||||||
#: counter/models.py eboutic/models.py
|
#: counter/models.py eboutic/models.py
|
||||||
msgid "unit price"
|
msgid "unit price"
|
||||||
@@ -3172,6 +3176,10 @@ msgstr "prix unitaire"
|
|||||||
msgid "quantity"
|
msgid "quantity"
|
||||||
msgstr "quantité"
|
msgstr "quantité"
|
||||||
|
|
||||||
|
#: counter/models.py
|
||||||
|
msgid "Sith account"
|
||||||
|
msgstr "Compte utilisateur"
|
||||||
|
|
||||||
#: counter/models.py
|
#: counter/models.py
|
||||||
msgid "selling"
|
msgid "selling"
|
||||||
msgstr "vente"
|
msgstr "vente"
|
||||||
@@ -3324,10 +3332,6 @@ msgid ""
|
|||||||
"“%(value)s” value has the correct format (YYYY-MM) but it is an invalid date."
|
"“%(value)s” value has the correct format (YYYY-MM) but it is an invalid date."
|
||||||
msgstr "La valeur « %(value)s » a le bon format, mais est une date invalide."
|
msgstr "La valeur « %(value)s » a le bon format, mais est une date invalide."
|
||||||
|
|
||||||
#: counter/models.py
|
|
||||||
msgid "is validated"
|
|
||||||
msgstr "est validé"
|
|
||||||
|
|
||||||
#: counter/models.py
|
#: counter/models.py
|
||||||
msgid "invoice date"
|
msgid "invoice date"
|
||||||
msgstr "date de la facture"
|
msgstr "date de la facture"
|
||||||
|
|||||||
@@ -114,6 +114,7 @@ class TestMergeUser(TestCase):
|
|||||||
seller=self.root,
|
seller=self.root,
|
||||||
unit_price=2,
|
unit_price=2,
|
||||||
quantity=2,
|
quantity=2,
|
||||||
|
payment_method="SITH_ACCOUNT",
|
||||||
).save()
|
).save()
|
||||||
Selling(
|
Selling(
|
||||||
label="barbar",
|
label="barbar",
|
||||||
@@ -124,6 +125,7 @@ class TestMergeUser(TestCase):
|
|||||||
seller=self.root,
|
seller=self.root,
|
||||||
unit_price=2,
|
unit_price=2,
|
||||||
quantity=4,
|
quantity=4,
|
||||||
|
payment_method="SITH_ACCOUNT",
|
||||||
).save()
|
).save()
|
||||||
today = localtime(now()).date()
|
today = localtime(now()).date()
|
||||||
# both subscriptions began last month and shall end in 5 months
|
# both subscriptions began last month and shall end in 5 months
|
||||||
@@ -195,6 +197,7 @@ class TestMergeUser(TestCase):
|
|||||||
seller=self.root,
|
seller=self.root,
|
||||||
unit_price=2,
|
unit_price=2,
|
||||||
quantity=4,
|
quantity=4,
|
||||||
|
payment_method="SITH_ACCOUNT",
|
||||||
).save()
|
).save()
|
||||||
data = {"user1": self.to_keep.id, "user2": self.to_delete.id}
|
data = {"user1": self.to_keep.id, "user2": self.to_delete.id}
|
||||||
res = self.client.post(reverse("rootplace:merge"), data)
|
res = self.client.post(reverse("rootplace:merge"), data)
|
||||||
@@ -222,6 +225,7 @@ class TestMergeUser(TestCase):
|
|||||||
seller=self.root,
|
seller=self.root,
|
||||||
unit_price=2,
|
unit_price=2,
|
||||||
quantity=4,
|
quantity=4,
|
||||||
|
payment_method="SITH_ACCOUNT",
|
||||||
).save()
|
).save()
|
||||||
data = {"user1": self.to_keep.id, "user2": self.to_delete.id}
|
data = {"user1": self.to_keep.id, "user2": self.to_delete.id}
|
||||||
res = self.client.post(reverse("rootplace:merge"), data)
|
res = self.client.post(reverse("rootplace:merge"), data)
|
||||||
|
|||||||
@@ -440,6 +440,19 @@ SITH_SUBSCRIPTION_LOCATIONS = [
|
|||||||
|
|
||||||
SITH_COUNTER_BARS = [(1, "MDE"), (2, "Foyer"), (35, "La Gommette")]
|
SITH_COUNTER_BARS = [(1, "MDE"), (2, "Foyer"), (35, "La Gommette")]
|
||||||
|
|
||||||
|
SITH_COUNTER_BANK = [
|
||||||
|
("OTHER", "Autre"),
|
||||||
|
("SOCIETE-GENERALE", "Société générale"),
|
||||||
|
("BANQUE-POPULAIRE", "Banque populaire"),
|
||||||
|
("BNP", "BNP"),
|
||||||
|
("CAISSE-EPARGNE", "Caisse d'épargne"),
|
||||||
|
("CIC", "CIC"),
|
||||||
|
("CREDIT-AGRICOLE", "Crédit Agricole"),
|
||||||
|
("CREDIT-MUTUEL", "Credit Mutuel"),
|
||||||
|
("CREDIT-LYONNAIS", "Credit Lyonnais"),
|
||||||
|
("LA-POSTE", "La Poste"),
|
||||||
|
]
|
||||||
|
|
||||||
SITH_PEDAGOGY_UV_TYPE = [
|
SITH_PEDAGOGY_UV_TYPE = [
|
||||||
("FREE", _("Free")),
|
("FREE", _("Free")),
|
||||||
("CS", _("CS")),
|
("CS", _("CS")),
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ from django.views.generic import CreateView, DetailView, TemplateView
|
|||||||
from django.views.generic.edit import FormView
|
from django.views.generic.edit import FormView
|
||||||
|
|
||||||
from core.views.group import PermissionGroupsUpdateView
|
from core.views.group import PermissionGroupsUpdateView
|
||||||
|
from counter.apps import PAYMENT_METHOD
|
||||||
from subscription.forms import (
|
from subscription.forms import (
|
||||||
SelectionDateForm,
|
SelectionDateForm,
|
||||||
SubscriptionExistingUserForm,
|
SubscriptionExistingUserForm,
|
||||||
@@ -128,6 +129,6 @@ class SubscriptionsStatsView(FormView):
|
|||||||
subscription_end__gte=self.end_date, subscription_start__lte=self.start_date
|
subscription_end__gte=self.end_date, subscription_start__lte=self.start_date
|
||||||
)
|
)
|
||||||
kwargs["subscriptions_types"] = settings.SITH_SUBSCRIPTIONS
|
kwargs["subscriptions_types"] = settings.SITH_SUBSCRIPTIONS
|
||||||
kwargs["payment_types"] = settings.SITH_SUBSCRIPTION_PAYMENT_METHOD
|
kwargs["payment_types"] = PAYMENT_METHOD
|
||||||
kwargs["locations"] = settings.SITH_SUBSCRIPTION_LOCATIONS
|
kwargs["locations"] = settings.SITH_SUBSCRIPTION_LOCATIONS
|
||||||
return kwargs
|
return kwargs
|
||||||
|
|||||||
Reference in New Issue
Block a user