Skip to content

Commit

Permalink
Fix Siae kind constants 'extra'
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Feb 19, 2024
1 parent 599c450 commit 1a53bd9
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lemarche/siaes/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

KIND_PARENT_HANDICAP_NAME = "Handicap"
KIND_HANDICAP_CHOICES = (
(KIND_EA, "Entreprise adaptée (EA)"),
(KIND_EATT, "Entreprise adaptée de travail temporaire (EATT)"),
(KIND_ESAT, "Etablissement et service d'aide par le travail (ESAT)"),
(KIND_EA, "Entreprise adaptée"),
(KIND_EATT, "Entreprise adaptée de travail temporaire"),
(KIND_ESAT, "Etablissement et service d'aide par le travail"),
)
KIND_HANDICAP_CHOICES_WITH_EXTRA = [(key, f"{value} ({key})") for (key, value) in KIND_HANDICAP_CHOICES]
KIND_HANDICAP_LIST = [k[0] for k in KIND_HANDICAP_CHOICES]
Expand Down
34 changes: 34 additions & 0 deletions lemarche/siaes/migrations/0071_alter_siae_kind.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by Django 4.2.9 on 2024-02-19 10:03

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("siaes", "0070_alter_siae_kind"),
]

operations = [
migrations.AlterField(
model_name="siae",
name="kind",
field=models.CharField(
choices=[
("EI", "Entreprise d'insertion (EI)"),
("AI", "Association intermédiaire (AI)"),
("ACI", "Atelier chantier d'insertion (ACI)"),
("ETTI", "Entreprise de travail temporaire d'insertion (ETTI)"),
("EITI", "Entreprise d'insertion par le travail indépendant (EITI)"),
("GEIQ", "Groupement d'employeurs pour l'insertion et la qualification (GEIQ)"),
("SEP", "Produits et services réalisés en prison (SEP)"),
("EA", "Entreprise adaptée (EA)"),
("EATT", "Entreprise adaptée de travail temporaire (EATT)"),
("ESAT", "Etablissement et service d'aide par le travail (ESAT)"),
],
db_index=True,
default="EI",
max_length=6,
verbose_name="Type de structure",
),
),
]
32 changes: 32 additions & 0 deletions lemarche/stats/migrations/0010_alter_tracker_siae_kind.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Generated by Django 4.2.9 on 2024-02-19 10:03

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("stats", "0009_alter_tracker_siae_kind"),
]

operations = [
migrations.AlterField(
model_name="tracker",
name="siae_kind",
field=models.CharField(
blank=True,
choices=[
("EI", "Entreprise d'insertion (EI)"),
("AI", "Association intermédiaire (AI)"),
("ACI", "Atelier chantier d'insertion (ACI)"),
("ETTI", "Entreprise de travail temporaire d'insertion (ETTI)"),
("EITI", "Entreprise d'insertion par le travail indépendant (EITI)"),
("GEIQ", "Groupement d'employeurs pour l'insertion et la qualification (GEIQ)"),
("SEP", "Produits et services réalisés en prison (SEP)"),
("EA", "Entreprise adaptée (EA)"),
("EATT", "Entreprise adaptée de travail temporaire (EATT)"),
("ESAT", "Etablissement et service d'aide par le travail (ESAT)"),
],
max_length=6,
),
),
]
39 changes: 39 additions & 0 deletions lemarche/tenders/migrations/0077_alter_tender_siae_kind.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Generated by Django 4.2.9 on 2024-02-19 10:03

from django.db import migrations, models

import lemarche.utils.fields


class Migration(migrations.Migration):
dependencies = [
("tenders", "0076_alter_tender_constraints"),
]

operations = [
migrations.AlterField(
model_name="tender",
name="siae_kind",
field=lemarche.utils.fields.ChoiceArrayField(
base_field=models.CharField(
choices=[
("EI", "Entreprise d'insertion"),
("AI", "Association intermédiaire"),
("ACI", "Atelier chantier d'insertion"),
("ETTI", "Entreprise de travail temporaire d'insertion"),
("EITI", "Entreprise d'insertion par le travail indépendant"),
("GEIQ", "Groupement d'employeurs pour l'insertion et la qualification"),
("SEP", "Produits et services réalisés en prison"),
("EA", "Entreprise adaptée"),
("EATT", "Entreprise adaptée de travail temporaire"),
("ESAT", "Etablissement et service d'aide par le travail"),
],
max_length=20,
),
blank=True,
default=list,
size=None,
verbose_name="Type de structure",
),
),
]

0 comments on commit 1a53bd9

Please sign in to comment.