[tryton-debian-vcs] tryton-modules-sale branch debian-jessie-3.2 updated. debian/3.2.4-1-2-g307a6c6
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 23 16:54:00 UTC 2015
The following commit has been merged in the debian-jessie-3.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale.git;a=commitdiff;h=debian/3.2.4-1-2-g307a6c6
commit 307a6c64e4745464411a19e37e19996cdcac5810
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 23 14:34:22 2015 +0100
Releasing debian version 3.2.5-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index f5c170c..ed6308b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-sale (3.2.5-1) unstable; urgency=medium
+
+ * Merging upstream version 3.2.5.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 23 Dec 2015 14:34:22 +0100
+
tryton-modules-sale (3.2.4-1) unstable; urgency=medium
* Merging upstream version 3.2.4.
commit 6c77f03b592ef939d52541a4fa6c158a9ec0c35e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 23 14:34:21 2015 +0100
Merging upstream version 3.2.5.
diff --git a/CHANGELOG b/CHANGELOG
index 0c412e2..b9993ef 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.5 - 2015-12-22
+* Bug fixes (see mercurial logs for details)
+
Version 3.2.4 - 2015-09-13
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index c1339fe..5563585 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_sale
-Version: 3.2.4
+Version: 3.2.5
Summary: Tryton module for sale
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/sale.py b/sale.py
index 374bf1b..cfb832b 100644
--- a/sale.py
+++ b/sale.py
@@ -768,7 +768,8 @@ class Sale(Workflow, ModelSQL, ModelView):
invoice = self._get_invoice_sale(invoice_type)
invoice.lines = ((list(invoice.lines)
if hasattr(invoice, 'lines') else [])
- + list(chain.from_iterable(invoice_lines.itervalues())))
+ + list(chain.from_iterable(invoice_lines[l.id] for l in self.lines
+ if l.id in invoice_lines)))
invoice.save()
with Transaction().set_user(0, set_context=True):
diff --git a/tryton.cfg b/tryton.cfg
index f03fda5..438bf27 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.2.4
+version=3.2.5
depends:
account
account_invoice
diff --git a/trytond_sale.egg-info/PKG-INFO b/trytond_sale.egg-info/PKG-INFO
index 5db3a87..08a8fe5 100644
--- a/trytond_sale.egg-info/PKG-INFO
+++ b/trytond_sale.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-sale
-Version: 3.2.4
+Version: 3.2.5
Summary: Tryton module for sale
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-sale
More information about the tryton-debian-vcs
mailing list