Comment 1 for bug 594139

Revision history for this message
JMA(Open ERP) (jma-openerp) wrote :

Hello Jugglefish,

We have sorting done on the basis of the 'Invoice Number'.
In invoice.py :
_name = "account.invoice"
_order = "number"

However, you can have the invoices sorted on the basis of other field(date) for example by using:
_order="date_invoice"

Hope this helps.

Thank you.