[tryton-debian-vcs] tryton-modules-account-invoice branch upstream-2.2 updated. upstream/2.2.3-1-gbe10852
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 upstream-2.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-invoice.git;a=commitdiff;h=upstream/2.2.3-1-gbe10852
commit be10852cfde9bda8f59e5d9a1438e83a4e432df2
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 12 13:35:09 2013 +0100
Adding 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