hello,
is there a way to set group_operator as SUM(DISTINCT column) in reporting :
I have the following view :
```
SELECT
sale_id,
COUNT( product_id),
SUM(DISTINCT sale_qty) sale_qty ,
SUM(delivered_qty) deliveryed_qty
FROM sale_delivery
WHERE sale_id=3063
GROUP BY sale_id
```