[tryton-debian-vcs] tryton-modules-account-invoice branch debian-wheezy-2.2 updated. debian/2.2.3-1-2-gfa60b5a
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Dec 12 12:57:22 UTC 2013
The following commit has been merged in the debian-wheezy-2.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-invoice.git;a=commitdiff;h=debian/2.2.3-1-2-gfa60b5a
commit fa60b5ad51cbd7aa91cffb32208e77c1a0e6233c
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 12 13:56:57 2013 +0100
Releasing debian version 2.2.4-1.
diff --git a/debian/changelog b/debian/changelog
index d78c320..19fffd2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-account-invoice (2.2.4-1) unstable; urgency=low
+
+ * Merging upstream version 2.2.4.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Thu, 12 Dec 2013 13:40:26 +0100
+
tryton-modules-account-invoice (2.2.3-1) unstable; urgency=low
* Merging upstream version 2.2.3.
commit a2c2a45ce594e97a5d8f30e224800e9a37866df9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 12 13:35:10 2013 +0100
Merging upstream version 2.2.4.
diff --git a/CHANGELOG b/CHANGELOG
index 49f0fb1..1abe14d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.2.4 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
Version 2.2.3 - 2013-05-02
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index c6da85c..a3b8e9d 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_invoice
-Version: 2.2.3
+Version: 2.2.4
Summary: Financial and Accounting Module with:
- Payment Term
- Invoice / Credit Note
diff --git a/__tryton__.py b/__tryton__.py
index 90c134e..41b080e 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -8,7 +8,7 @@
'name_es_ES': 'Facturación',
'name_fr_FR': 'Facturation',
'name_nl_NL': 'Facturatie',
- 'version': '2.2.3',
+ 'version': '2.2.4',
'author': 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/invoice.py b/invoice.py
index a8bda5c..09667b5 100644
--- a/invoice.py
+++ b/invoice.py
@@ -934,12 +934,12 @@ class Invoice(ModelWorkflow, ModelSQL, ModelView):
def search_rec_name(self, name, clause):
ids = self.search(['OR',
- ('number',) + clause[1:],
- ('reference',) + clause[1:],
+ ('number',) + tuple(clause[1:]),
+ ('reference',) + tuple(clause[1:]),
], order=[])
if ids:
return [('id', 'in', ids)]
- return [('party',) + clause[1:]]
+ return [('party',) + tuple(clause[1:])]
def delete(self, ids):
if not ids:
diff --git a/trytond_account_invoice.egg-info/PKG-INFO b/trytond_account_invoice.egg-info/PKG-INFO
index 537feff..cd480f9 100644
--- a/trytond_account_invoice.egg-info/PKG-INFO
+++ b/trytond_account_invoice.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-invoice
-Version: 2.2.3
+Version: 2.2.4
Summary: Financial and Accounting Module with:
- Payment Term
- Invoice / Credit Note
--
tryton-modules-account-invoice
More information about the tryton-debian-vcs
mailing list