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 2023-11-13 22:21:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_account (Old)
and /work/SRC/openSUSE:Factory/.trytond_account.new.17445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_account"
Mon Nov 13 22:21:21 2023 rev:41 rq:1125405 version:6.0.19
Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes
2023-10-19 22:52:24.437503956 +0200
+++
/work/SRC/openSUSE:Factory/.trytond_account.new.17445/trytond_account.changes
2023-11-13 22:25:00.348637344 +0100
@@ -1,0 +2,5 @@
+Sat Nov 4 10:13:19 UTC 2023 - Axel Braun <[email protected]>
+
+- Version 6.0.19 - Bugfix Release
+
+-------------------------------------------------------------------
Old:
----
trytond_account-6.0.18.tar.gz
trytond_account-6.0.18.tar.gz.asc
New:
----
trytond_account-6.0.19.tar.gz
trytond_account-6.0.19.tar.gz.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ trytond_account.spec ++++++
--- /var/tmp/diff_new_pack.KaWpBY/_old 2023-11-13 22:25:00.916658258 +0100
+++ /var/tmp/diff_new_pack.KaWpBY/_new 2023-11-13 22:25:00.920658405 +0100
@@ -19,7 +19,7 @@
%define majorver 6.0
Name: trytond_account
-Version: %{majorver}.18
+Version: %{majorver}.19
Release: 0
Summary: The "account" module for the Tryton ERP system
License: GPL-3.0-or-later
++++++ trytond_account-6.0.18.tar.gz -> trytond_account-6.0.19.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.18/CHANGELOG
new/trytond_account-6.0.19/CHANGELOG
--- old/trytond_account-6.0.18/CHANGELOG 2023-09-06 23:38:11.000000000
+0200
+++ new/trytond_account-6.0.19/CHANGELOG 2023-11-03 19:13:11.000000000
+0100
@@ -1,4 +1,9 @@
+Version 6.0.19 - 2023-11-03
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
+
Version 6.0.18 - 2023-09-06
---------------------------
* Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.18/PKG-INFO
new/trytond_account-6.0.19/PKG-INFO
--- old/trytond_account-6.0.18/PKG-INFO 2023-09-06 23:38:14.806807800 +0200
+++ new/trytond_account-6.0.19/PKG-INFO 2023-11-03 19:13:14.562682400 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: trytond_account
-Version: 6.0.18
+Version: 6.0.19
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/6.0/
@@ -51,6 +51,13 @@
Classifier: Topic :: Office/Business :: Financial :: Accounting
Requires-Python: >=3.6
License-File: LICENSE
+Requires-Dist: python-dateutil
+Requires-Dist: python-sql>=0.7
+Requires-Dist: simpleeval
+Requires-Dist: trytond_company<6.1,>=6.0
+Requires-Dist: trytond_currency<6.1,>=6.0
+Requires-Dist: trytond_party<6.1,>=6.0
+Requires-Dist: trytond<6.1,>=6.0
##############
Account Module
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.18/account.py
new/trytond_account-6.0.19/account.py
--- old/trytond_account-6.0.18/account.py 2023-08-14 13:03:28.000000000
+0200
+++ new/trytond_account-6.0.19/account.py 2023-10-30 15:17:37.000000000
+0100
@@ -1787,7 +1787,7 @@
context = Transaction().context
if context.get('start_period') or context.get('end_period'):
period_ids = cls.get_period_ids(name)
- elif context.get('from_date') or context.get('end_date'):
+ elif context.get('from_date') or context.get('to_date'):
from_date, to_date = cls.get_dates(name)
else:
if name.startswith('start_'):
@@ -2236,6 +2236,8 @@
account_ids, party_ids = set(), set()
for r in records:
account_parties[r.id] = None
+ if not r.party:
+ continue
account_party2ids[r.account.id, r.party.id].append(r.id)
account_ids.add(r.account.id)
party_ids.add(r.party.id)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.18/move.py
new/trytond_account-6.0.19/move.py
--- old/trytond_account-6.0.18/move.py 2023-05-17 23:03:30.000000000 +0200
+++ new/trytond_account-6.0.19/move.py 2023-10-30 15:02:37.000000000 +0100
@@ -1309,6 +1309,8 @@
reconciliations = []
for lines in lines_list:
+ if not lines:
+ continue
for line in lines:
if line.reconciliation:
raise AccessError(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_account-6.0.18/tryton.cfg
new/trytond_account-6.0.19/tryton.cfg
--- old/trytond_account-6.0.18/tryton.cfg 2023-05-17 23:04:54.000000000
+0200
+++ new/trytond_account-6.0.19/tryton.cfg 2023-09-06 23:38:24.000000000
+0200
@@ -1,5 +1,5 @@
[tryton]
-version=6.0.18
+version=6.0.19
depends:
company
currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/trytond_account-6.0.18/trytond_account.egg-info/PKG-INFO
new/trytond_account-6.0.19/trytond_account.egg-info/PKG-INFO
--- old/trytond_account-6.0.18/trytond_account.egg-info/PKG-INFO
2023-09-06 23:38:13.000000000 +0200
+++ new/trytond_account-6.0.19/trytond_account.egg-info/PKG-INFO
2023-11-03 19:13:14.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: trytond-account
-Version: 6.0.18
+Version: 6.0.19
Summary: Tryton module for accounting
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/6.0/
@@ -51,6 +51,13 @@
Classifier: Topic :: Office/Business :: Financial :: Accounting
Requires-Python: >=3.6
License-File: LICENSE
+Requires-Dist: python-dateutil
+Requires-Dist: python-sql>=0.7
+Requires-Dist: simpleeval
+Requires-Dist: trytond_company<6.1,>=6.0
+Requires-Dist: trytond_currency<6.1,>=6.0
+Requires-Dist: trytond_party<6.1,>=6.0
+Requires-Dist: trytond<6.1,>=6.0
##############
Account Module