Ir al contenido
Menú
Se marcó esta pregunta
3 Respuestas
10506 Vistas

For example, I have a custom sale order report.
Notes

description                     currency             Amount

basic computer             AED                  23500

Processor core              AED                 2100

Computer Case            AED                  25


i created the record in this order. But i want the records in 

description                     currency             Amount

computer case            AED                     25

Processor core              AED                   2100

Base Computer             AED                  23500


Notes

How to arrange the record in this order.Thanks in advance


      

Avatar
Descartar
Mejor respuesta

You have to use sorted function

.sorted(key=lambda a:(a.create_date))

...

Avatar
Descartar
Autor

Thanks Esther

Mejor respuesta

Following the Esther Martín steps:


<t t-set="tax_line_ids_sorted" t-value="o.tax_line_ids.sorted(key=lambda a:(a.tax_id.amount))"/>
<t t-foreach="tax_line_ids_sorted" t-as="tax_line">
     ...
</t> 


Jose Carlos Ramos Carmenates

Up3 Group



Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
dic 18
2875
1
ene 18
5899
0
jul 17
4724
0
may 17
2595
1
nov 23
9366