Revision 2a03cc83
Added by Mikaël Ates about 10 years ago
calebasse/dossiers/models.py | ||
---|---|---|
444 | 444 |
related_name='mdph_requests_of') |
445 | 445 |
mdph_responses = models.ManyToManyField('ressources.MDPHResponse', |
446 | 446 |
related_name='mdph_responses_of') |
447 |
addresses_contacts_comment = models.TextField(verbose_name=u"Commentaire sur les adresses et contacts", |
|
448 |
null=True, blank=True, default=None) |
|
447 | 449 |
|
448 | 450 |
# Physiology and health data |
449 | 451 |
size = models.DecimalField(verbose_name=u"Taille (cm)", max_digits=5, decimal_places=1, |
... | ... | |
1063 | 1065 |
|
1064 | 1066 |
PatientRecord.DEFICIENCY_FIELDS = [field for field in PatientRecord._meta.get_all_field_names() if field.startswith('deficiency_')] |
1065 | 1067 |
PatientRecord.MISES_FIELDS = [field for field in PatientRecord._meta.get_all_field_names() if field.startswith('mises_')] |
1066 |
|
Also available in: Unified diff
dossiers: add a new comment field of PatientRecord for the comment of addresses and contacts tab.