I want to define a FILTER with the entity named Introductionfriend, filtering where paymentStatus == 'paid'.
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']);
If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.
Comment