Hello,
I have a simple aot view created. The datasource is InventTrans.
I want to filter it with StatusIssue enum field.
If I have StatusIssue field in Ranges and I type StatusIssue::Sold, the values are filtered correctly.
Now I wanted to add another filter, so I have type StatusIssue::Sold || StatusIssue::Deducted. In this case it does not show anything at all, the view is empty.
How can I do that?
So, actually this what I want to have in View:
select * from InventTrans where InventTrans.StatusIssue == StatusIssue::Sold || InventTrans.StatusIssue == StatusIssue::Deducted;