[tryton-debian-vcs] tryton-modules-purchase branch debian-jessie-3.4 updated. debian/3.4.3-1-2-gf8f354d
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Tue Jul 12 13:05:12 UTC 2016
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.3-1-2-gf8f354d
commit f8f354d328b379e730b74cacfe4e376ec4cf3d8b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Jul 11 20:27:25 2016 +0200
Releasing debian version 3.4.4-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 19612af..0447b59 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-purchase (3.4.4-1) unstable; urgency=medium
+
+ * Merging upstream version 3.4.4.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Mon, 11 Jul 2016 20:27:25 +0200
+
tryton-modules-purchase (3.4.3-1) unstable; urgency=medium
* Updating signing-key.asc with the actual upstream maintainer keys.
commit 11773efefb382277fd7e0d26887fb85efb7d23a5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Mon Jul 11 20:27:25 2016 +0200
Merging upstream version 3.4.4.
diff --git a/CHANGELOG b/CHANGELOG
index 7323ba2..6b17ad6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.4 - 2016-07-05
+* Bug fixes (see mercurial logs for details)
+
Version 3.4.3 - 2016-04-06
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 41bddee..700d4dd 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_purchase
-Version: 3.4.3
+Version: 3.4.4
Summary: Tryton module for purchase
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/purchase.py b/purchase.py
index 93e679a..21c1dd0 100644
--- a/purchase.py
+++ b/purchase.py
@@ -282,10 +282,10 @@ class Purchase(Workflow, ModelSQL, ModelView):
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 != None)
diff --git a/tryton.cfg b/tryton.cfg
index 80dccff..aa82345 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.4.3
+version=3.4.4
depends:
account
account_invoice
diff --git a/trytond_purchase.egg-info/PKG-INFO b/trytond_purchase.egg-info/PKG-INFO
index 5131917..82ef36d 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.3
+Version: 3.4.4
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