[tryton-debian-vcs] tryton-modules-account-invoice branch debian-jessie-2.8 updated. debian/2.8.3-1-3-g098df79
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 11 18:08:52 UTC 2013
The following commit has been merged in the debian-jessie-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-invoice.git;a=commitdiff;h=debian/2.8.3-1-3-g098df79
commit 098df7933488fa27ff7ff6651ef4f7ce94f4c50b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:08:13 2013 +0100
Releasing debian version 2.8.4-1.
diff --git a/debian/changelog b/debian/changelog
index 95a7a50..5e2b248 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-account-invoice (2.8.4-1) unstable; urgency=low
+
+ * Fixing the branch version in the watch file.
+ * Merging upstream version 2.8.4.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 11 Dec 2013 18:41:18 +0100
+
tryton-modules-account-invoice (2.8.3-1) unstable; urgency=low
* Merging upstream version 2.8.3.
commit b858a1c535e3ff853279b97e02448221881c96db
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 18:28:05 2013 +0100
Merging upstream version 2.8.4.
diff --git a/CHANGELOG b/CHANGELOG
index 3e34733..2c504dc 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.4 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
Version 2.8.3 - 2013-10-01
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 922a3c9..b520ed3 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_invoice
-Version: 2.8.3
+Version: 2.8.4
Summary: Tryton module for invoicing
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/invoice.py b/invoice.py
index f89741c..aee6213 100644
--- a/invoice.py
+++ b/invoice.py
@@ -941,12 +941,12 @@ class Invoice(Workflow, ModelSQL, ModelView):
@classmethod
def search_rec_name(cls, name, clause):
invoices = cls.search(['OR',
- ('number',) + clause[1:],
- ('reference',) + clause[1:],
+ ('number',) + tuple(clause[1:]),
+ ('reference',) + tuple(clause[1:]),
], order=[])
if invoices:
return [('id', 'in', [i.id for i in invoices])]
- return [('party',) + clause[1:]]
+ return [('party',) + tuple(clause[1:])]
@classmethod
def delete(cls, invoices):
diff --git a/tryton.cfg b/tryton.cfg
index 2917ed3..151630f 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.8.3
+version=2.8.4
depends:
account
account_product
diff --git a/trytond_account_invoice.egg-info/PKG-INFO b/trytond_account_invoice.egg-info/PKG-INFO
index 0c49010..2930b74 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.8.3
+Version: 2.8.4
Summary: Tryton module for invoicing
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-account-invoice
More information about the tryton-debian-vcs
mailing list