Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package trytond_account for openSUSE:Factory 
checked in at 2025-05-12 16:48:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_account (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_account.new.30101 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_account"

Mon May 12 16:48:17 2025 rev:51 rq:1276460 version:6.0.30

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes  
2025-01-27 20:54:04.403713876 +0100
+++ 
/work/SRC/openSUSE:Factory/.trytond_account.new.30101/trytond_account.changes   
    2025-05-12 16:51:51.584182692 +0200
@@ -1,0 +2,5 @@
+Sat May  3 10:54:52 UTC 2025 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.30 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_account-6.0.29.tar.gz

New:
----
  trytond_account-6.0.30.tar.gz

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

Other differences:
------------------
++++++ trytond_account.spec ++++++
--- /var/tmp/diff_new_pack.vIKAbD/_old  2025-05-12 16:51:52.240210254 +0200
+++ /var/tmp/diff_new_pack.vIKAbD/_new  2025-05-12 16:51:52.240210254 +0200
@@ -28,7 +28,7 @@
 
 %define majorver 6.0
 Name:           trytond_account
-Version:        %{majorver}.29
+Version:        %{majorver}.30
 Release:        0
 Summary:        The "account" module for the Tryton ERP system
 License:        GPL-3.0-or-later

++++++ trytond_account-6.0.29.tar.gz -> trytond_account-6.0.30.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.29/CHANGELOG 
new/trytond_account-6.0.30/CHANGELOG
--- old/trytond_account-6.0.29/CHANGELOG        2025-01-16 19:03:50.000000000 
+0100
+++ new/trytond_account-6.0.30/CHANGELOG        2025-04-26 18:01:38.000000000 
+0200
@@ -1,4 +1,9 @@
 
+Version 6.0.30 - 2025-04-26
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
+
 Version 6.0.29 - 2025-01-16
 ---------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.29/PKG-INFO 
new/trytond_account-6.0.30/PKG-INFO
--- old/trytond_account-6.0.29/PKG-INFO 2025-01-16 19:03:53.169315800 +0100
+++ new/trytond_account-6.0.30/PKG-INFO 2025-04-26 18:01:40.785598300 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.4
 Name: trytond_account
-Version: 6.0.29
+Version: 6.0.30
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/
@@ -58,6 +58,19 @@
 Requires-Dist: trytond_currency<6.1,>=6.0
 Requires-Dist: trytond_party<6.1,>=6.0
 Requires-Dist: trytond<6.1,>=6.0
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: description
+Dynamic: download-url
+Dynamic: home-page
+Dynamic: keywords
+Dynamic: license
+Dynamic: license-file
+Dynamic: project-url
+Dynamic: requires-dist
+Dynamic: requires-python
+Dynamic: summary
 
 ##############
 Account Module
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.29/journal.py 
new/trytond_account-6.0.30/journal.py
--- old/trytond_account-6.0.29/journal.py       2025-01-11 02:26:34.000000000 
+0100
+++ new/trytond_account-6.0.30/journal.py       2025-04-14 19:07:17.000000000 
+0200
@@ -90,7 +90,7 @@
         pool = Pool()
         Company = pool.get('company.company')
         company_id = Transaction().context.get('company')
-        if company_id:
+        if company_id is not None and company_id >= 0:
             company = Company(company_id)
             digits = company.currency.digits
         else:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.29/tax.py 
new/trytond_account-6.0.30/tax.py
--- old/trytond_account-6.0.29/tax.py   2025-01-11 02:26:34.000000000 +0100
+++ new/trytond_account-6.0.30/tax.py   2025-04-14 19:07:35.000000000 +0200
@@ -1844,7 +1844,7 @@
         pool = Pool()
         Company = pool.get('company.company')
         company_id = Transaction().context.get('company')
-        if company_id:
+        if company_id is not None and company_id >= 0:
             company = Company(company_id)
             return company.currency.id
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.29/tryton.cfg 
new/trytond_account-6.0.30/tryton.cfg
--- old/trytond_account-6.0.29/tryton.cfg       2025-01-11 02:26:34.000000000 
+0100
+++ new/trytond_account-6.0.30/tryton.cfg       2025-01-16 19:04:02.000000000 
+0100
@@ -1,5 +1,5 @@
 [tryton]
-version=6.0.29
+version=6.0.30
 depends:
     company
     currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_account-6.0.29/trytond_account.egg-info/PKG-INFO 
new/trytond_account-6.0.30/trytond_account.egg-info/PKG-INFO
--- old/trytond_account-6.0.29/trytond_account.egg-info/PKG-INFO        
2025-01-16 19:03:52.000000000 +0100
+++ new/trytond_account-6.0.30/trytond_account.egg-info/PKG-INFO        
2025-04-26 18:01:40.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.4
 Name: trytond_account
-Version: 6.0.29
+Version: 6.0.30
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/
@@ -58,6 +58,19 @@
 Requires-Dist: trytond_currency<6.1,>=6.0
 Requires-Dist: trytond_party<6.1,>=6.0
 Requires-Dist: trytond<6.1,>=6.0
+Dynamic: author
+Dynamic: author-email
+Dynamic: classifier
+Dynamic: description
+Dynamic: download-url
+Dynamic: home-page
+Dynamic: keywords
+Dynamic: license
+Dynamic: license-file
+Dynamic: project-url
+Dynamic: requires-dist
+Dynamic: requires-python
+Dynamic: summary
 
 ##############
 Account Module

Reply via email to