Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
3593 Zobrazení

Hi all 

i need to know what is the error in this code 

%for product, lines in groupby(trip.order_lines, lambda l : l.product_id.name) :
      <% qt = int(sum([l.qty for l in lines])) %>

 

i try to get the sm of all product quantity , but i didn't get it i get product and thier quantity not gruoped 
what can i do 

Avatar
Zrušit
Nejlepší odpověď

Hi,

Have you checked that your list trip.order_lines is sorted by product ?

The operation of groupby() is similar to the uniq filter in Unix. It generates a break or new group every time the value of the key function changes (which is why it is usually necessary to have sorted the data using the same key function). That behavior differs from SQL’s GROUP BY which aggregates common elements regardless of their input order.

Regards,

Jos

 

Avatar
Zrušit
Autor Nejlepší odpověď

@Jos De Graeve , tanks alot it worked fine with me 

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
0
říj 16
4063
3
říj 23
5762
2
led 23
5109
7
čvn 21
24450
1
pro 19
5982