[tryton-debian-vcs] tryton-modules-purchase branch debian-jessie-3.4 updated. debian/3.4.1-1-4-g68ece98

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


The following commit has been merged in the debian-jessie-3.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-purchase.git;a=commitdiff;h=debian/3.4.1-1-4-g68ece98

commit 68ece981fbbba3c6f6cc3e764e501cae544176ea
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Dec 23 15:22:05 2015 +0100

    Releasing debian version 3.4.2-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index a4011aa..6cd4402 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+tryton-modules-purchase (3.4.2-1) unstable; urgency=medium
+
+  * Wrapping and sorting control files (wrap-and-sort -bts).
+  * Setting the branch in the watch file to the fixed version 3.4.
+  * Merging upstream version 3.4.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 23 Dec 2015 15:22:05 +0100
+
 tryton-modules-purchase (3.4.1-1) unstable; urgency=medium
 
   * Adding actual upstream signing key.
commit 809ac28fd948542c8b6c73c8b6b9bccb7647c8fd
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Dec 23 15:22:04 2015 +0100

    Merging upstream version 3.4.2.

diff --git a/CHANGELOG b/CHANGELOG
index bca2d1b..6773968 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.2 - 2015-12-22
+* Bug fixes (see mercurial logs for details)
+
 Version 3.4.1 - 2015-02-21
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 9e0f509..fdb1942 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_purchase
-Version: 3.4.1
+Version: 3.4.2
 Summary: Tryton module for purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/purchase.py b/purchase.py
index 02ad88c..2c70b55 100644
--- a/purchase.py
+++ b/purchase.py
@@ -761,7 +761,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()
 
         Invoice.update_taxes([invoice])
diff --git a/tryton.cfg b/tryton.cfg
index d735d64..98d1f1d 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.4.1
+version=3.4.2
 depends:
     account
     account_invoice
diff --git a/trytond_purchase.egg-info/PKG-INFO b/trytond_purchase.egg-info/PKG-INFO
index 6bf3106..65e07dd 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: 3.4.1
+Version: 3.4.2
 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