Skip to content
Snippets Groups Projects
Commit 14c804fc authored by Benjamin - Le Filament's avatar Benjamin - Le Filament
Browse files

[UPD] states

parent 1f801d35
No related branches found
No related tags found
No related merge requests found
......@@ -45,16 +45,29 @@ class FinancialContract(models.AbstractModel):
)
state = fields.Selection(
[
("init", "Initialisation"),
("offer", "Offre"),
("proposal", "Proposition"),
("contract", "Signé"),
("done", "Terminé"),
("init", "Initialisé"),
("offer", "Accordé"),
("notified", "Notifié"),
("signed", "Signé"),
("paid", "Versé"),
("litigation", "En contentieux"),
("done", "Soldé"),
("cancel", "Annulé"),
],
string="Statut",
tracking=1,
default="init",
help="""
- Initialisé : Contrat initialisé par un correspondant financier
- Accordé : Contrat validé par le CEFN (ou CEFR si contrat régional)
- Notifié : Le contrat a été envoyé à la coop pour signature
- Signé : Le contrat est signé par la coop
- Versé : Le montant est versé à la coop
- En contentieux : Une procédure collective est en cours sur la coopérative
- Soldé : Le contrat est soldé
- Annulé : Le contrat est annulé (ex :pas de validation du CEF, notification dépassée,
contrat non signé)
"""
)
# ------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment