소스 검색

Basket weight takes line quantity into account

master
Paweł Kowalski 13 년 전
부모
커밋
516615b543
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      oscar/apps/shipping/__init__.py

+ 1
- 1
oscar/apps/shipping/__init__.py 파일 보기

@@ -23,6 +23,6 @@ class Scales(object):
23 23
     def weigh_basket(self, basket):
24 24
         weight = 0.0
25 25
         for line in basket.lines.all():
26
-            weight += self.weigh_product(line.product)
26
+            weight += self.weigh_product(line.product) * line.quantity
27 27
         return weight
28 28
 

Loading…
취소
저장