[tryton-debian-vcs] tryton-modules-purchase branch upstream-3.6 updated. upstream/3.6.2-1-gd709beb
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Tue Jul 12 13:05:13 UTC 2016
The following commit has been merged in the upstream-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-purchase.git;a=commitdiff;h=upstream/3.6.2-1-gd709beb
commit d709beb02bc0c4cd5db7f7e26e54bf0ab0f1c765
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Jul 11 20:28:37 2016 +0200
Adding upstream version 3.6.3.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index a136673..176b425 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.3 - 2016-07-05
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.2 - 2016-04-06
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index bc7acde..6f88531 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_purchase
-Version: 3.6.2
+Version: 3.6.3
Summary: Tryton module for purchase
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/purchase.py b/purchase.py
index d2e7d91..442213f 100644
--- a/purchase.py
+++ b/purchase.py
@@ -288,10 +288,10 @@ class Purchase(Workflow, ModelSQL, ModelView, TaxableMixin):
condition=purchase_line.purchase == sql_table.id
).join(invoice_line, 'LEFT',
condition=(invoice_line.origin ==
- Concat(PurchaseLine.__name__, purchase_line.id))
+ Concat(PurchaseLine.__name__ + ',', purchase_line.id))
).join(move, 'LEFT',
- condition=(move.origin == Concat(PurchaseLine.__name__,
- purchase_line.id))
+ condition=(move.origin == Concat(
+ PurchaseLine.__name__ + ',', purchase_line.id))
).select(sql_table.id,
where=((sql_table.state == 'confirmed')
& ((invoice_line.id != Null)
diff --git a/tryton.cfg b/tryton.cfg
index 5672395..da87313 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.2
+version=3.6.3
depends:
account
account_invoice
diff --git a/trytond_purchase.egg-info/PKG-INFO b/trytond_purchase.egg-info/PKG-INFO
index 1a19917..ee9c78d 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.2
+Version: 3.6.3
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