Hello community,

here is the log from the commit of package trytond_account for openSUSE:Factory 
checked in at 2019-02-24 17:18:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_account (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_account.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_account"

Sun Feb 24 17:18:10 2019 rev:13 rq:677897 version:4.6.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes  
2019-01-21 10:49:31.936079483 +0100
+++ 
/work/SRC/openSUSE:Factory/.trytond_account.new.28833/trytond_account.changes   
    2019-02-24 17:18:13.540420356 +0100
@@ -1,0 +2,5 @@
+Wed Feb 20 21:05:55 UTC 2019 - Axel Braun <[email protected]>
+
+- Version 4.6.9 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_account-4.6.8.tar.gz

New:
----
  trytond_account-4.6.9.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ trytond_account.spec ++++++
--- /var/tmp/diff_new_pack.WOrGxe/_old  2019-02-24 17:18:14.300420221 +0100
+++ /var/tmp/diff_new_pack.WOrGxe/_new  2019-02-24 17:18:14.300420221 +0100
@@ -18,7 +18,7 @@
 
 %define majorver 4.6
 Name:           trytond_account
-Version:        %{majorver}.8
+Version:        %{majorver}.9
 Release:        0
 Summary:        The "account" module for the Tryton ERP system
 License:        GPL-3.0+

++++++ trytond_account-4.6.8.tar.gz -> trytond_account-4.6.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-4.6.8/.hgtags 
new/trytond_account-4.6.9/.hgtags
--- old/trytond_account-4.6.8/.hgtags   2019-01-05 18:55:04.000000000 +0100
+++ new/trytond_account-4.6.9/.hgtags   2019-02-19 23:08:10.000000000 +0100
@@ -25,3 +25,4 @@
 e8c81b8a921196f803d71ac557e0d176d4c7cf94 4.6.6
 90dbb14a07e671b62f7e0c70945d3d189920ce20 4.6.7
 2cd4960b6a940a73f67cdd3d9b1e71755ffa8a4c 4.6.8
+479dac76ee3b34f2329ddcf2646a0fff12354ea3 4.6.9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-4.6.8/CHANGELOG 
new/trytond_account-4.6.9/CHANGELOG
--- old/trytond_account-4.6.8/CHANGELOG 2019-01-05 18:55:04.000000000 +0100
+++ new/trytond_account-4.6.9/CHANGELOG 2019-02-19 23:08:09.000000000 +0100
@@ -1,3 +1,6 @@
+Version 4.6.9 - 2019-02-19
+* Bug fixes (see mercurial logs for details)
+
 Version 4.6.8 - 2019-01-05
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-4.6.8/PKG-INFO 
new/trytond_account-4.6.9/PKG-INFO
--- old/trytond_account-4.6.8/PKG-INFO  2019-01-05 18:55:05.000000000 +0100
+++ new/trytond_account-4.6.9/PKG-INFO  2019-02-19 23:08:11.000000000 +0100
@@ -1,13 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_account
-Version: 4.6.8
+Version: 4.6.9
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: [email protected]
 License: GPL-3
 Download-URL: http://downloads.tryton.org/4.6/
-Description-Content-Type: UNKNOWN
 Description: trytond_account
         ===============
         
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-4.6.8/move.py 
new/trytond_account-4.6.9/move.py
--- old/trytond_account-4.6.8/move.py   2018-10-02 13:01:58.000000000 +0200
+++ new/trytond_account-4.6.9/move.py   2019-02-10 23:43:19.000000000 +0100
@@ -987,12 +987,12 @@
             fiscalyear_ids = map(int, fiscalyears)
             where &= period.fiscalyear == fiscalyear_id
             where &= move.date <= date
-        elif fiscalyear_id or period_ids or from_date or to_date:
+        elif fiscalyear_id or period_ids is not None or from_date or to_date:
             if fiscalyear_id:
                 fiscalyear_ids = [fiscalyear_id]
                 where &= fiscalyear.id == fiscalyear_id
-            if period_ids:
-                where &= move.period.in_(period_ids)
+            if period_ids is not None:
+                where &= move.period.in_(period_ids or [None])
             if from_date:
                 where &= move.date >= from_date
             if to_date:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-4.6.8/tryton.cfg 
new/trytond_account-4.6.9/tryton.cfg
--- old/trytond_account-4.6.8/tryton.cfg        2018-12-03 01:03:05.000000000 
+0100
+++ new/trytond_account-4.6.9/tryton.cfg        2019-01-05 18:55:24.000000000 
+0100
@@ -1,5 +1,5 @@
 [tryton]
-version=4.6.8
+version=4.6.9
 depends:
     company
     currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_account-4.6.8/trytond_account.egg-info/PKG-INFO 
new/trytond_account-4.6.9/trytond_account.egg-info/PKG-INFO
--- old/trytond_account-4.6.8/trytond_account.egg-info/PKG-INFO 2019-01-05 
18:55:04.000000000 +0100
+++ new/trytond_account-4.6.9/trytond_account.egg-info/PKG-INFO 2019-02-19 
23:08:10.000000000 +0100
@@ -1,13 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-account
-Version: 4.6.8
+Version: 4.6.9
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: [email protected]
 License: GPL-3
 Download-URL: http://downloads.tryton.org/4.6/
-Description-Content-Type: UNKNOWN
 Description: trytond_account
         ===============
         


Reply via email to