[tryton-debian-vcs] tryton-modules-account-statement branch upstream-3.4 updated. upstream/3.4.1-1-g121f6a4
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Sep 4 16:56:15 UTC 2016
The following commit has been merged in the upstream-3.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-statement.git;a=commitdiff;h=upstream/3.4.1-1-g121f6a4
commit 121f6a4b43e6491350cad843c309b27bae89331e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Sep 3 20:55:21 2016 +0200
Adding upstream version 3.4.2.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 222fc4c..519fe73 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.2 - 2016-09-03
+* Bug fixes (see mercurial logs for details)
+
Version 3.4.1 - 2015-03-01
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index 3a28212..48f96af 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2015 Cédric Krier.
+Copyright (C) 2008-2016 Cédric Krier.
Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2015 B2CK SPRL.
+Copyright (C) 2008-2016 B2CK SPRL.
Copyright (C) 2004-2008 Tiny SPRL.
This program is free software: you can redistribute it and/or modify
diff --git a/PKG-INFO b/PKG-INFO
index c32e357..915b895 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_statement
-Version: 3.4.1
+Version: 3.4.2
Summary: Tryton module with account statements
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/statement.py b/statement.py
index 39bd11a..51fa3b9 100644
--- a/statement.py
+++ b/statement.py
@@ -461,7 +461,7 @@ class Line(ModelSQL, ModelView):
invoice = fields.Many2One('account.invoice', 'Invoice',
domain=[
If(Bool(Eval('party')), [('party', '=', Eval('party'))], []),
- If(Bool(Eval('party')), [('account', '=', Eval('account'))], []),
+ If(Bool(Eval('account')), [('account', '=', Eval('account'))], []),
If(Eval('_parent_statement', {}).get('state') == 'draft',
('state', '=', 'posted'),
('state', '!=', '')),
diff --git a/tryton.cfg b/tryton.cfg
index b426c98..c478905 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.4.1
+version=3.4.2
depends:
account
account_invoice
diff --git a/trytond_account_statement.egg-info/PKG-INFO b/trytond_account_statement.egg-info/PKG-INFO
index 55b11bc..51e669f 100644
--- a/trytond_account_statement.egg-info/PKG-INFO
+++ b/trytond_account_statement.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-statement
-Version: 3.4.1
+Version: 3.4.2
Summary: Tryton module with account statements
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_account_statement.egg-info/requires.txt b/trytond_account_statement.egg-info/requires.txt
index 08bc460..20ec233 100644
--- a/trytond_account_statement.egg-info/requires.txt
+++ b/trytond_account_statement.egg-info/requires.txt
@@ -4,4 +4,4 @@ trytond_company >= 3.4, < 3.5
trytond_currency >= 3.4, < 3.5
trytond_party >= 3.4, < 3.5
trytond >= 3.4, < 3.5
-python-sql
\ No newline at end of file
+python-sql
--
tryton-modules-account-statement
More information about the tryton-debian-vcs
mailing list