From: Benoît Pin Date: Thu, 3 Oct 2013 05:38:58 +0000 (+0200) Subject: Bugfix : reduce sur une liste d'un élément provoque des effets de bords. X-Git-Url: https://scm.cri.ensmp.fr/git/photoprint.git/commitdiff_plain/1b83cf35c475d8736a960cb62e756116e99045dc Bugfix : reduce sur une liste d'un élément provoque des effets de bords. --- diff --git a/order.py b/order.py index 2948aaf..9323dd3 100755 --- a/order.py +++ b/order.py @@ -337,9 +337,10 @@ class PrintOrder(PortalContent, DefaultDublinCoreImpl) : 'PAYMENTREQUEST_0_SHIPTOPHONENUM' : self.billing['phone'], } - quantitySum = reduce(lambda a, b : a['quantity'] + b['quantity'], self.items) - priceSum = reduce(lambda a, b : a['unit_price'] * a['quantity'] + b['unit_price'] * b['quantity'], self.items) - priceValues = priceSum.getValues() + if len(self.items) > 1 : + quantitySum = reduce(lambda a, b : a['quantity'] + b['quantity'], self.items) + else : + quantitySum = self.items[0]['quantity'] total = round(self.amountWithFees.getValues()['taxed'], 2) options['L_PAYMENTREQUEST_0_NAME0'] = 'Commande realis photo ref. %s' % self.getId()