Skip to Content
Menú
This question has been flagged
1 Respondre
4567 Vistes

I'm trying to show the report lines orderred by two values, maturity_date and amount, how can i achieve it.

i'm doing

<tr t-foreach="o.line_ids.sorted(key=lambda b: b.ml_maturity_date )" t-as="line">

to order by maturity_date,

how can i add amount so it gets ordered first by maturity_date and those result also for amount.

Kind regards,


Avatar
Descartar
Best Answer

Try it:

<tr t-foreach="o.line_ids.sorted(key=lambda b: (b.ml_maturity_date, b.another_param))" t-as="line">

Avatar
Descartar
Autor

Thanks, it works!

Related Posts Respostes Vistes Activitat
4
de maig 23
10830
1
de gen. 19
9804
0
d’oct. 17
3614
0
de nov. 16
2875
0
d’oct. 16
5129