Mercurial > hgweb > health
changeset 5200:bd882b15f7ec
Fix bug #62777: The term health prof used for both initiating and signing professional in patient evaluation
| author | Luis Falcon <falcon@gnuhealth.org> |
|---|---|
| date | Sat, 16 Jul 2022 18:40:45 +0100 |
| parents | fde665b93400 |
| children | 0177854f03d6 |
| files | tryton/health/health.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tryton/health/health.py +++ b/tryton/health/health.py @@ -4519,7 +4519,7 @@ user_id = fields.Many2One('res.user', 'Last Changed by', readonly=True) healthprof = fields.Many2One( - 'gnuhealth.healthprofessional', 'Health Prof', + 'gnuhealth.healthprofessional', 'Initiated by', help="Health professional that initiates the evaluation." "This health professional might or might not be the same that" " signs and finishes the evaluation." @@ -4527,7 +4527,7 @@ ", when it becomes read-only", readonly=True) signed_by = fields.Many2One( - 'gnuhealth.healthprofessional', 'Health Prof', readonly=True, + 'gnuhealth.healthprofessional', 'Signed by', readonly=True, states={'invisible': Equal(Eval('state'), 'in_progress')}, help="Health Professional that finished the patient evaluation")
