Hello community, here is the log from the commit of package trytond_account for openSUSE:Factory checked in at 2019-11-12 11:55:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_account (Old) and /work/SRC/openSUSE:Factory/.trytond_account.new.2990 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_account" Tue Nov 12 11:55:56 2019 rev:15 rq:747419 version:4.6.11 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes 2019-07-17 13:14:57.963827669 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_account.new.2990/trytond_account.changes 2019-11-12 11:56:52.911436640 +0100 @@ -1,0 +2,5 @@ +Mon Nov 11 17:58:57 UTC 2019 - Axel Braun <axel.br...@gmx.de> + +- Version 4.6.11 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_account-4.6.10.tar.gz New: ---- trytond_account-4.6.11.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_account.spec ++++++ --- /var/tmp/diff_new_pack.Lec04W/_old 2019-11-12 11:56:53.951437748 +0100 +++ /var/tmp/diff_new_pack.Lec04W/_new 2019-11-12 11:56:53.955437752 +0100 @@ -18,7 +18,7 @@ %define majorver 4.6 Name: trytond_account -Version: %{majorver}.10 +Version: %{majorver}.11 Release: 0 Summary: The "account" module for the Tryton ERP system License: GPL-3.0+ ++++++ trytond_account-4.6.10.tar.gz -> trytond_account-4.6.11.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account-4.6.10/.hgtags new/trytond_account-4.6.11/.hgtags --- old/trytond_account-4.6.10/.hgtags 2019-07-01 22:16:34.000000000 +0200 +++ new/trytond_account-4.6.11/.hgtags 2019-11-08 19:59:27.000000000 +0100 @@ -27,3 +27,4 @@ 2cd4960b6a940a73f67cdd3d9b1e71755ffa8a4c 4.6.8 479dac76ee3b34f2329ddcf2646a0fff12354ea3 4.6.9 eb4bf2e8d40b9a27cda7db061dd671af8f656192 4.6.10 +0decec7814cb3ef04fcaefe8bce60cad79c6bf46 4.6.11 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account-4.6.10/CHANGELOG new/trytond_account-4.6.11/CHANGELOG --- old/trytond_account-4.6.10/CHANGELOG 2019-07-01 22:16:34.000000000 +0200 +++ new/trytond_account-4.6.11/CHANGELOG 2019-11-08 19:59:27.000000000 +0100 @@ -1,3 +1,6 @@ +Version 4.6.11 - 2019-11-08 +* Bug fixes (see mercurial logs for details) + Version 4.6.10 - 2019-07-01 * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account-4.6.10/PKG-INFO new/trytond_account-4.6.11/PKG-INFO --- old/trytond_account-4.6.10/PKG-INFO 2019-07-01 22:16:35.000000000 +0200 +++ new/trytond_account-4.6.11/PKG-INFO 2019-11-08 19:59:28.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: trytond_account -Version: 4.6.10 +Version: 4.6.11 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.6.10/account.py new/trytond_account-4.6.11/account.py --- old/trytond_account-4.6.10/account.py 2018-12-10 18:49:55.000000000 +0100 +++ new/trytond_account-4.6.11/account.py 2019-10-23 00:48:38.000000000 +0200 @@ -875,7 +875,8 @@ 'reconcile', 'kind', 'deferral', 'party_required', 'general_ledger_balance', 'taxes'] - @fields.depends('parent', *__on_change_parent_fields) + @fields.depends('parent', *(__on_change_parent_fields + + ['_parent_parent.%s' % f for f in __on_change_parent_fields])) def on_change_parent(self): if not self.parent: return diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account-4.6.10/period.py new/trytond_account-4.6.11/period.py --- old/trytond_account-4.6.10/period.py 2018-08-20 22:55:17.000000000 +0200 +++ new/trytond_account-4.6.11/period.py 2019-10-23 00:48:38.000000000 +0200 @@ -111,7 +111,7 @@ def default_type(): return 'standard' - @fields.depends('fiscalyear') + @fields.depends('fiscalyear', '_parent_fiscalyear.company') def on_change_with_company(self, name=None): if self.fiscalyear: return self.fiscalyear.company.id diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account-4.6.10/tax.py new/trytond_account-4.6.11/tax.py --- old/trytond_account-4.6.10/tax.py 2018-08-20 22:55:17.000000000 +0200 +++ new/trytond_account-4.6.11/tax.py 2019-10-23 00:48:38.000000000 +0200 @@ -1124,7 +1124,7 @@ company = fields.Function(fields.Many2One('company.company', 'Company'), 'on_change_with_company') - @fields.depends('move_line') + @fields.depends('move_line', '_parent_move_line.currency_digits') def on_change_with_currency_digits(self, name=None): if self.move_line: return self.move_line.currency_digits diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account-4.6.10/tryton.cfg new/trytond_account-4.6.11/tryton.cfg --- old/trytond_account-4.6.10/tryton.cfg 2019-02-19 23:08:30.000000000 +0100 +++ new/trytond_account-4.6.11/tryton.cfg 2019-07-01 22:16:57.000000000 +0200 @@ -1,5 +1,5 @@ [tryton] -version=4.6.10 +version=4.6.11 depends: company currency diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account-4.6.10/trytond_account.egg-info/PKG-INFO new/trytond_account-4.6.11/trytond_account.egg-info/PKG-INFO --- old/trytond_account-4.6.10/trytond_account.egg-info/PKG-INFO 2019-07-01 22:16:35.000000000 +0200 +++ new/trytond_account-4.6.11/trytond_account.egg-info/PKG-INFO 2019-11-08 19:59:28.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: trytond-account -Version: 4.6.10 +Version: 4.6.11 Summary: Tryton module for accounting Home-page: http://www.tryton.org/ Author: Tryton