[tryton-debian-vcs] tryton-modules-purchase branch debian-stretch-3.6 updated. debian/3.6.0-1-6-g5a7792f
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-stretch-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-purchase.git;a=commitdiff;h=debian/3.6.0-1-6-g5a7792f
commit 5a7792fd382d59e291a0ca047a32a9ed2ff3217d
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 23 15:23:12 2015 +0100
Releasing debian version 3.6.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 0cd1a41..76f277f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+tryton-modules-purchase (3.6.1-1) unstable; urgency=medium
+
+ * Updating year of debian copyright.
+ * Adapting section naming in gbp.conf to current git-buildpackage.
+ * Improving description why we can not run the module test suites.
+ * Setting the branch in the watch file to the fixed version 3.6.
+ * Merging upstream version 3.6.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 23 Dec 2015 15:23:12 +0100
+
tryton-modules-purchase (3.6.0-1) unstable; urgency=medium
* Wrapping and sorting control files (wrap-and-sort -bts).
commit 2c8640cd8ae85ea6a5833516da215cd3e1ab40ab
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 23 15:23:11 2015 +0100
Merging upstream version 3.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index eac7ed7..a402e24 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2015-12-22
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.0 - 2015-04-20
* Bug fixes (see mercurial logs for details)
* Add support for PyPy
diff --git a/PKG-INFO b/PKG-INFO
index 47c8c1d..d526235 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_purchase
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module for purchase
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/purchase.py b/purchase.py
index 3b2a76e..86a6134 100644
--- a/purchase.py
+++ b/purchase.py
@@ -711,7 +711,9 @@ class Purchase(Workflow, ModelSQL, ModelView, TaxableMixin):
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 33b8d6b..db32489 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.0
+version=3.6.1
depends:
account
account_invoice
diff --git a/trytond_purchase.egg-info/PKG-INFO b/trytond_purchase.egg-info/PKG-INFO
index d47c147..5ba831a 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.6.0
+Version: 3.6.1
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