Skip to Content
Menu
This question has been flagged
3 Replies
10559 Views

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
Discard
Best Answer

You have to use sorted function

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

...

Avatar
Discard
Author

Thanks Esther

Best Answer

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
Discard
Related Posts Replies Views Activity
1
Dec 18
2910
1
Jan 18
5937
0
Jul 17
4765
0
May 17
2631
1
Nov 23
9404