Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
3641 Vizualizări

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 

Imagine profil
Abandonează
Cel mai bun răspuns

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

 

Imagine profil
Abandonează
Autor Cel mai bun răspuns

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

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
0
oct. 16
4114
3
oct. 23
5828
2
ian. 23
5168
7
iun. 21
24492
1
dec. 19
6028