Worklist - Display expression

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

 

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Re: Worklist - Display expression

You need to include: openvpms:get(., 'scheduleType.name')

E.g.:

concat(openvpms:get(., 'customer.name'),' - ', openvpms:get(., 'patient.name'), '\n', 
       openvpms:get(., 'act.description') , ' - ', openvpms:get(.,'act.statusName'), '\n', 
       openvpms:get(.,'clinician.name'), '\n', 
       openvpms:get(., 'scheduleType.name'))

Re: Worklist - Display expression

Thanks a million!

Syndicate content