I want to define a FILTER with the entity named Introductionfriend, filtering where paymentStatus == 'paid'.
Announcement
Collapse
No announcement yet.
How to define a FILTER ?
Collapse
X
-
In metadata > selectDefs > {EntityType}: https://docs.espocrm.com/development...erclassnamemap
In the filter, apply
PHP Code:$queryBuild->where(['paymentStatus' => 'paid']);
Comment