mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-06-21 01:48:21 +02:00
Compare commits
19 Commits
migration-
...
e9f4795d13
Author | SHA1 | Date | |
---|---|---|---|
e9f4795d13 | |||
1aa779f479 | |||
631a5a59ad | |||
aea6ec5e49 | |||
0e83ac32a2 | |||
c49a94b87f | |||
a3073ba5a5 | |||
9b9fa0bcfe | |||
b1d0cf92b1 | |||
0c3e712f8f | |||
708216a67f | |||
c27a8fefe5 | |||
c8afee91d2 | |||
aaa6076e9b | |||
77233e995e | |||
c9980b0bd1 | |||
4e6ec16e94 | |||
89785ce632 | |||
b636ca49d1 |
@ -7,10 +7,25 @@ stages:
|
|||||||
variables:
|
variables:
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
GIT_SUBMODULE_STRATEGY: recursive
|
||||||
|
|
||||||
# Ubuntu 22.04
|
# Debian Buster
|
||||||
py310-django50:
|
# py37-django22:
|
||||||
|
# stage: test
|
||||||
|
# image: debian:buster-backports
|
||||||
|
# before_script:
|
||||||
|
# - >
|
||||||
|
# apt-get update &&
|
||||||
|
# apt-get install --no-install-recommends -t buster-backports -y
|
||||||
|
# python3-django python3-django-crispy-forms
|
||||||
|
# python3-django-extensions python3-django-filters python3-django-polymorphic
|
||||||
|
# python3-djangorestframework python3-django-oauth-toolkit python3-psycopg2 python3-pil
|
||||||
|
# python3-babel python3-lockfile python3-pip python3-phonenumbers python3-memcache
|
||||||
|
# python3-bs4 python3-setuptools tox texlive-xetex
|
||||||
|
# script: tox -e py37-django22
|
||||||
|
|
||||||
|
# Ubuntu 20.04
|
||||||
|
py38-django22:
|
||||||
stage: test
|
stage: test
|
||||||
image: ubuntu:22.04
|
image: ubuntu:20.04
|
||||||
before_script:
|
before_script:
|
||||||
# Fix tzdata prompt
|
# Fix tzdata prompt
|
||||||
- ln -sf /usr/share/zoneinfo/Europe/Paris /etc/localtime && echo Europe/Paris > /etc/timezone
|
- ln -sf /usr/share/zoneinfo/Europe/Paris /etc/localtime && echo Europe/Paris > /etc/timezone
|
||||||
@ -22,12 +37,12 @@ py310-django50:
|
|||||||
python3-djangorestframework python3-django-oauth-toolkit python3-psycopg2 python3-pil
|
python3-djangorestframework python3-django-oauth-toolkit python3-psycopg2 python3-pil
|
||||||
python3-babel python3-lockfile python3-pip python3-phonenumbers python3-memcache
|
python3-babel python3-lockfile python3-pip python3-phonenumbers python3-memcache
|
||||||
python3-bs4 python3-setuptools tox texlive-xetex
|
python3-bs4 python3-setuptools tox texlive-xetex
|
||||||
script: tox -e py310-django50
|
script: tox -e py38-django22
|
||||||
|
|
||||||
# Debian Bookworm
|
# Debian Bullseye
|
||||||
py311-django50:
|
py39-django22:
|
||||||
stage: test
|
stage: test
|
||||||
image: debian:bookworm
|
image: debian:bullseye
|
||||||
before_script:
|
before_script:
|
||||||
- >
|
- >
|
||||||
apt-get update &&
|
apt-get update &&
|
||||||
@ -37,7 +52,7 @@ py311-django50:
|
|||||||
python3-djangorestframework python3-django-oauth-toolkit python3-psycopg2 python3-pil
|
python3-djangorestframework python3-django-oauth-toolkit python3-psycopg2 python3-pil
|
||||||
python3-babel python3-lockfile python3-pip python3-phonenumbers python3-memcache
|
python3-babel python3-lockfile python3-pip python3-phonenumbers python3-memcache
|
||||||
python3-bs4 python3-setuptools tox texlive-xetex
|
python3-bs4 python3-setuptools tox texlive-xetex
|
||||||
script: tox -e py311-django50
|
script: tox -e py39-django22
|
||||||
|
|
||||||
linters:
|
linters:
|
||||||
stage: quality-assurance
|
stage: quality-assurance
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from bootstrap_datepicker_plus.widgets import DateTimePickerInput
|
|
||||||
|
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
from random import shuffle
|
from random import shuffle
|
||||||
|
|
||||||
@ -12,7 +10,7 @@ from django.utils import timezone
|
|||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from member.models import Club
|
from member.models import Club
|
||||||
from note.models import Note, NoteUser
|
from note.models import Note, NoteUser
|
||||||
from note_kfet.inputs import Autocomplete
|
from note_kfet.inputs import Autocomplete, DateTimePickerInput
|
||||||
from note_kfet.middlewares import get_current_request
|
from note_kfet.middlewares import get_current_request
|
||||||
from permission.backends import PermissionBackend
|
from permission.backends import PermissionBackend
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.urls import include, re_path
|
from django.conf.urls import url, include
|
||||||
from rest_framework import routers
|
from rest_framework import routers
|
||||||
|
|
||||||
from .views import UserInformationView
|
from .views import UserInformationView
|
||||||
@ -47,7 +47,7 @@ app_name = 'api'
|
|||||||
# Wire up our API using automatic URL routing.
|
# Wire up our API using automatic URL routing.
|
||||||
# Additionally, we include login URLs for the browsable API.
|
# Additionally, we include login URLs for the browsable API.
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
re_path('^', include(router.urls)),
|
url('^', include(router.urls)),
|
||||||
re_path('^me/', UserInformationView.as_view()),
|
url('^me/', UserInformationView.as_view()),
|
||||||
re_path('^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
|
url('^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
|
||||||
]
|
]
|
||||||
|
0
apps/food/__init__.py
Normal file
0
apps/food/__init__.py
Normal file
35
apps/food/admin.py
Normal file
35
apps/food/admin.py
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from django.contrib import admin
|
||||||
|
from note_kfet.admin import admin_site
|
||||||
|
|
||||||
|
from .models import Allergen, BasicFood, QRCode, TransformedFood
|
||||||
|
|
||||||
|
|
||||||
|
@admin.register(QRCode, site=admin_site)
|
||||||
|
class QRCodeAdmin(admin.ModelAdmin):
|
||||||
|
"""
|
||||||
|
TEMPORARY
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
@admin.register(BasicFood, site=admin_site)
|
||||||
|
class BasicFoodAdmin(admin.ModelAdmin):
|
||||||
|
"""
|
||||||
|
TEMPORARY
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
@admin.register(TransformedFood, site=admin_site)
|
||||||
|
class TransformedFoodAdmin(admin.ModelAdmin):
|
||||||
|
"""
|
||||||
|
TEMPORARY
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
@admin.register(Allergen, site=admin_site)
|
||||||
|
class AllergenAdmin(admin.ModelAdmin):
|
||||||
|
"""
|
||||||
|
TEMPORARY
|
||||||
|
"""
|
11
apps/food/apps.py
Normal file
11
apps/food/apps.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class FoodkfetConfig(AppConfig):
|
||||||
|
name = 'food'
|
||||||
|
verbose_name = _('food')
|
107
apps/food/fixtures/initial.json
Normal file
107
apps/food/fixtures/initial.json
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 1,
|
||||||
|
"fields": {
|
||||||
|
"name": "alcohol"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 2,
|
||||||
|
"fields": {
|
||||||
|
"name": "celery"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 3,
|
||||||
|
"fields": {
|
||||||
|
"name": "crustecean"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 4,
|
||||||
|
"fields": {
|
||||||
|
"name": "egg"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 5,
|
||||||
|
"fields": {
|
||||||
|
"name": "fish"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 6,
|
||||||
|
"fields": {
|
||||||
|
"name": "gluten"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 7,
|
||||||
|
"fields": {
|
||||||
|
"name": "groundnut"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 8,
|
||||||
|
"fields": {
|
||||||
|
"name": "lupine"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 9,
|
||||||
|
"fields": {
|
||||||
|
"name": "milk"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 10,
|
||||||
|
"fields": {
|
||||||
|
"name": "mollusc"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 11,
|
||||||
|
"fields": {
|
||||||
|
"name": "mustard"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 12,
|
||||||
|
"fields": {
|
||||||
|
"name": "nut"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 13,
|
||||||
|
"fields": {
|
||||||
|
"name": "sesame"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 14,
|
||||||
|
"fields": {
|
||||||
|
"name": "soy"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "food.allergen",
|
||||||
|
"pk": 15,
|
||||||
|
"fields": {
|
||||||
|
"name": "sulphite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
73
apps/food/forms.py
Normal file
73
apps/food/forms.py
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from random import shuffle
|
||||||
|
|
||||||
|
from django import forms
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
from django.utils import timezone
|
||||||
|
from member.models import Club
|
||||||
|
from note_kfet.inputs import Autocomplete, DateTimePickerInput
|
||||||
|
from note_kfet.middlewares import get_current_request
|
||||||
|
from permission.backends import PermissionBackend
|
||||||
|
|
||||||
|
from .models import BasicFood, TransformedFood
|
||||||
|
|
||||||
|
|
||||||
|
class BasicFoodForms(forms.ModelForm):
|
||||||
|
"""
|
||||||
|
Form for add non-transformed food
|
||||||
|
"""
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
self.fields['name'].widget.attrs.update({"autofocus": "autofocus"})
|
||||||
|
self.fields['name'].required = True
|
||||||
|
self.fields['owner'].required = True
|
||||||
|
|
||||||
|
# Some example
|
||||||
|
self.fields['name'].widget.attrs.update({"placeholder": _("pasta")})
|
||||||
|
clubs = list(Club.objects.filter(PermissionBackend.filter_queryset(get_current_request(), Club, "change")).all())
|
||||||
|
shuffle(clubs)
|
||||||
|
self.fields['owner'].widget.attrs["placeholder"] = ", ".join(club.name for club in clubs[:4]) + ", ..."
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = BasicFood
|
||||||
|
fields = ('name', 'owner', 'date_type', 'expiry_date', 'allergens')
|
||||||
|
widgets = {
|
||||||
|
"owner": Autocomplete(
|
||||||
|
model=Club,
|
||||||
|
attrs={"api_url": "/api/members/club/"},
|
||||||
|
),
|
||||||
|
'expiry_date': DateTimePickerInput(),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class TransformedFoodForms(forms.ModelForm):
|
||||||
|
"""
|
||||||
|
Form for add transformed food
|
||||||
|
"""
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
self.fields['name'].widget.attrs.update({"autofocus": "autofocus"})
|
||||||
|
self.fields['name'].required = True
|
||||||
|
self.fields['owner'].required = True
|
||||||
|
self.fields['creation_date'].required = True
|
||||||
|
self.fields['creation_date'].initial = timezone.now
|
||||||
|
self.fields['is_active'].initial = True
|
||||||
|
|
||||||
|
# Some example
|
||||||
|
self.fields['name'].widget.attrs.update({"placeholder": _("lasagna")})
|
||||||
|
clubs = list(Club.objects.filter(PermissionBackend.filter_queryset(get_current_request(), Club, "change")).all())
|
||||||
|
shuffle(clubs)
|
||||||
|
self.fields['owner'].widget.attrs["placeholder"] = ", ".join(club.name for club in clubs[:4]) + ", ..."
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = TransformedFood
|
||||||
|
fields = ('name', 'creation_date', 'owner', 'is_active', 'allergens')
|
||||||
|
widgets = {
|
||||||
|
"owner": Autocomplete(
|
||||||
|
model=Club,
|
||||||
|
attrs={"api_url": "/api/members/club/"},
|
||||||
|
),
|
||||||
|
'creation_date': DateTimePickerInput(),
|
||||||
|
}
|
72
apps/food/migrations/0001_initial.py
Normal file
72
apps/food/migrations/0001_initial.py
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
# Generated by Django 2.2.28 on 2024-07-03 07:40
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
import django.db.models.deletion
|
||||||
|
import django.utils.timezone
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
initial = True
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('member', '0011_profile_vss_charter_read'),
|
||||||
|
('contenttypes', '0002_remove_content_type_name'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='Allergen',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('name', models.CharField(max_length=255, null=True, verbose_name='name')),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
'verbose_name': 'Allergen',
|
||||||
|
'verbose_name_plural': 'Allergens',
|
||||||
|
},
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='Food',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('name', models.CharField(max_length=255, verbose_name='name')),
|
||||||
|
('expiry_date', models.DateTimeField(verbose_name='expiry date')),
|
||||||
|
('was_eaten', models.BooleanField(default=False, verbose_name='was eaten')),
|
||||||
|
('code', models.IntegerField(unique=True, verbose_name='code')),
|
||||||
|
('allergens', models.ManyToManyField(blank=True, to='food.Allergen', verbose_name='allergen')),
|
||||||
|
('owner', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='+', to='member.Club', verbose_name='owner')),
|
||||||
|
('polymorphic_ctype', models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='polymorphic_food.food_set+', to='contenttypes.ContentType')),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
'verbose_name': 'foods',
|
||||||
|
},
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='BasicFood',
|
||||||
|
fields=[
|
||||||
|
('food_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='food.Food')),
|
||||||
|
('date_type', models.CharField(choices=[('DLC', 'DLC'), ('DDM', 'DDM')], max_length=255)),
|
||||||
|
('arrival_date', models.DateTimeField(blank=True, default=django.utils.timezone.now, verbose_name='arrival date')),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
'verbose_name': 'Basic food',
|
||||||
|
'verbose_name_plural': 'Basic foods',
|
||||||
|
},
|
||||||
|
bases=('food.food',),
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='TransformedFood',
|
||||||
|
fields=[
|
||||||
|
('food_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='food.Food')),
|
||||||
|
('creation_date', models.DateTimeField(verbose_name='creation date')),
|
||||||
|
('is_active', models.BooleanField(default=True, verbose_name='is active')),
|
||||||
|
('ingredient', models.ManyToManyField(blank=True, related_name='transformed_ingredient_inv', to='food.Food', verbose_name='transformed ingredient')),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
'verbose_name': 'Transformed food',
|
||||||
|
'verbose_name_plural': 'Transformed foods',
|
||||||
|
},
|
||||||
|
bases=('food.food',),
|
||||||
|
),
|
||||||
|
]
|
30
apps/food/migrations/0002_auto_20240703_1549.py
Normal file
30
apps/food/migrations/0002_auto_20240703_1549.py
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Generated by Django 2.2.28 on 2024-07-03 13:49
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
import django.db.models.deletion
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('food', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='food',
|
||||||
|
name='code',
|
||||||
|
),
|
||||||
|
migrations.CreateModel(
|
||||||
|
name='QRCode',
|
||||||
|
fields=[
|
||||||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
|
('qr_code_number', models.PositiveIntegerField(verbose_name='QR-code number')),
|
||||||
|
('food_container', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='QR_code', to='food.Food', unique=True, verbose_name='food container')),
|
||||||
|
],
|
||||||
|
options={
|
||||||
|
'verbose_name': 'QR-code',
|
||||||
|
'verbose_name_plural': 'QR-codes',
|
||||||
|
},
|
||||||
|
),
|
||||||
|
]
|
0
apps/food/migrations/__init__.py
Normal file
0
apps/food/migrations/__init__.py
Normal file
153
apps/food/models.py
Normal file
153
apps/food/models.py
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from django.db import models, transaction
|
||||||
|
from django.utils import timezone
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
from member.models import Club
|
||||||
|
from polymorphic.models import PolymorphicModel
|
||||||
|
|
||||||
|
#################################################################
|
||||||
|
# TO DO
|
||||||
|
# - link allergen with one food (basic or transformed) with check
|
||||||
|
# - check on basic food
|
||||||
|
# - check on transformed food
|
||||||
|
#################################################################
|
||||||
|
|
||||||
|
|
||||||
|
class QRCode(models.Model):
|
||||||
|
"""
|
||||||
|
An QRCode model
|
||||||
|
"""
|
||||||
|
qr_code_number = models.PositiveIntegerField(
|
||||||
|
verbose_name=_("QR-code number"),
|
||||||
|
)
|
||||||
|
|
||||||
|
food_container = models.ForeignKey(
|
||||||
|
'Food',
|
||||||
|
on_delete=models.PROTECT,
|
||||||
|
related_name='QR_code',
|
||||||
|
unique=True,
|
||||||
|
verbose_name=_('food container'),
|
||||||
|
)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("QR-code")
|
||||||
|
verbose_name_plural = _("QR-codes")
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return _("QR-code number {qr_code_number}").format(qr_code_number=self.qr_code_number)
|
||||||
|
|
||||||
|
|
||||||
|
class Allergen(models.Model):
|
||||||
|
"""
|
||||||
|
A list of allergen and alimentary restrictions
|
||||||
|
"""
|
||||||
|
name = models.CharField(
|
||||||
|
verbose_name=_('name'),
|
||||||
|
max_length=255,
|
||||||
|
)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _('Allergen')
|
||||||
|
verbose_name_plural = _('Allergens')
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.name
|
||||||
|
|
||||||
|
|
||||||
|
class Food(PolymorphicModel):
|
||||||
|
name = models.CharField(
|
||||||
|
verbose_name=_('name'),
|
||||||
|
max_length=255,
|
||||||
|
)
|
||||||
|
|
||||||
|
owner = models.ForeignKey(
|
||||||
|
Club,
|
||||||
|
on_delete=models.PROTECT,
|
||||||
|
related_name='+',
|
||||||
|
verbose_name=_('owner'),
|
||||||
|
)
|
||||||
|
|
||||||
|
allergens = models.ManyToManyField(
|
||||||
|
Allergen,
|
||||||
|
blank=True,
|
||||||
|
verbose_name=_('allergen'),
|
||||||
|
)
|
||||||
|
|
||||||
|
expiry_date = models.DateTimeField(
|
||||||
|
verbose_name=_('expiry date'),
|
||||||
|
)
|
||||||
|
|
||||||
|
was_eaten = models.BooleanField(
|
||||||
|
default=False,
|
||||||
|
verbose_name=_('was eaten'),
|
||||||
|
)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.name
|
||||||
|
|
||||||
|
@transaction.atomic
|
||||||
|
def save(self, force_insert=False, force_update=False, using=None, update_fields=None):
|
||||||
|
return super().save(force_insert, force_update, using, update_fields)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _('food')
|
||||||
|
verbose_name = _('foods')
|
||||||
|
|
||||||
|
|
||||||
|
class BasicFood(Food):
|
||||||
|
"""
|
||||||
|
Food which has been directly buy on supermarket
|
||||||
|
"""
|
||||||
|
date_type = models.CharField(
|
||||||
|
max_length=255,
|
||||||
|
choices=(
|
||||||
|
("DLC", "DLC"),
|
||||||
|
("DDM", "DDM"),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
arrival_date = models.DateTimeField(
|
||||||
|
verbose_name=_('arrival date'),
|
||||||
|
default=timezone.now,
|
||||||
|
blank=True, # TEMPORARY
|
||||||
|
)
|
||||||
|
|
||||||
|
# label = models.ImageField(
|
||||||
|
# verbose_name=_('food label'),
|
||||||
|
# max_length=255,
|
||||||
|
# blank=False,
|
||||||
|
# null=False,
|
||||||
|
# upload_to='label/',
|
||||||
|
# )
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _('Basic food')
|
||||||
|
verbose_name_plural = _('Basic foods')
|
||||||
|
|
||||||
|
|
||||||
|
class TransformedFood(Food):
|
||||||
|
"""
|
||||||
|
Transformed food are a mix between basic food and meal
|
||||||
|
"""
|
||||||
|
creation_date = models.DateTimeField(
|
||||||
|
verbose_name=_('creation date'),
|
||||||
|
)
|
||||||
|
|
||||||
|
ingredient = models.ManyToManyField(
|
||||||
|
Food,
|
||||||
|
blank=True,
|
||||||
|
symmetrical=False,
|
||||||
|
related_name='transformed_ingredient_inv',
|
||||||
|
verbose_name=_('transformed ingredient'),
|
||||||
|
)
|
||||||
|
|
||||||
|
is_active = models.BooleanField(
|
||||||
|
default=True,
|
||||||
|
verbose_name=_('is active'),
|
||||||
|
)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _('Transformed food')
|
||||||
|
verbose_name_plural = _('Transformed foods')
|
422
apps/food/static/food/js/food.js
Normal file
422
apps/food/static/food/js/food.js
Normal file
@ -0,0 +1,422 @@
|
|||||||
|
var LOCK = false
|
||||||
|
|
||||||
|
sources = []
|
||||||
|
sources_notes_display = []
|
||||||
|
dests = []
|
||||||
|
dests_notes_display = []
|
||||||
|
|
||||||
|
function refreshHistory () {
|
||||||
|
$('#history').load('/note/transfer/ #history')
|
||||||
|
}
|
||||||
|
|
||||||
|
function reset (refresh = true) {
|
||||||
|
sources_notes_display.length = 0
|
||||||
|
sources.length = 0
|
||||||
|
dests_notes_display.length = 0
|
||||||
|
dests.length = 0
|
||||||
|
$('#source_note_list').html('')
|
||||||
|
$('#dest_note_list').html('')
|
||||||
|
const source_field = $('#source_note')
|
||||||
|
source_field.val('')
|
||||||
|
const event = jQuery.Event('keyup')
|
||||||
|
event.originalEvent = { charCode: 97 }
|
||||||
|
source_field.trigger(event)
|
||||||
|
source_field.removeClass('is-invalid')
|
||||||
|
source_field.attr('data-original-title', '').tooltip('hide')
|
||||||
|
const dest_field = $('#dest_note')
|
||||||
|
dest_field.val('')
|
||||||
|
dest_field.trigger(event)
|
||||||
|
dest_field.removeClass('is-invalid')
|
||||||
|
dest_field.attr('data-original-title', '').tooltip('hide')
|
||||||
|
const amount_field = $('#amount')
|
||||||
|
amount_field.val('')
|
||||||
|
amount_field.removeClass('is-invalid')
|
||||||
|
$('#amount-required').html('')
|
||||||
|
const reason_field = $('#reason')
|
||||||
|
reason_field.val('')
|
||||||
|
reason_field.removeClass('is-invalid')
|
||||||
|
$('#reason-required').html('')
|
||||||
|
$('#last_name').val('')
|
||||||
|
$('#first_name').val('')
|
||||||
|
$('#bank').val('')
|
||||||
|
$('#user_note').val('')
|
||||||
|
$('#profile_pic').attr('src', '/static/member/img/default_picture.png')
|
||||||
|
$('#profile_pic_link').attr('href', '#')
|
||||||
|
if (refresh) {
|
||||||
|
refreshBalance()
|
||||||
|
refreshHistory()
|
||||||
|
}
|
||||||
|
|
||||||
|
LOCK = false
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
/**
|
||||||
|
* If we are in credit/debit mode, check that only one note is entered.
|
||||||
|
* More over, get first name and last name to autocomplete fields.
|
||||||
|
*/
|
||||||
|
function checkUniqueNote () {
|
||||||
|
if ($('#type_credit').is(':checked') || $('#type_debit').is(':checked')) {
|
||||||
|
const arr = $('#type_credit').is(':checked') ? dests_notes_display : sources_notes_display
|
||||||
|
|
||||||
|
if (arr.length === 0) { return }
|
||||||
|
|
||||||
|
const last = arr[arr.length - 1]
|
||||||
|
arr.length = 0
|
||||||
|
arr.push(last)
|
||||||
|
|
||||||
|
last.quantity = 1
|
||||||
|
|
||||||
|
if (last.note.club) {
|
||||||
|
$('#last_name').val(last.note.name)
|
||||||
|
$('#first_name').val(last.note.name)
|
||||||
|
}
|
||||||
|
else if (!last.note.user) {
|
||||||
|
$.getJSON('/api/note/note/' + last.note.id + '/?format=json', function (note) {
|
||||||
|
last.note.user = note.user
|
||||||
|
$.getJSON('/api/user/' + last.note.user + '/', function (user) {
|
||||||
|
$('#last_name').val(user.last_name)
|
||||||
|
$('#first_name').val(user.first_name)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
$.getJSON('/api/user/' + last.note.user + '/', function (user) {
|
||||||
|
$('#last_name').val(user.last_name)
|
||||||
|
$('#first_name').val(user.first_name)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
autoCompleteNote('source_note', 'source_note_list', sources, sources_notes_display,
|
||||||
|
'source_alias', 'source_note', 'user_note', 'profile_pic', checkUniqueNote)
|
||||||
|
autoCompleteNote('dest_note', 'dest_note_list', dests, dests_notes_display,
|
||||||
|
'dest_alias', 'dest_note', 'user_note', 'profile_pic', checkUniqueNote)
|
||||||
|
|
||||||
|
const source = $('#source_note')
|
||||||
|
const dest = $('#dest_note')
|
||||||
|
|
||||||
|
$('#type_transfer').change(function () {
|
||||||
|
if (LOCK) { return }
|
||||||
|
|
||||||
|
$('#source_me_div').removeClass('d-none')
|
||||||
|
$('#source_note').removeClass('is-invalid')
|
||||||
|
$('#dest_note').removeClass('is-invalid')
|
||||||
|
$('#special_transaction_div').addClass('d-none')
|
||||||
|
source.removeClass('d-none')
|
||||||
|
$('#source_note_list').removeClass('d-none')
|
||||||
|
$('#credit_type').addClass('d-none')
|
||||||
|
dest.removeClass('d-none')
|
||||||
|
$('#dest_note_list').removeClass('d-none')
|
||||||
|
$('#debit_type').addClass('d-none')
|
||||||
|
|
||||||
|
$('#source_note_label').text(select_emitters_label)
|
||||||
|
$('#dest_note_label').text(select_receveirs_label)
|
||||||
|
|
||||||
|
location.hash = 'transfer'
|
||||||
|
})
|
||||||
|
|
||||||
|
$('#type_credit').change(function () {
|
||||||
|
if (LOCK) { return }
|
||||||
|
|
||||||
|
$('#source_me_div').addClass('d-none')
|
||||||
|
$('#source_note').removeClass('is-invalid')
|
||||||
|
$('#dest_note').removeClass('is-invalid')
|
||||||
|
$('#special_transaction_div').removeClass('d-none')
|
||||||
|
$('#source_note_list').addClass('d-none')
|
||||||
|
$('#dest_note_list').removeClass('d-none')
|
||||||
|
source.addClass('d-none')
|
||||||
|
source.tooltip('hide')
|
||||||
|
$('#credit_type').removeClass('d-none')
|
||||||
|
dest.removeClass('d-none')
|
||||||
|
dest.val('')
|
||||||
|
dest.tooltip('hide')
|
||||||
|
$('#debit_type').addClass('d-none')
|
||||||
|
|
||||||
|
$('#source_note_label').text(transfer_type_label)
|
||||||
|
$('#dest_note_label').text(select_receveir_label)
|
||||||
|
|
||||||
|
if (dests_notes_display.length > 1) {
|
||||||
|
$('#dest_note_list').html('')
|
||||||
|
dests_notes_display.length = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
location.hash = 'credit'
|
||||||
|
})
|
||||||
|
|
||||||
|
$('#type_debit').change(function () {
|
||||||
|
if (LOCK) { return }
|
||||||
|
|
||||||
|
$('#source_me_div').addClass('d-none')
|
||||||
|
$('#source_note').removeClass('is-invalid')
|
||||||
|
$('#dest_note').removeClass('is-invalid')
|
||||||
|
$('#special_transaction_div').removeClass('d-none')
|
||||||
|
$('#source_note_list').removeClass('d-none')
|
||||||
|
$('#dest_note_list').addClass('d-none')
|
||||||
|
source.removeClass('d-none')
|
||||||
|
source.val('')
|
||||||
|
source.tooltip('hide')
|
||||||
|
$('#credit_type').addClass('d-none')
|
||||||
|
dest.addClass('d-none')
|
||||||
|
dest.tooltip('hide')
|
||||||
|
$('#debit_type').removeClass('d-none')
|
||||||
|
|
||||||
|
$('#source_note_label').text(select_emitter_label)
|
||||||
|
$('#dest_note_label').text(transfer_type_label)
|
||||||
|
|
||||||
|
if (sources_notes_display.length > 1) {
|
||||||
|
$('#source_note_list').html('')
|
||||||
|
sources_notes_display.length = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
location.hash = 'debit'
|
||||||
|
})
|
||||||
|
|
||||||
|
$('#credit_type').change(function () {
|
||||||
|
const type = $('#credit_type option:selected').text()
|
||||||
|
if ($('#type_credit').is(':checked')) { source.val(type) } else { dest.val(type) }
|
||||||
|
})
|
||||||
|
|
||||||
|
// Ensure we begin in transfer mode. Removing these lines may cause problems when reloading.
|
||||||
|
const type_transfer = $('#type_transfer') // Default mode
|
||||||
|
type_transfer.removeAttr('checked')
|
||||||
|
$('#type_credit').removeAttr('checked')
|
||||||
|
$('#type_debit').removeAttr('checked')
|
||||||
|
|
||||||
|
if (location.hash) { $('#type_' + location.hash.substr(1)).click() } else { type_transfer.click() }
|
||||||
|
|
||||||
|
$('#source_me').click(function () {
|
||||||
|
if (LOCK) { return }
|
||||||
|
|
||||||
|
// Shortcut to set the current user as the only emitter
|
||||||
|
sources_notes_display.length = 0
|
||||||
|
sources.length = 0
|
||||||
|
$('#source_note_list').html('')
|
||||||
|
|
||||||
|
const source_note = $('#source_note')
|
||||||
|
source_note.focus()
|
||||||
|
source_note.val('')
|
||||||
|
let event = jQuery.Event('keyup')
|
||||||
|
event.originalEvent = { charCode: 97 }
|
||||||
|
source_note.trigger(event)
|
||||||
|
source_note.val(username)
|
||||||
|
event = jQuery.Event('keyup')
|
||||||
|
event.originalEvent = { charCode: 97 }
|
||||||
|
source_note.trigger(event)
|
||||||
|
const fill_note = function () {
|
||||||
|
if (sources.length === 0) {
|
||||||
|
setTimeout(fill_note, 100)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
event = jQuery.Event('keypress')
|
||||||
|
event.originalEvent = { charCode: 13 }
|
||||||
|
source_note.trigger(event)
|
||||||
|
|
||||||
|
source_note.tooltip('hide')
|
||||||
|
source_note.val('')
|
||||||
|
$('#dest_note').focus()
|
||||||
|
}
|
||||||
|
fill_note()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
// Make transfer when pressing Enter on the amount section
|
||||||
|
$('#amount, #reason, #last_name, #first_name, #bank').keypress((event) => {
|
||||||
|
if (event.originalEvent.charCode === 13) {
|
||||||
|
$('#btn_transfer').click()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
$('#btn_transfer').click(function () {
|
||||||
|
if (LOCK) { return }
|
||||||
|
|
||||||
|
LOCK = true
|
||||||
|
|
||||||
|
let error = false
|
||||||
|
|
||||||
|
const amount_field = $('#amount')
|
||||||
|
amount_field.removeClass('is-invalid')
|
||||||
|
$('#amount-required').html('')
|
||||||
|
|
||||||
|
const reason_field = $('#reason')
|
||||||
|
reason_field.removeClass('is-invalid')
|
||||||
|
$('#reason-required').html('')
|
||||||
|
|
||||||
|
if (!amount_field.val() || isNaN(amount_field.val()) || amount_field.val() <= 0) {
|
||||||
|
amount_field.addClass('is-invalid')
|
||||||
|
$('#amount-required').html('<strong>' + gettext('This field is required and must contain a decimal positive number.') + '</strong>')
|
||||||
|
error = true
|
||||||
|
}
|
||||||
|
|
||||||
|
const amount = Math.round(100 * amount_field.val())
|
||||||
|
if (amount > 2147483647) {
|
||||||
|
amount_field.addClass('is-invalid')
|
||||||
|
$('#amount-required').html('<strong>' + gettext('The amount must stay under 21,474,836.47 €.') + '</strong>')
|
||||||
|
error = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!reason_field.val() && $('#type_transfer').is(':checked')) {
|
||||||
|
reason_field.addClass('is-invalid')
|
||||||
|
$('#reason-required').html('<strong>' + gettext('This field is required.') + '</strong>')
|
||||||
|
error = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!sources_notes_display.length && !$('#type_credit').is(':checked')) {
|
||||||
|
$('#source_note').addClass('is-invalid')
|
||||||
|
error = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!dests_notes_display.length && !$('#type_debit').is(':checked')) {
|
||||||
|
$('#dest_note').addClass('is-invalid')
|
||||||
|
error = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
LOCK = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
let reason = reason_field.val()
|
||||||
|
|
||||||
|
if ($('#type_transfer').is(':checked')) {
|
||||||
|
// We copy the arrays to ensure that transactions are well-processed even if the form is reset
|
||||||
|
[...sources_notes_display].forEach(function (source) {
|
||||||
|
[...dests_notes_display].forEach(function (dest) {
|
||||||
|
if (source.note.id === dest.note.id) {
|
||||||
|
addMsg(interpolate(gettext('Warning: the transaction of %s from %s to %s was not made because ' +
|
||||||
|
'it is the same source and destination note.'), [pretty_money(amount), source.name, dest.name]), 'warning', 10000)
|
||||||
|
LOCK = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
$.post('/api/note/transaction/transaction/',
|
||||||
|
{
|
||||||
|
csrfmiddlewaretoken: CSRF_TOKEN,
|
||||||
|
quantity: source.quantity * dest.quantity,
|
||||||
|
amount: amount,
|
||||||
|
reason: reason,
|
||||||
|
valid: true,
|
||||||
|
polymorphic_ctype: TRANSFER_POLYMORPHIC_CTYPE,
|
||||||
|
resourcetype: 'Transaction',
|
||||||
|
source: source.note.id,
|
||||||
|
source_alias: source.name,
|
||||||
|
destination: dest.note.id,
|
||||||
|
destination_alias: dest.name
|
||||||
|
}).done(function () {
|
||||||
|
if (source.note.membership && source.note.membership.date_end < new Date().toISOString()) {
|
||||||
|
addMsg(interpolate(gettext('Warning, the emitter note %s is no more a BDE member.'), [source.name]), 'danger', 30000)
|
||||||
|
}
|
||||||
|
if (dest.note.membership && dest.note.membership.date_end < new Date().toISOString()) {
|
||||||
|
addMsg(interpolate(gettext('Warning, the destination note %s is no more a BDE member.'), [dest.name]), 'danger', 30000)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isNaN(source.note.balance)) {
|
||||||
|
const newBalance = source.note.balance - source.quantity * dest.quantity * amount
|
||||||
|
if (newBalance <= -2000) {
|
||||||
|
addMsg(interpolate(gettext('Warning, the transaction of %s from the note %s to the note %s succeed, but the emitter note %s is very negative.'),
|
||||||
|
[pretty_money(source.quantity * dest.quantity * amount), source.name, dest.name, source.name]), 'danger', 10000)
|
||||||
|
reset()
|
||||||
|
return
|
||||||
|
} else if (newBalance < 0) {
|
||||||
|
addMsg(interpolate(gettext('Warning, the transaction of %s from the note %s to the note %s succeed, but the emitter note %s is negative.'),
|
||||||
|
[pretty_money(source.quantity * dest.quantity * amount), source.name, dest.name, source.name]), 'danger', 10000)
|
||||||
|
reset()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
addMsg(interpolate(gettext('Transfer of %s from %s to %s succeed!'),
|
||||||
|
[pretty_money(source.quantity * dest.quantity * amount), source.name, dest.name]), 'success', 10000)
|
||||||
|
|
||||||
|
reset()
|
||||||
|
}).fail(function (err) { // do it again but valid = false
|
||||||
|
const errObj = JSON.parse(err.responseText)
|
||||||
|
if (errObj.non_field_errors) {
|
||||||
|
addMsg(interpolate(gettext('Transfer of %s from %s to %s failed: %s'),
|
||||||
|
[pretty_money(source.quantity * dest.quantity * amount), source.name, dest.name, errObj.non_field_errors]), 'danger')
|
||||||
|
LOCK = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
$.post('/api/note/transaction/transaction/',
|
||||||
|
{
|
||||||
|
csrfmiddlewaretoken: CSRF_TOKEN,
|
||||||
|
quantity: source.quantity * dest.quantity,
|
||||||
|
amount: amount,
|
||||||
|
reason: reason,
|
||||||
|
valid: false,
|
||||||
|
invalidity_reason: 'Solde insuffisant',
|
||||||
|
polymorphic_ctype: TRANSFER_POLYMORPHIC_CTYPE,
|
||||||
|
resourcetype: 'Transaction',
|
||||||
|
source: source.note.id,
|
||||||
|
source_alias: source.name,
|
||||||
|
destination: dest.note.id,
|
||||||
|
destination_alias: dest.name
|
||||||
|
}).done(function () {
|
||||||
|
addMsg(interpolate(gettext('Transfer of %s from %s to %s failed: %s'),
|
||||||
|
[pretty_money(source.quantity * dest.quantity * amount), source.name, dest.name, gettext('insufficient funds')]), 'danger', 10000)
|
||||||
|
reset()
|
||||||
|
}).fail(function (err) {
|
||||||
|
const errObj = JSON.parse(err.responseText)
|
||||||
|
let error = errObj.detail ? errObj.detail : errObj.non_field_errors
|
||||||
|
if (!error) { error = err.responseText }
|
||||||
|
addMsg(interpolate(gettext('Transfer of %s from %s to %s failed: %s'),
|
||||||
|
[pretty_money(source.quantity * dest.quantity * amount), source.name, dest.name, error]), 'danger')
|
||||||
|
LOCK = false
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
} else if ($('#type_credit').is(':checked') || $('#type_debit').is(':checked')) {
|
||||||
|
let special_note
|
||||||
|
let user_note
|
||||||
|
let alias
|
||||||
|
const given_reason = reason
|
||||||
|
let source_id, dest_id
|
||||||
|
if ($('#type_credit').is(':checked')) {
|
||||||
|
special_note = $('#credit_type').val()
|
||||||
|
user_note = dests_notes_display[0].note
|
||||||
|
alias = dests_notes_display[0].name
|
||||||
|
source_id = special_note
|
||||||
|
dest_id = user_note.id
|
||||||
|
reason = 'Crédit ' + $('#credit_type option:selected').text().toLowerCase()
|
||||||
|
if (given_reason.length > 0) { reason += ' (' + given_reason + ')' }
|
||||||
|
} else {
|
||||||
|
special_note = $('#debit_type').val()
|
||||||
|
user_note = sources_notes_display[0].note
|
||||||
|
alias = sources_notes_display[0].name
|
||||||
|
source_id = user_note.id
|
||||||
|
dest_id = special_note
|
||||||
|
reason = 'Retrait ' + $('#debit_type option:selected').text().toLowerCase()
|
||||||
|
if (given_reason.length > 0) { reason += ' (' + given_reason + ')' }
|
||||||
|
}
|
||||||
|
$.post('/api/note/transaction/transaction/',
|
||||||
|
{
|
||||||
|
csrfmiddlewaretoken: CSRF_TOKEN,
|
||||||
|
quantity: 1,
|
||||||
|
amount: amount,
|
||||||
|
reason: reason,
|
||||||
|
valid: true,
|
||||||
|
polymorphic_ctype: SPECIAL_TRANSFER_POLYMORPHIC_CTYPE,
|
||||||
|
resourcetype: 'SpecialTransaction',
|
||||||
|
source: source_id,
|
||||||
|
source_alias: sources_notes_display.length ? alias : null,
|
||||||
|
destination: dest_id,
|
||||||
|
destination_alias: dests_notes_display.length ? alias : null,
|
||||||
|
last_name: $('#last_name').val(),
|
||||||
|
first_name: $('#first_name').val(),
|
||||||
|
bank: $('#bank').val()
|
||||||
|
}).done(function () {
|
||||||
|
addMsg(gettext('Credit/debit succeed!'), 'success', 10000)
|
||||||
|
if (user_note.membership && user_note.membership.date_end < new Date().toISOString()) { addMsg(gettext('Warning, the emitter note %s is no more a BDE member.'), 'danger', 10000) }
|
||||||
|
reset()
|
||||||
|
}).fail(function (err) {
|
||||||
|
const errObj = JSON.parse(err.responseText)
|
||||||
|
let error = errObj.detail ? errObj.detail : errObj.non_field_errors
|
||||||
|
if (!error) { error = err.responseText }
|
||||||
|
addMsg(interpolate(gettext('Credit/debit failed: %s'), [error]), 'danger', 10000)
|
||||||
|
LOCK = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
21
apps/food/templates/food/basic_food_form.html
Normal file
21
apps/food/templates/food/basic_food_form.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% comment %}
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
{% endcomment %}
|
||||||
|
{% load i18n crispy_forms_tags %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="card bg-white mb-3">
|
||||||
|
<h3 class="card-header text-center">
|
||||||
|
HTML not finished <br>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
<div class="card-body" id="form">
|
||||||
|
<form method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
{{ form|crispy }}
|
||||||
|
<button class="btn btn-primary" type="submit">{% trans "Submit"%}</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
18
apps/food/templates/food/basicfood_detail.html
Normal file
18
apps/food/templates/food/basicfood_detail.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% comment %}
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
{% endcomment %}
|
||||||
|
{% load i18n crispy_forms_tags %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="card bg-white mb-3">
|
||||||
|
<h3 class="card-header text-center">
|
||||||
|
HTML not finished <br>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>name : {{ food.name }}</p>
|
||||||
|
<a href="{% url "food:basic_update" pk=food.pk %}">Update</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
21
apps/food/templates/food/create_food_form.html
Normal file
21
apps/food/templates/food/create_food_form.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% comment %}
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
{% endcomment %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="card bg-white mb-3">
|
||||||
|
<h3 class="card-header text-center">
|
||||||
|
HTML not finished <br>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xl-12">
|
||||||
|
<div class="btn-group btn-block">
|
||||||
|
<a href="{% url "food:basic_create" %}" class="btn btn-sm btn-outline-primary">Basic</a>
|
||||||
|
<a href="{% url "food:transformed_create" %}" class="btn btn-sm btn-outline-primary">Transformed</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
21
apps/food/templates/food/create_qrcode_form.html
Normal file
21
apps/food/templates/food/create_qrcode_form.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% comment %}
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
{% endcomment %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="card bg-white mb-3">
|
||||||
|
<h3 class="card-header text-center">
|
||||||
|
HTML not finished <br>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xl-12">
|
||||||
|
<div class="btn-group btn-block">
|
||||||
|
<a href="{% url "food:qrcode_basic_create" slug=slug %}" class="btn btn-sm btn-outline-primary">Basic</a>
|
||||||
|
<a href="{% url "food:qrcode_transformed_create" slug=slug %}" class="btn btn-sm btn-outline-primary">Transformed</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
23
apps/food/templates/food/qrcode_detail.html
Normal file
23
apps/food/templates/food/qrcode_detail.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% comment %}
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
{% endcomment %}
|
||||||
|
{% load i18n crispy_forms_tags %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="card bg-white mb-3">
|
||||||
|
<h3 class="card-header text-center">
|
||||||
|
HTML not finished <br>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>qrcode : {{ qrcode.qr_code_number }}</p>
|
||||||
|
<p>name : {{ qrcode.food_container.name }}</p>
|
||||||
|
{% if qrcode.food_container.polymorphic_ctype.name == 'Basic food' %}
|
||||||
|
<a href="{% url "food:basic_update" pk=qrcode.food_container.pk %}">Update</a>
|
||||||
|
{% else %}
|
||||||
|
<a href="{% url "food:transformed_update" pk=qrcode.food_container.pk %}">Update</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
21
apps/food/templates/food/transformed_food_form.html
Normal file
21
apps/food/templates/food/transformed_food_form.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% comment %}
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
{% endcomment %}
|
||||||
|
{% load i18n crispy_forms_tags %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="card bg-white mb-3">
|
||||||
|
<h3 class="card-header text-center">
|
||||||
|
HTML not finished <br>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
<div class="card-body" id="form">
|
||||||
|
<form method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
{{ form|crispy }}
|
||||||
|
<button class="btn btn-primary" type="submit">{% trans "Submit"%}</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
19
apps/food/templates/food/transformedfood_detail.html
Normal file
19
apps/food/templates/food/transformedfood_detail.html
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% comment %}
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
{% endcomment %}
|
||||||
|
{% load i18n crispy_forms_tags %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="card bg-white mb-3">
|
||||||
|
<h3 class="card-header text-center">
|
||||||
|
HTML not finished <br>
|
||||||
|
{{ title }}
|
||||||
|
</h3>
|
||||||
|
<div class="card-body">
|
||||||
|
<p>name : {{ food.name }}</p>
|
||||||
|
<p>owner : {{ food.owner }}</p>
|
||||||
|
<a href="{% url "food:transformed_update" pk=food.pk %}">Update</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
3
apps/food/tests.py
Normal file
3
apps/food/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
23
apps/food/urls.py
Normal file
23
apps/food/urls.py
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from django.urls import path
|
||||||
|
|
||||||
|
from . import views
|
||||||
|
|
||||||
|
app_name = 'food'
|
||||||
|
|
||||||
|
urlpatterns = [
|
||||||
|
path('<int:slug>', views.QRCodeView.as_view(), name='qrcode_view'),
|
||||||
|
path('detail/<int:pk>', views.FoodView.as_view(), name='food_view'),
|
||||||
|
|
||||||
|
path('<int:slug>/create_qrcode', views.QRCodeCreateView.as_view(), name='qrcode_create'),
|
||||||
|
path('create', views.FoodCreateView.as_view(), name='food_create'),
|
||||||
|
path('<int:slug>/create_qrcode/basic', views.QRCodeBasicFoodCreateView.as_view(), name='qrcode_basic_create'),
|
||||||
|
path('<int:slug>/create_qrcode/transformed', views.QRCodeTransformedFoodCreateView.as_view(), name='qrcode_transformed_create'),
|
||||||
|
path('create/basic', views.BasicFoodCreateView.as_view(), name='basic_create'),
|
||||||
|
path('create/transformed', views.TransformedFoodCreateView.as_view(), name='transformed_create'),
|
||||||
|
|
||||||
|
path('update/basic/<int:pk>', views.BasicFoodUpdateView.as_view(), name='basic_update'),
|
||||||
|
path('update/transformed/<int:pk>', views.TransformedFoodUpdateView.as_view(), name='transformed_update'),
|
||||||
|
]
|
251
apps/food/views.py
Normal file
251
apps/food/views.py
Normal file
@ -0,0 +1,251 @@
|
|||||||
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
from datetime import timedelta
|
||||||
|
|
||||||
|
from django.db import transaction
|
||||||
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||||
|
from django.http import HttpResponseRedirect
|
||||||
|
from django.urls import reverse
|
||||||
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
from django.utils import timezone
|
||||||
|
from django.views.generic import DetailView, UpdateView, TemplateView
|
||||||
|
from permission.views import ProtectQuerysetMixin, ProtectedCreateView
|
||||||
|
|
||||||
|
from .forms import BasicFoodForms, TransformedFoodForms
|
||||||
|
from .models import BasicFood, Food, QRCode, TransformedFood
|
||||||
|
|
||||||
|
|
||||||
|
class QRCodeView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView):
|
||||||
|
"""
|
||||||
|
A view to add a basic food
|
||||||
|
"""
|
||||||
|
model = QRCode
|
||||||
|
extra_context = {"title": _("Add a new meal")}
|
||||||
|
context_object_name = "qrcode"
|
||||||
|
slug_field = "qr_code_number"
|
||||||
|
|
||||||
|
def get(self, *args, **kwargs):
|
||||||
|
qrcode = kwargs["slug"]
|
||||||
|
if self.model.objects.filter(qr_code_number=qrcode).count() > 0:
|
||||||
|
return super().get(*args, **kwargs)
|
||||||
|
else:
|
||||||
|
return HttpResponseRedirect(reverse("food:qrcode_create", kwargs=kwargs))
|
||||||
|
|
||||||
|
|
||||||
|
class QRCodeCreateView(ProtectQuerysetMixin, LoginRequiredMixin, TemplateView):
|
||||||
|
"""
|
||||||
|
A view to add a basic food
|
||||||
|
"""
|
||||||
|
template_name = 'food/create_qrcode_form.html'
|
||||||
|
extra_context = {"title": _("Add a new aliment")}
|
||||||
|
|
||||||
|
def get_context_data(self, **kwargs):
|
||||||
|
context = super().get_context_data(**kwargs)
|
||||||
|
context["slug"] = kwargs["slug"]
|
||||||
|
return context
|
||||||
|
|
||||||
|
|
||||||
|
class FoodView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView):
|
||||||
|
"""
|
||||||
|
A view to add a basic food
|
||||||
|
"""
|
||||||
|
model = Food
|
||||||
|
extra_context = {"title": _("Add a new meal")}
|
||||||
|
context_object_name = "food"
|
||||||
|
|
||||||
|
|
||||||
|
class FoodCreateView(ProtectQuerysetMixin, LoginRequiredMixin, TemplateView):
|
||||||
|
"""
|
||||||
|
A view to add a basic food
|
||||||
|
"""
|
||||||
|
template_name = 'food/create_food_form.html'
|
||||||
|
extra_context = {"title": _("Add a new aliment")}
|
||||||
|
|
||||||
|
|
||||||
|
class BasicFoodFormView(ProtectQuerysetMixin):
|
||||||
|
#####################################################################
|
||||||
|
# TO DO
|
||||||
|
# - fix picture save
|
||||||
|
# - implement solution crop and convert image (reuse or recode ImageForm from members apps)
|
||||||
|
#####################################################################
|
||||||
|
"""
|
||||||
|
A view to add a basic food
|
||||||
|
"""
|
||||||
|
model = BasicFood
|
||||||
|
form_class = BasicFoodForms
|
||||||
|
template_name = 'food/basic_food_form.html'
|
||||||
|
extra_context = {"title": _("Add a new aliment")}
|
||||||
|
|
||||||
|
@transaction.atomic
|
||||||
|
def form_valid(self, form):
|
||||||
|
form.instance.creater = self.request.user
|
||||||
|
basic_food_form = BasicFoodForms(data=self.request.POST)
|
||||||
|
if not basic_food_form.is_valid():
|
||||||
|
return self.form_invalid(form)
|
||||||
|
|
||||||
|
# Save the aliment and the allergens associed
|
||||||
|
basic_food = form.save(commit=False)
|
||||||
|
# We assume the date of labeling and the same as the date of arrival
|
||||||
|
basic_food.arrival_date = timezone.now()
|
||||||
|
basic_food._force_save = True
|
||||||
|
basic_food.save()
|
||||||
|
basic_food.refresh_from_db()
|
||||||
|
return super().form_valid(form)
|
||||||
|
|
||||||
|
def get_success_url(self, **kwargs):
|
||||||
|
self.object.refresh_from_db()
|
||||||
|
return reverse('food:food_view', kwargs={"pk": self.object.pk})
|
||||||
|
|
||||||
|
|
||||||
|
class BasicFoodUpdateView(BasicFoodFormView, LoginRequiredMixin, UpdateView):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class BasicFoodCreateView(BasicFoodFormView, ProtectedCreateView):
|
||||||
|
def get_sample_object(self):
|
||||||
|
return BasicFood(
|
||||||
|
name="",
|
||||||
|
expiry_date=timezone.now(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class QRCodeBasicFoodCreateView(ProtectQuerysetMixin, ProtectedCreateView):
|
||||||
|
#####################################################################
|
||||||
|
# TO DO
|
||||||
|
# - fix picture save
|
||||||
|
# - implement solution crop and convert image (reuse or recode ImageForm from members apps)
|
||||||
|
#####################################################################
|
||||||
|
"""
|
||||||
|
A view to add a basic food
|
||||||
|
"""
|
||||||
|
model = BasicFood
|
||||||
|
form_class = BasicFoodForms
|
||||||
|
template_name = 'food/basic_food_form.html'
|
||||||
|
extra_context = {"title": _("Add a new aliment")}
|
||||||
|
|
||||||
|
@transaction.atomic
|
||||||
|
def form_valid(self, form):
|
||||||
|
form.instance.creater = self.request.user
|
||||||
|
basic_food_form = BasicFoodForms(data=self.request.POST)
|
||||||
|
if not basic_food_form.is_valid():
|
||||||
|
return self.form_invalid(form)
|
||||||
|
|
||||||
|
# Save the aliment and the allergens associed
|
||||||
|
basic_food = form.save(commit=False)
|
||||||
|
# We assume the date of labeling and the same as the date of arrival
|
||||||
|
basic_food.arrival_date = timezone.now()
|
||||||
|
basic_food._force_save = True
|
||||||
|
basic_food.save()
|
||||||
|
basic_food.refresh_from_db()
|
||||||
|
|
||||||
|
qrcode = QRCode()
|
||||||
|
qrcode.qr_code_number = self.kwargs['slug']
|
||||||
|
qrcode.food_container = basic_food
|
||||||
|
qrcode.save()
|
||||||
|
|
||||||
|
return super().form_valid(form)
|
||||||
|
|
||||||
|
def get_success_url(self, **kwargs):
|
||||||
|
self.object.refresh_from_db()
|
||||||
|
return reverse('food:food_view', kwargs={"pk": self.object.pk})
|
||||||
|
|
||||||
|
def get_sample_object(self):
|
||||||
|
return BasicFood(
|
||||||
|
name="",
|
||||||
|
expiry_date=timezone.now(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TransformedFoodFormView(ProtectQuerysetMixin):
|
||||||
|
#####################################################################
|
||||||
|
# TO DO
|
||||||
|
# - fix picture save
|
||||||
|
# - implement solution crop and convert image (reuse or recode ImageForm from members apps)
|
||||||
|
#####################################################################
|
||||||
|
"""
|
||||||
|
A view to add a tranformed food
|
||||||
|
"""
|
||||||
|
model = TransformedFood
|
||||||
|
template_name = 'food/transformed_food_form.html'
|
||||||
|
form_class = TransformedFoodForms
|
||||||
|
extra_context = {"title": _("Add a new meal")}
|
||||||
|
|
||||||
|
@transaction.atomic
|
||||||
|
def form_valid(self, form):
|
||||||
|
form.instance.creater = self.request.user
|
||||||
|
transformed_food_form = TransformedFoodForms(data=self.request.POST)
|
||||||
|
if not transformed_food_form.is_valid():
|
||||||
|
return self.form_invalid(form)
|
||||||
|
|
||||||
|
# Save the aliment and allergens associated
|
||||||
|
transformed_food = form.save(commit=False)
|
||||||
|
# Without microbiological analyzes, the storage time is 3 days
|
||||||
|
transformed_food.expiry_date = transformed_food.creation_date + timedelta(days=3)
|
||||||
|
transformed_food._force_save = True
|
||||||
|
transformed_food.save()
|
||||||
|
transformed_food.refresh_from_db()
|
||||||
|
return super().form_valid(form)
|
||||||
|
|
||||||
|
def get_success_url(self, **kwargs):
|
||||||
|
self.object.refresh_from_db()
|
||||||
|
return reverse('food:food_view', kwargs={"pk": self.object.pk})
|
||||||
|
|
||||||
|
|
||||||
|
class TransformedFoodUpdateView(TransformedFoodFormView, LoginRequiredMixin, UpdateView):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class TransformedFoodCreateView(TransformedFoodFormView, ProtectedCreateView):
|
||||||
|
def get_sample_object(self):
|
||||||
|
return TransformedFood(
|
||||||
|
name="",
|
||||||
|
creation_date=timezone.now(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class QRCodeTransformedFoodCreateView(ProtectQuerysetMixin, ProtectedCreateView):
|
||||||
|
#####################################################################
|
||||||
|
# TO DO
|
||||||
|
# - fix picture save
|
||||||
|
# - implement solution crop and convert image (reuse or recode ImageForm from members apps)
|
||||||
|
#####################################################################
|
||||||
|
"""
|
||||||
|
A view to add a basic food
|
||||||
|
"""
|
||||||
|
model = TransformedFood
|
||||||
|
template_name = 'food/transformed_food_form.html'
|
||||||
|
form_class = TransformedFoodForms
|
||||||
|
extra_context = {"title": _("Add a new meal")}
|
||||||
|
|
||||||
|
@transaction.atomic
|
||||||
|
def form_valid(self, form):
|
||||||
|
form.instance.creater = self.request.user
|
||||||
|
transformed_food_form = TransformedFoodForms(data=self.request.POST)
|
||||||
|
if not transformed_food_form.is_valid():
|
||||||
|
return self.form_invalid(form)
|
||||||
|
|
||||||
|
# Save the aliment and allergens associated
|
||||||
|
transformed_food = form.save(commit=False)
|
||||||
|
# Without microbiological analyzes, the storage time is 3 days
|
||||||
|
transformed_food.expiry_date = transformed_food.creation_date + timedelta(days=3)
|
||||||
|
transformed_food._force_save = True
|
||||||
|
transformed_food.save()
|
||||||
|
transformed_food.refresh_from_db()
|
||||||
|
|
||||||
|
qrcode = QRCode()
|
||||||
|
qrcode.qr_code_number = self.kwargs['slug']
|
||||||
|
qrcode.food_container = transformed_food
|
||||||
|
qrcode.save()
|
||||||
|
|
||||||
|
return super().form_valid(form)
|
||||||
|
|
||||||
|
def get_success_url(self, **kwargs):
|
||||||
|
self.object.refresh_from_db()
|
||||||
|
return reverse('food:food_view', kwargs={"pk": self.object.pk})
|
||||||
|
|
||||||
|
def get_sample_object(self):
|
||||||
|
return BasicFood(
|
||||||
|
name="",
|
||||||
|
expiry_date=timezone.now(),
|
||||||
|
)
|
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
import io
|
import io
|
||||||
|
|
||||||
from bootstrap_datepicker_plus.widgets import DatePickerInput
|
|
||||||
from PIL import Image, ImageSequence
|
from PIL import Image, ImageSequence
|
||||||
from django import forms
|
from django import forms
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
@ -14,7 +13,7 @@ from django.forms import CheckboxSelectMultiple
|
|||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from note.models import NoteSpecial, Alias
|
from note.models import NoteSpecial, Alias
|
||||||
from note_kfet.inputs import Autocomplete, AmountInput
|
from note_kfet.inputs import Autocomplete, AmountInput, DatePickerInput
|
||||||
from permission.models import PermissionMask, Role
|
from permission.models import PermissionMask, Role
|
||||||
|
|
||||||
from .models import Profile, Club, Membership
|
from .models import Profile, Club, Membership
|
||||||
@ -33,7 +32,7 @@ class UserForm(forms.ModelForm):
|
|||||||
# Django usernames can only contain letters, numbers, @, ., +, - and _.
|
# Django usernames can only contain letters, numbers, @, ., +, - and _.
|
||||||
# We want to allow users to have uncommon and unpractical usernames:
|
# We want to allow users to have uncommon and unpractical usernames:
|
||||||
# That is their problem, and we have normalized aliases for us.
|
# That is their problem, and we have normalized aliases for us.
|
||||||
return super()._get_validation_exclusions() | {"username"}
|
return super()._get_validation_exclusions() + ["username"]
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = User
|
model = User
|
||||||
|
@ -44,7 +44,7 @@ class TemplateLoggedInTests(TestCase):
|
|||||||
self.assertRedirects(response, settings.LOGIN_REDIRECT_URL, 302, 302)
|
self.assertRedirects(response, settings.LOGIN_REDIRECT_URL, 302, 302)
|
||||||
|
|
||||||
def test_logout(self):
|
def test_logout(self):
|
||||||
response = self.client.post(reverse("logout"))
|
response = self.client.get(reverse("logout"))
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
|
|
||||||
def test_admin_index(self):
|
def test_admin_index(self):
|
||||||
|
@ -13,7 +13,7 @@ def register_note_urls(router, path):
|
|||||||
router.register(path + '/note', NotePolymorphicViewSet)
|
router.register(path + '/note', NotePolymorphicViewSet)
|
||||||
router.register(path + '/alias', AliasViewSet)
|
router.register(path + '/alias', AliasViewSet)
|
||||||
router.register(path + '/trust', TrustViewSet)
|
router.register(path + '/trust', TrustViewSet)
|
||||||
router.register(path + '/consumer', ConsumerViewSet, basename="consumer")
|
router.register(path + '/consumer', ConsumerViewSet)
|
||||||
|
|
||||||
router.register(path + '/transaction/category', TemplateCategoryViewSet)
|
router.register(path + '/transaction/category', TemplateCategoryViewSet)
|
||||||
router.register(path + '/transaction/transaction', TransactionViewSet)
|
router.register(path + '/transaction/transaction', TransactionViewSet)
|
||||||
|
@ -179,10 +179,19 @@ class ConsumerViewSet(ReadOnlyProtectedModelViewSet):
|
|||||||
# We match first an alias if it is matched without normalization,
|
# We match first an alias if it is matched without normalization,
|
||||||
# then if the normalized pattern matches a normalized alias.
|
# then if the normalized pattern matches a normalized alias.
|
||||||
queryset = queryset.filter(
|
queryset = queryset.filter(
|
||||||
Q(**{f'name{suffix}': alias_prefix + alias})
|
**{f'name{suffix}': alias_prefix + alias}
|
||||||
| Q(**{f'normalized_name{suffix}': alias_prefix + Alias.normalize(alias)})
|
).union(
|
||||||
| Q(**{f'normalized_name{suffix}': alias_prefix + alias.lower()})
|
queryset.filter(
|
||||||
)
|
Q(**{f'normalized_name{suffix}': alias_prefix + Alias.normalize(alias)})
|
||||||
|
& ~Q(**{f'name{suffix}': alias_prefix + alias})
|
||||||
|
),
|
||||||
|
all=True).union(
|
||||||
|
queryset.filter(
|
||||||
|
Q(**{f'normalized_name{suffix}': alias_prefix + alias.lower()})
|
||||||
|
& ~Q(**{f'normalized_name{suffix}': alias_prefix + Alias.normalize(alias)})
|
||||||
|
& ~Q(**{f'name{suffix}': alias_prefix + alias})
|
||||||
|
),
|
||||||
|
all=True)
|
||||||
|
|
||||||
queryset = queryset if settings.DATABASES[queryset.db]["ENGINE"] == 'django.db.backends.postgresql' \
|
queryset = queryset if settings.DATABASES[queryset.db]["ENGINE"] == 'django.db.backends.postgresql' \
|
||||||
else queryset.order_by("name")
|
else queryset.order_by("name")
|
||||||
|
@ -1,15 +1,13 @@
|
|||||||
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
from bootstrap_datepicker_plus.widgets import DateTimePickerInput
|
|
||||||
from django import forms
|
from django import forms
|
||||||
from django.contrib.contenttypes.models import ContentType
|
from django.contrib.contenttypes.models import ContentType
|
||||||
from django.forms import CheckboxSelectMultiple
|
from django.forms import CheckboxSelectMultiple
|
||||||
from django.utils.timezone import make_aware
|
from django.utils.timezone import make_aware
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from note_kfet.inputs import Autocomplete, AmountInput
|
from note_kfet.inputs import Autocomplete, AmountInput, DateTimePickerInput
|
||||||
|
|
||||||
from .models import TransactionTemplate, NoteClub, Alias
|
from .models import TransactionTemplate, NoteClub, Alias
|
||||||
|
|
||||||
|
@ -18,7 +18,6 @@ def create_special_notes(apps, schema_editor):
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('note', '0001_initial'),
|
('note', '0001_initial'),
|
||||||
('logs', '0001_initial'),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
# Generated by Django 5.0.7 on 2024-07-11 09:24
|
|
||||||
|
|
||||||
import django.db.models.deletion
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('contenttypes', '0002_remove_content_type_name'),
|
|
||||||
('note', '0006_trust'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='note',
|
|
||||||
name='polymorphic_ctype',
|
|
||||||
field=models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='polymorphic_%(app_label)s.%(class)s_set+', to='contenttypes.contenttype'),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='transaction',
|
|
||||||
name='polymorphic_ctype',
|
|
||||||
field=models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='polymorphic_%(app_label)s.%(class)s_set+', to='contenttypes.contenttype'),
|
|
||||||
),
|
|
||||||
]
|
|
@ -9,7 +9,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||||||
name="{{ widget.name }}"
|
name="{{ widget.name }}"
|
||||||
{# Other attributes are loaded #}
|
{# Other attributes are loaded #}
|
||||||
{% for name, value in widget.attrs.items %}
|
{% for name, value in widget.attrs.items %}
|
||||||
{% if value != False %}{{ name }}{% if value != True %}="{{ value|stringformat:'s' }}"{% endif %}{% endif %}
|
{% ifnotequal value False %}{{ name }}{% ifnotequal value True %}="{{ value|stringformat:'s' }}"{% endifnotequal %}{% endifnotequal %}
|
||||||
{% endfor %}>
|
{% endfor %}>
|
||||||
<div class="input-group-append">
|
<div class="input-group-append">
|
||||||
<span class="input-group-text">€</span>
|
<span class="input-group-text">€</span>
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
# Generated by Django 5.0.7 on 2024-07-11 09:24
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('note', '0007_alter_note_polymorphic_ctype_and_more'),
|
|
||||||
('treasury', '0008_auto_20240322_0045'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='sogecredit',
|
|
||||||
name='transactions',
|
|
||||||
field=models.ManyToManyField(blank=True, related_name='+', to='note.membershiptransaction', verbose_name='membership transactions'),
|
|
||||||
),
|
|
||||||
]
|
|
@ -1,14 +1,13 @@
|
|||||||
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from bootstrap_datepicker_plus.widgets import DatePickerInput
|
|
||||||
from django import forms
|
from django import forms
|
||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.db.models import Q
|
from django.db.models import Q
|
||||||
from django.forms import CheckboxSelectMultiple
|
from django.forms import CheckboxSelectMultiple
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from note.models import NoteSpecial, NoteUser
|
from note.models import NoteSpecial, NoteUser
|
||||||
from note_kfet.inputs import AmountInput, Autocomplete, ColorWidget
|
from note_kfet.inputs import AmountInput, DatePickerInput, Autocomplete, ColorWidget
|
||||||
|
|
||||||
from ..models import WEIClub, WEIRegistration, Bus, BusTeam, WEIMembership, WEIRole
|
from ..models import WEIClub, WEIRegistration, Bus, BusTeam, WEIMembership, WEIRole
|
||||||
|
|
||||||
|
@ -439,7 +439,7 @@ class TestWEIRegistration(TestCase):
|
|||||||
emergency_contact_phone='+33123456789',
|
emergency_contact_phone='+33123456789',
|
||||||
))
|
))
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
self.assertTrue("This user can't be in her/his first year since he/she has already participated to a WEI."
|
self.assertTrue("This user can't be in her/his first year since he/she has already participated to a WEI."
|
||||||
in str(response.context["form"].errors))
|
in str(response.context["form"].errors))
|
||||||
|
|
||||||
# Check that if the WEI is started, we can't register anyone
|
# Check that if the WEI is started, we can't register anyone
|
||||||
@ -635,7 +635,7 @@ class TestWEIRegistration(TestCase):
|
|||||||
))
|
))
|
||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
self.assertFalse(response.context["form"].is_valid())
|
self.assertFalse(response.context["form"].is_valid())
|
||||||
self.assertTrue("This team doesn't belong to the given bus." in str(response.context["form"].errors))
|
self.assertTrue("This team doesn't belong to the given bus." in str(response.context["form"].errors))
|
||||||
|
|
||||||
response = self.client.post(reverse("wei:validate_registration", kwargs=dict(pk=self.registration.pk)), dict(
|
response = self.client.post(reverse("wei:validate_registration", kwargs=dict(pk=self.registration.pk)), dict(
|
||||||
roles=[WEIRole.objects.get(name="GC WEI").id],
|
roles=[WEIRole.objects.get(name="GC WEI").id],
|
||||||
|
@ -25,13 +25,19 @@ admin_site.register(Site, SiteAdmin)
|
|||||||
|
|
||||||
# Add external apps model
|
# Add external apps model
|
||||||
if "oauth2_provider" in settings.INSTALLED_APPS:
|
if "oauth2_provider" in settings.INSTALLED_APPS:
|
||||||
from oauth2_provider.admin import ApplicationAdmin, GrantAdmin, AccessTokenAdmin, RefreshTokenAdmin
|
from oauth2_provider.admin import Application, ApplicationAdmin, Grant, \
|
||||||
from oauth2_provider.models import Application, Grant, AccessToken, RefreshToken
|
GrantAdmin, AccessToken, AccessTokenAdmin, RefreshToken, RefreshTokenAdmin
|
||||||
admin_site.register(Application, ApplicationAdmin)
|
admin_site.register(Application, ApplicationAdmin)
|
||||||
admin_site.register(Grant, GrantAdmin)
|
admin_site.register(Grant, GrantAdmin)
|
||||||
admin_site.register(AccessToken, AccessTokenAdmin)
|
admin_site.register(AccessToken, AccessTokenAdmin)
|
||||||
admin_site.register(RefreshToken, RefreshTokenAdmin)
|
admin_site.register(RefreshToken, RefreshTokenAdmin)
|
||||||
|
|
||||||
|
if "django_htcpcp_tea" in settings.INSTALLED_APPS:
|
||||||
|
from django_htcpcp_tea.admin import *
|
||||||
|
from django_htcpcp_tea.models import *
|
||||||
|
admin_site.register(Pot, PotAdmin)
|
||||||
|
admin_site.register(TeaType, TeaTypeAdmin)
|
||||||
|
admin_site.register(Addition, AdditionAdmin)
|
||||||
|
|
||||||
if "mailer" in settings.INSTALLED_APPS:
|
if "mailer" in settings.INSTALLED_APPS:
|
||||||
from mailer.admin import *
|
from mailer.admin import *
|
||||||
@ -44,3 +50,9 @@ if "rest_framework" in settings.INSTALLED_APPS:
|
|||||||
from rest_framework.authtoken.admin import *
|
from rest_framework.authtoken.admin import *
|
||||||
from rest_framework.authtoken.models import *
|
from rest_framework.authtoken.models import *
|
||||||
admin_site.register(Token, TokenAdmin)
|
admin_site.register(Token, TokenAdmin)
|
||||||
|
|
||||||
|
if "cas_server" in settings.INSTALLED_APPS:
|
||||||
|
from cas_server.admin import *
|
||||||
|
from cas_server.models import *
|
||||||
|
admin_site.register(ServicePattern, ServicePatternAdmin)
|
||||||
|
admin_site.register(FederatedIendityProvider, FederatedIendityProviderAdmin)
|
||||||
|
@ -41,7 +41,7 @@ INSTALLED_APPS = [
|
|||||||
'bootstrap_datepicker_plus',
|
'bootstrap_datepicker_plus',
|
||||||
'colorfield',
|
'colorfield',
|
||||||
'crispy_forms',
|
'crispy_forms',
|
||||||
'crispy_bootstrap4',
|
'django_htcpcp_tea',
|
||||||
'django_tables2',
|
'django_tables2',
|
||||||
'mailer',
|
'mailer',
|
||||||
'phonenumber_field',
|
'phonenumber_field',
|
||||||
@ -77,6 +77,7 @@ INSTALLED_APPS = [
|
|||||||
'scripts',
|
'scripts',
|
||||||
'treasury',
|
'treasury',
|
||||||
'wei',
|
'wei',
|
||||||
|
'food',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
@ -90,6 +91,7 @@ MIDDLEWARE = [
|
|||||||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||||||
'django.middleware.locale.LocaleMiddleware',
|
'django.middleware.locale.LocaleMiddleware',
|
||||||
'django.contrib.sites.middleware.CurrentSiteMiddleware',
|
'django.contrib.sites.middleware.CurrentSiteMiddleware',
|
||||||
|
'django_htcpcp_tea.middleware.HTCPCPTeaMiddleware',
|
||||||
'note_kfet.middlewares.SessionMiddleware',
|
'note_kfet.middlewares.SessionMiddleware',
|
||||||
'note_kfet.middlewares.LoginByIPMiddleware',
|
'note_kfet.middlewares.LoginByIPMiddleware',
|
||||||
'note_kfet.middlewares.TurbolinksMiddleware',
|
'note_kfet.middlewares.TurbolinksMiddleware',
|
||||||
@ -294,6 +296,3 @@ PHONENUMBER_DEFAULT_REGION = 'FR'
|
|||||||
|
|
||||||
# We add custom information to CAS, in order to give a normalized name to other services
|
# We add custom information to CAS, in order to give a normalized name to other services
|
||||||
CAS_AUTH_CLASS = 'member.auth.CustomAuthUser'
|
CAS_AUTH_CLASS = 'member.auth.CustomAuthUser'
|
||||||
|
|
||||||
# Default field for primary key
|
|
||||||
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
|
|
||||||
|
@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||||||
{% if widget.value != None and widget.value != "" %}value="{{ widget.value }}"{% endif %}
|
{% if widget.value != None and widget.value != "" %}value="{{ widget.value }}"{% endif %}
|
||||||
name="{{ widget.name }}_name" autocomplete="off"
|
name="{{ widget.name }}_name" autocomplete="off"
|
||||||
{% for name, value in widget.attrs.items %}
|
{% for name, value in widget.attrs.items %}
|
||||||
{% if value != False %}{{ name }}{% if value != True %}="{{ value|stringformat:'s' }}"{% endif %}{% endif %}
|
{% ifnotequal value False %}{{ name }}{% ifnotequal value True %}="{{ value|stringformat:'s' }}"{% endifnotequal %}{% endifnotequal %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
aria-describedby="{{widget.attrs.id}}_tooltip">
|
aria-describedby="{{widget.attrs.id}}_tooltip">
|
||||||
{% if widget.resetable %}
|
{% if widget.resetable %}
|
||||||
|
@ -126,12 +126,9 @@ SPDX-License-Identifier: GPL-3.0-or-later
|
|||||||
<a class="dropdown-item" href="{% url 'member:user_detail' pk=request.user.pk %}">
|
<a class="dropdown-item" href="{% url 'member:user_detail' pk=request.user.pk %}">
|
||||||
<i class="fa fa-user"></i> {% trans "My account" %}
|
<i class="fa fa-user"></i> {% trans "My account" %}
|
||||||
</a>
|
</a>
|
||||||
<form method="post" action="{% url 'logout' %}">
|
<a class="dropdown-item" href="{% url 'logout' %}">
|
||||||
{% csrf_token %}
|
|
||||||
<button class="dropdown-item" type="submit">
|
|
||||||
<i class="fa fa-sign-out"></i> {% trans "Log out" %}
|
<i class="fa fa-sign-out"></i> {% trans "Log out" %}
|
||||||
</button>
|
</a>
|
||||||
</form>
|
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -21,6 +21,7 @@ urlpatterns = [
|
|||||||
path('activity/', include('activity.urls')),
|
path('activity/', include('activity.urls')),
|
||||||
path('treasury/', include('treasury.urls')),
|
path('treasury/', include('treasury.urls')),
|
||||||
path('wei/', include('wei.urls')),
|
path('wei/', include('wei.urls')),
|
||||||
|
path('food/',include('food.urls')),
|
||||||
|
|
||||||
# Include Django Contrib and Core routers
|
# Include Django Contrib and Core routers
|
||||||
path('i18n/', include('django.conf.urls.i18n')),
|
path('i18n/', include('django.conf.urls.i18n')),
|
||||||
@ -30,6 +31,9 @@ urlpatterns = [
|
|||||||
path('accounts/', include('django.contrib.auth.urls')),
|
path('accounts/', include('django.contrib.auth.urls')),
|
||||||
path('api/', include('api.urls')),
|
path('api/', include('api.urls')),
|
||||||
path('permission/', include('permission.urls')),
|
path('permission/', include('permission.urls')),
|
||||||
|
|
||||||
|
# Make coffee
|
||||||
|
path('coffee/', include('django_htcpcp_tea.urls')),
|
||||||
]
|
]
|
||||||
|
|
||||||
# During development, serve static and media files
|
# During development, serve static and media files
|
||||||
@ -43,6 +47,11 @@ if "oauth2_provider" in settings.INSTALLED_APPS:
|
|||||||
path('o/', include('oauth2_provider.urls', namespace='oauth2_provider'))
|
path('o/', include('oauth2_provider.urls', namespace='oauth2_provider'))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if "cas_server" in settings.INSTALLED_APPS:
|
||||||
|
urlpatterns.append(
|
||||||
|
path('cas/', include('cas_server.urls', namespace='cas_server'))
|
||||||
|
)
|
||||||
|
|
||||||
if "debug_toolbar" in settings.INSTALLED_APPS:
|
if "debug_toolbar" in settings.INSTALLED_APPS:
|
||||||
import debug_toolbar
|
import debug_toolbar
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
|
@ -1,17 +1,19 @@
|
|||||||
beautifulsoup4~=4.12.3
|
beautifulsoup4~=4.7.1
|
||||||
crispy-bootstrap4~=2024.1
|
Django~=2.2.15
|
||||||
Django~=5.0.7
|
django-bootstrap-datepicker-plus~=3.0.5
|
||||||
django-bootstrap-datepicker-plus~=5.0.5
|
django-cas-server~=1.2.0
|
||||||
django-colorfield~=0.11.0
|
django-colorfield~=0.3.2
|
||||||
django-crispy-forms~=2.2
|
django-crispy-forms~=1.7.2
|
||||||
django-extensions~=3.2.3
|
django-extensions>=2.1.4
|
||||||
django-filter~=24.2
|
django-filter~=2.1
|
||||||
django-mailer~=2.3.2
|
django-htcpcp-tea~=0.3.1
|
||||||
django-oauth-toolkit~=2.4.0
|
django-mailer~=2.0.1
|
||||||
django-phonenumber-field~=8.0.0
|
django-oauth-toolkit~=1.3.3
|
||||||
django-polymorphic~=3.1.0
|
django-phonenumber-field~=5.0.0
|
||||||
django-rest-polymorphic~=0.1.10
|
django-polymorphic>=2.0.3,<3.0.0
|
||||||
django-tables2~=2.7.0
|
djangorestframework>=3.9.0,<3.13.0
|
||||||
djangorestframework~=3.15.2
|
django-rest-polymorphic~=0.1.9
|
||||||
phonenumbers~=8.13.40
|
django-tables2~=2.3.1
|
||||||
|
python-memcached~=1.59
|
||||||
|
phonenumbers~=8.9.10
|
||||||
Pillow>=5.4.1
|
Pillow>=5.4.1
|
||||||
|
7
tox.ini
7
tox.ini
@ -1,10 +1,13 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
|
# Debian Buster Python
|
||||||
|
py37-django22
|
||||||
|
|
||||||
# Ubuntu 20.04 Python
|
# Ubuntu 20.04 Python
|
||||||
py310-django50
|
py38-django22
|
||||||
|
|
||||||
# Debian Bullseye Python
|
# Debian Bullseye Python
|
||||||
py311-django50
|
py39-django22
|
||||||
|
|
||||||
linters
|
linters
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
|
Reference in New Issue
Block a user