[tryton-debian-vcs] tryton-modules-party branch upstream-2.2 created. db83b426946a55fbbdc3e29c91b3d0a3879fd727
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:03:41 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-party.git;a=commitdiff;h=db83b426946a55fbbdc3e29c91b3d0a3879fd727
commit db83b426946a55fbbdc3e29c91b3d0a3879fd727
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sun Feb 24 19:46:17 2013 +0100
Adding upstream version 2.2.2.
diff --git a/CHANGELOG b/CHANGELOG
index c200abf..eedca7a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.2.2 - 2012-11-05
+* Bug fixes (see mercurial logs for details)
+
Version 2.2.1 - 2011-12-26
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index d4db09d..77b44ee 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2011 Cédric Krier.
+Copyright (C) 2008-2012 Cédric Krier.
Copyright (C) 2008-2011 Bertrand Chenal.
-Copyright (C) 2008-2011 B2CK SPRL.
+Copyright (C) 2008-2012 B2CK SPRL.
Copyright (C) 2008-2011 Udo Spallek.
Copyright (C) 2008-2011 Korbinian Preisler.
Copyright (C) 2008-2011 virtual things.
diff --git a/PKG-INFO b/PKG-INFO
index 949e835..0c48eaf 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_party
-Version: 2.2.1
+Version: 2.2.2
Summary: Define parties, addresses and co.
Home-page: http://www.tryton.org/
Author: B2CK
diff --git a/__tryton__.py b/__tryton__.py
index 6e2fc81..0302f0a 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -10,7 +10,7 @@
'name_fr_FR': 'Tiers',
'name_nl_NL': 'Relaties',
'name_ru_RU': 'Контрагенты',
- 'version' : '2.2.1',
+ 'version': '2.2.2',
'author' : 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/party.py b/party.py
index d5a3395..18a58d9 100644
--- a/party.py
+++ b/party.py
@@ -186,11 +186,11 @@ class Party(ModelSQL, ModelView):
return new_ids
def search_rec_name(self, name, clause):
- ids = self.search([('code',) + clause[1:]], order=[])
+ ids = self.search([('code',) + tuple(clause[1:])], order=[])
if ids:
- ids += self.search([('name',) + clause[1:]], order=[])
+ ids += self.search([('name',) + tuple(clause[1:])], order=[])
return [('id', 'in', ids)]
- return [('name',) + clause[1:]]
+ return [('name',) + tuple(clause[1:])]
def address_get(self, party_id, type=None):
"""
diff --git a/trytond_party.egg-info/PKG-INFO b/trytond_party.egg-info/PKG-INFO
index 778dba3..12d15e2 100644
--- a/trytond_party.egg-info/PKG-INFO
+++ b/trytond_party.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-party
-Version: 2.2.1
+Version: 2.2.2
Summary: Define parties, addresses and co.
Home-page: http://www.tryton.org/
Author: B2CK
--
tryton-modules-party
More information about the tryton-debian-vcs
mailing list