Skip to content

Commit

Permalink
refactor(Besoins): Augmentation de la limite à 6 structures intéressé…
Browse files Browse the repository at this point in the history
…es (#1171)
  • Loading branch information
SebastienReuiller authored Apr 29, 2024
1 parent 6b6cf08 commit 0c57f8a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.9 on 2024-04-26 09:59

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("tenders", "0085_alter_tender_external_link_alter_tendersiae_source"),
]

operations = [
migrations.AlterField(
model_name="tender",
name="limit_nb_siae_interested",
field=models.PositiveSmallIntegerField(
default=6, help_text="Champ renseigné par un ADMIN", verbose_name="Limite des SIAES intéressées"
),
),
]
2 changes: 1 addition & 1 deletion lemarche/tenders/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ class Tender(models.Model):
limit_nb_siae_interested = models.PositiveSmallIntegerField(
verbose_name="Limite des SIAES intéressées",
help_text=ADMIN_FIELD_HELP_TEXT,
default=5,
default=6,
)
# partner data
partner_approch_id = models.IntegerField("Partenaire APProch : ID", blank=True, null=True)
Expand Down

0 comments on commit 0c57f8a

Please sign in to comment.