Hello community,

here is the log from the commit of package trytond_account for openSUSE:Factory 
checked in at 2020-08-21 19:19:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_account (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_account.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_account"

Fri Aug 21 19:19:14 2020 rev:21 rq:828499 version:5.0.14

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes  
2020-05-17 23:43:14.093065695 +0200
+++ 
/work/SRC/openSUSE:Factory/.trytond_account.new.3399/trytond_account.changes    
    2020-08-21 19:19:52.796906750 +0200
@@ -1,0 +2,5 @@
+Thu Aug 20 21:02:09 UTC 2020 - Axel Braun <[email protected]>
+
+- Version 5.0.14 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_account-5.0.13.tar.gz

New:
----
  trytond_account-5.0.14.tar.gz

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

Other differences:
------------------
++++++ trytond_account.spec ++++++
--- /var/tmp/diff_new_pack.3udXW0/_old  2020-08-21 19:19:56.164908541 +0200
+++ /var/tmp/diff_new_pack.3udXW0/_new  2020-08-21 19:19:56.168908544 +0200
@@ -18,7 +18,7 @@
 
 %define majorver 5.0
 Name:           trytond_account
-Version:        %{majorver}.13
+Version:        %{majorver}.14
 Release:        0
 Summary:        The "account" module for the Tryton ERP system
 License:        GPL-3.0+

++++++ trytond_account-5.0.13.tar.gz -> trytond_account-5.0.14.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-5.0.13/.hgtags 
new/trytond_account-5.0.14/.hgtags
--- old/trytond_account-5.0.13/.hgtags  2020-05-15 21:51:06.000000000 +0200
+++ new/trytond_account-5.0.14/.hgtags  2020-08-02 17:50:37.000000000 +0200
@@ -32,3 +32,4 @@
 c8cd0b32f53f1b7b62489dc9472506545fd5c704 5.0.11
 f0057cd9c5830c80fe2ee0faf3299b3738a1473a 5.0.12
 8f4e688536ac292bc71d807cf9b673d1e11932a8 5.0.13
+9d179878f40d39042158c4b815a17b433d1d50e5 5.0.14
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-5.0.13/CHANGELOG 
new/trytond_account-5.0.14/CHANGELOG
--- old/trytond_account-5.0.13/CHANGELOG        2020-05-15 21:51:05.000000000 
+0200
+++ new/trytond_account-5.0.14/CHANGELOG        2020-08-02 17:50:36.000000000 
+0200
@@ -1,3 +1,6 @@
+Version 5.0.14 - 2020-08-02
+* Bug fixes (see mercurial logs for details)
+
 Version 5.0.13 - 2020-05-15
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-5.0.13/PKG-INFO 
new/trytond_account-5.0.14/PKG-INFO
--- old/trytond_account-5.0.13/PKG-INFO 2020-05-15 21:51:07.000000000 +0200
+++ new/trytond_account-5.0.14/PKG-INFO 2020-08-02 17:50:38.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: trytond_account
-Version: 5.0.13
+Version: 5.0.14
 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-5.0.13/account.py 
new/trytond_account-5.0.14/account.py
--- old/trytond_account-5.0.13/account.py       2020-05-09 00:42:56.000000000 
+0200
+++ new/trytond_account-5.0.14/account.py       2020-07-30 00:04:13.000000000 
+0200
@@ -2303,6 +2303,7 @@
     @inactive_records
     def transition_update(self):
         pool = Pool()
+        Account = pool.get('account.account')
         TaxCode = pool.get('account.tax.code')
         TaxCodeTemplate = pool.get('account.tax.code.template')
         TaxCodeLine = pool.get('account.tax.code.line')
@@ -2315,7 +2316,8 @@
         TaxRuleLineTemplate = \
             pool.get('account.tax.rule.line.template')
 
-        account = self.start.account
+        # re-browse to have inactive context
+        account = Account(self.start.account.id)
         company = account.company
 
         # Update account types
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-5.0.13/tryton.cfg 
new/trytond_account-5.0.14/tryton.cfg
--- old/trytond_account-5.0.13/tryton.cfg       2020-05-01 18:25:43.000000000 
+0200
+++ new/trytond_account-5.0.14/tryton.cfg       2020-05-15 21:51:18.000000000 
+0200
@@ -1,5 +1,5 @@
 [tryton]
-version=5.0.13
+version=5.0.14
 depends:
     company
     currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_account-5.0.13/trytond_account.egg-info/PKG-INFO 
new/trytond_account-5.0.14/trytond_account.egg-info/PKG-INFO
--- old/trytond_account-5.0.13/trytond_account.egg-info/PKG-INFO        
2020-05-15 21:51:07.000000000 +0200
+++ new/trytond_account-5.0.14/trytond_account.egg-info/PKG-INFO        
2020-08-02 17:50:37.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: trytond-account
-Version: 5.0.13
+Version: 5.0.14
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Author: Tryton


Reply via email to