Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Admin : Lecture seule pour les champs siret, convention et auth_email quand l'entreprise vient du flux IAE #4820

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions itou/companies/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ def get_readonly_fields(self, request, obj=None):
]
if obj:
readonly_fields.append("kind")
if obj.source == models.Company.SOURCE_ASP:
readonly_fields.extend(["siret", "convention", "auth_email"])
return readonly_fields

def save_model(self, request, obj, form, change):
Expand Down