Odoo sorting group by month

Viewed 66

In the Account module, there is a group by filter by default. The group by Invoice month filter. When it is used, the invoices are grouped by month.Ascending Invoices month

The group is sorted in ascending order. Is there any way to sort it by descending order?

1 Answers

Yes, you should use order_by with the invoice_date field to do the same.

Related