跳至內容
選單
此問題已被標幟
2 回覆
3656 瀏覽次數

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 

頭像
捨棄
最佳答案

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

 

頭像
捨棄
作者 最佳答案

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

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
10月 16
4135
3
10月 23
5836
2
1月 23
5185
7
6月 21
24528
1
12月 19
6041