[tryton-debian-vcs] tryton-modules-account branch upstream updated. upstream/3.0.0-1-gb254bdb

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Dec 11 13:46:29 UTC 2013


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account.git;a=commitdiff;h=upstream/3.0.0-1-gb254bdb

commit b254bdbcbe3b25e56e6e99c6cd60adfe7caed07e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Dec 11 12:57:39 2013 +0100

    Adding upstream version 3.0.1.

diff --git a/CHANGELOG b/CHANGELOG
index ef0a877..7c18b30 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.0.1 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
 Version 3.0.0 - 2013-10-21
 * Bug fixes (see mercurial logs for details)
 * Add balance non-deferral wizard
diff --git a/PKG-INFO b/PKG-INFO
index f43f5cd..a192347 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_account
-Version: 3.0.0
+Version: 3.0.1
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/move.py b/move.py
index 1945302..4e23126 100644
--- a/move.py
+++ b/move.py
@@ -1127,9 +1127,9 @@ class Line(ModelSQL, ModelView):
                 return ((table.state != 'draft')
                     & table.move.in_(
                             move.select(move.id,
-                                where=period.in_(
+                                where=move.period.in_(
                                     Transaction().context['periods'])
-                                & move.state == 'posted')),
+                                & (move.state == 'posted'))),
                     fiscalyear_ids)
             else:
                 return ((table.state != 'draft')
@@ -1155,7 +1155,7 @@ class Line(ModelSQL, ModelView):
                                 period.select(period.id,
                                     where=period.fiscalyear.in_(
                                         fiscalyear_ids)))
-                            & move.state == 'posted')),
+                            & (move.state == 'posted'))),
                     fiscalyear_ids)
             else:
                 return ((table.state != 'draft')
diff --git a/tryton.cfg b/tryton.cfg
index c6c0583..40db5a7 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.0.0
+version=3.0.1
 depends:
     company
     currency
diff --git a/trytond_account.egg-info/PKG-INFO b/trytond_account.egg-info/PKG-INFO
index f72b399..bfe5147 100644
--- a/trytond_account.egg-info/PKG-INFO
+++ b/trytond_account.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-account
-Version: 3.0.0
+Version: 3.0.1
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-account



More information about the tryton-debian-vcs mailing list