Hello community,
here is the log from the commit of package trytond_account for openSUSE:Factory
checked in at 2018-12-08 11:21:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_account (Old)
and /work/SRC/openSUSE:Factory/.trytond_account.new.19453 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_account"
Sat Dec 8 11:21:21 2018 rev:11 rq:653621 version:4.2.10
Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes
2018-10-02 19:48:44.121749206 +0200
+++
/work/SRC/openSUSE:Factory/.trytond_account.new.19453/trytond_account.changes
2018-12-08 11:21:26.546777833 +0100
@@ -1,0 +2,5 @@
+Tue Nov 13 15:13:45 UTC 2018 - Axel Braun <[email protected]>
+
+- Version 4.2.10 - Bugfix Release
+
+-------------------------------------------------------------------
Old:
----
trytond_account-4.2.9.tar.gz
New:
----
trytond_account-4.2.10.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ trytond_account.spec ++++++
--- /var/tmp/diff_new_pack.8FcK11/_old 2018-12-08 11:21:29.094775394 +0100
+++ /var/tmp/diff_new_pack.8FcK11/_new 2018-12-08 11:21:29.098775391 +0100
@@ -18,7 +18,7 @@
%define majorver 4.2
Name: trytond_account
-Version: %{majorver}.9
+Version: %{majorver}.10
Release: 0
Summary: The "account" module for the Tryton ERP system
License: GPL-3.0+
++++++ trytond_account-4.2.9.tar.gz -> trytond_account-4.2.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-4.2.9/.hgtags
new/trytond_account-4.2.10/.hgtags
--- old/trytond_account-4.2.9/.hgtags 2018-09-22 18:55:21.000000000 +0200
+++ new/trytond_account-4.2.10/.hgtags 2018-11-12 23:57:44.000000000 +0100
@@ -24,3 +24,4 @@
480d11a4ddb685505df967345f556fde1ea3db47 4.2.7
b390ccaac9a23ce0e978b1972e496d1c067dc1b4 4.2.8
3f336e8386fa1abdbc5f397360c9786c148ca7bb 4.2.9
+9141d50647e7dd6a5c31f6ec4900b79df04a3cfc 4.2.10
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-4.2.9/CHANGELOG
new/trytond_account-4.2.10/CHANGELOG
--- old/trytond_account-4.2.9/CHANGELOG 2018-09-22 18:55:21.000000000 +0200
+++ new/trytond_account-4.2.10/CHANGELOG 2018-11-12 23:57:43.000000000
+0100
@@ -1,3 +1,6 @@
+Version 4.2.10 - 2018-11-12
+* Bug fixes (see mercurial logs for details)
+
Version 4.2.9 - 2018-09-22
* Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-4.2.9/PKG-INFO
new/trytond_account-4.2.10/PKG-INFO
--- old/trytond_account-4.2.9/PKG-INFO 2018-09-22 18:55:22.000000000 +0200
+++ new/trytond_account-4.2.10/PKG-INFO 2018-11-12 23:57:44.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account
-Version: 4.2.9
+Version: 4.2.10
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-4.2.9/move.py
new/trytond_account-4.2.10/move.py
--- old/trytond_account-4.2.9/move.py 2018-08-26 21:12:26.000000000 +0200
+++ new/trytond_account-4.2.10/move.py 2018-10-02 13:04:09.000000000 +0200
@@ -8,6 +8,7 @@
from sql import Null
from sql.aggregate import Sum, Max
+from sql.functions import CharLength
from sql.conditionals import Coalesce, Case
from trytond.model import ModelView, ModelSQL, fields, Check
@@ -143,6 +144,11 @@
# Add index on create_date
table.index_action('create_date', action='add')
+ @classmethod
+ def order_post_number(cls, tables):
+ table, _ = tables[None]
+ return [CharLength(table.post_number), table.post_number]
+
@staticmethod
def default_company():
return Transaction().context.get('company')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-4.2.9/tryton.cfg
new/trytond_account-4.2.10/tryton.cfg
--- old/trytond_account-4.2.9/tryton.cfg 2018-08-20 22:59:58.000000000
+0200
+++ new/trytond_account-4.2.10/tryton.cfg 2018-09-22 18:55:40.000000000
+0200
@@ -1,5 +1,5 @@
[tryton]
-version=4.2.9
+version=4.2.10
depends:
company
currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/trytond_account-4.2.9/trytond_account.egg-info/PKG-INFO
new/trytond_account-4.2.10/trytond_account.egg-info/PKG-INFO
--- old/trytond_account-4.2.9/trytond_account.egg-info/PKG-INFO 2018-09-22
18:55:22.000000000 +0200
+++ new/trytond_account-4.2.10/trytond_account.egg-info/PKG-INFO
2018-11-12 23:57:44.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account
-Version: 4.2.9
+Version: 4.2.10
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Author: Tryton