From: Benoît Pin Date: Mon, 1 Sep 2014 15:24:45 +0000 (+0200) Subject: Bugfix : reduce non homogène. X-Git-Url: https://scm.cri.ensmp.fr/git/photoprint.git/commitdiff_plain/221f5fb59b37184372ba78fc765925758f5c0579?ds=sidebyside Bugfix : reduce non homogène. --- diff --git a/order.py b/order.py index 66d17fa..db19cc0 100755 --- a/order.py +++ b/order.py @@ -337,12 +337,12 @@ class PrintOrder(PortalContent, DefaultDublinCoreImpl) : } if len(self.items) > 1 : - quantitySum = reduce(lambda a, b : a['quantity'] + b['quantity'], self.items) + quantitySum = reduce(lambda a, b : a + b, [item['quantity'] for item in 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() + options['L_PAYMENTREQUEST_0_NAME0'] = 'Commande photo ref. %s' % self.getId() if quantitySum == 1 : options['L_PAYMENTREQUEST_0_DESC0'] = "Commande d'un tirage photographique" else :