[tryton-debian-vcs] tryton-modules-purchase branch upstream-2.8 updated. upstream/2.8.5-1-g08a72ba

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Dec 23 16:53:46 UTC 2015


The following commit has been merged in the upstream-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-purchase.git;a=commitdiff;h=upstream/2.8.5-1-g08a72ba

commit 08a72ba9d35575207ec31b9bd63160d618757240
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Dec 23 15:18:52 2015 +0100

    Adding upstream version 2.8.6.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index d666d82..a7e1dc4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.6 - 2015-12-22
+* Bug fixes (see mercurial logs for details)
+
 Version 2.8.5 - 2015-02-21
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 2a0235b..7a24f18 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_purchase
-Version: 2.8.5
+Version: 2.8.6
 Summary: Tryton module for purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/purchase.py b/purchase.py
index 60234af..edb2c91 100644
--- a/purchase.py
+++ b/purchase.py
@@ -632,7 +632,9 @@ class Purchase(Workflow, ModelSQL, ModelView):
             return
 
         invoice = self._get_invoice_purchase(invoice_type)
-        invoice.lines = list(chain.from_iterable(invoice_lines.itervalues()))
+        invoice.lines = 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 a5d06f4..244f81d 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.8.5
+version=2.8.6
 depends:
     account
     account_invoice
diff --git a/trytond_purchase.egg-info/PKG-INFO b/trytond_purchase.egg-info/PKG-INFO
index e9ec0cc..642a380 100644
--- a/trytond_purchase.egg-info/PKG-INFO
+++ b/trytond_purchase.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-purchase
-Version: 2.8.5
+Version: 2.8.6
 Summary: Tryton module for purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-purchase



More information about the tryton-debian-vcs mailing list