Worklist - Display expression
Submitted by sorrentovet on Mon, 04/05/2020 - 21:02
Hi there,
I'm trying to change the display expression of the worklist to include the Task Type.
This does the trick so far but I don't seem to understand how to get Task Type included:
concat(openvpms:get(., 'customer.name'),' - ',openvpms:get(., 'patient.name'), '\n', openvpms:get(., 'act.description') , ' - ', openvpms:get(.,'act.statusName'), '\n', openvpms:get(.,'clinician.name'))
Which currently shows:
***
Jane Doe - Fluffy
Remember to phone about lab results - Pending
Dr John Doe
***
What is missing is a line with the task type for example: "Lab results returned".
Is this possible?
Regards, Anton
Re: Worklist - Display expression
You need to include: openvpms:get(., 'scheduleType.name')
E.g.:
Re: Worklist - Display expression
Thanks a million!