Hello.
I have simple relation in CRM:
I have Orders instance, where have relation to Manager instance.
Orders fields:
Title, Manager(relation)
(Example: Title: Test title, Manager: John)
Manager fields:
Name, Email
(Example: Name: John, Email: email@example.com)
I have a list of orders. It's a simple standard table where I have this columns:
ID|Order title|Manager
1 | Test title | John
What I need is to output not only name of manager, but and his email in this orders list:
ID|Order title|Manager
1 | Test title | John (email@example.com)
What is the best solution to output not only Name, but and other relation fields in table, in my case email?
I have simple relation in CRM:
I have Orders instance, where have relation to Manager instance.
Orders fields:
Title, Manager(relation)
(Example: Title: Test title, Manager: John)
Manager fields:
Name, Email
(Example: Name: John, Email: email@example.com)
I have a list of orders. It's a simple standard table where I have this columns:
ID|Order title|Manager
1 | Test title | John
What I need is to output not only name of manager, but and his email in this orders list:
ID|Order title|Manager
1 | Test title | John (email@example.com)
What is the best solution to output not only Name, but and other relation fields in table, in my case email?
Comment