Hi folks,
when I define filters in my xml view like:
<filter name="group_latest" string="Latest" domain="[('date', '>=', time.strftime('%Y-%m-%d'))]"/>
<filter name="lat_north" string="Nördl. Hem" domain="[('geoip_latitude', '>=', 0)]"/>
and I use them both in my view they are joined by OR. But I want them to be exclusive, joined by AND so first filter is applied AND ALSO the second filter is applied on the results of the first filter.
Is this possible?