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-02-20 17:46:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_account (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_account.new.22824 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_account"

Mon Feb 20 17:46:12 2023 rev:37 rq:1066722 version:6.0.15

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_account/trytond_account.changes  
2023-02-12 19:14:44.501195250 +0100
+++ 
/work/SRC/openSUSE:Factory/.trytond_account.new.22824/trytond_account.changes   
    2023-02-20 17:46:44.403732037 +0100
@@ -1,0 +2,5 @@
+Sun Feb 19 18:19:20 UTC 2023 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.15 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_account-6.0.14.tar.gz
  trytond_account-6.0.14.tar.gz.asc

New:
----
  trytond_account-6.0.15.tar.gz
  trytond_account-6.0.15.tar.gz.asc

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

Other differences:
------------------
++++++ trytond_account.spec ++++++
--- /var/tmp/diff_new_pack.u3ZbmE/_old  2023-02-20 17:46:45.163736330 +0100
+++ /var/tmp/diff_new_pack.u3ZbmE/_new  2023-02-20 17:46:45.171736375 +0100
@@ -18,7 +18,7 @@
 
 %define majorver 6.0
 Name:           trytond_account
-Version:        %{majorver}.14
+Version:        %{majorver}.15
 Release:        0
 Summary:        The "account" module for the Tryton ERP system
 License:        GPL-3.0+

++++++ trytond_account-6.0.14.tar.gz -> trytond_account-6.0.15.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.14/CHANGELOG 
new/trytond_account-6.0.15/CHANGELOG
--- old/trytond_account-6.0.14/CHANGELOG        2023-02-05 22:33:38.000000000 
+0100
+++ new/trytond_account-6.0.15/CHANGELOG        2023-02-17 19:57:59.000000000 
+0100
@@ -1,3 +1,7 @@
+Version 6.0.15 - 2023-02-17
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.14 - 2023-02-05
 ---------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.14/COPYRIGHT 
new/trytond_account-6.0.15/COPYRIGHT
--- old/trytond_account-6.0.14/COPYRIGHT        2023-02-05 22:33:38.000000000 
+0100
+++ new/trytond_account-6.0.15/COPYRIGHT        2023-02-17 19:57:58.000000000 
+0100
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2022 Cédric Krier.
+Copyright (C) 2008-2023 Cédric Krier.
 Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2022 B2CK SPRL.
+Copyright (C) 2008-2023 B2CK SPRL.
 Copyright (C) 2004-2008 Tiny SPRL.
 
 This program is free software: you can redistribute it and/or modify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.14/PKG-INFO 
new/trytond_account-6.0.15/PKG-INFO
--- old/trytond_account-6.0.14/PKG-INFO 2023-02-05 22:33:42.045298300 +0100
+++ new/trytond_account-6.0.15/PKG-INFO 2023-02-17 19:58:03.059598700 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond_account
-Version: 6.0.14
+Version: 6.0.15
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.14/move.py 
new/trytond_account-6.0.15/move.py
--- old/trytond_account-6.0.14/move.py  2022-12-19 13:03:45.000000000 +0100
+++ new/trytond_account-6.0.15/move.py  2023-02-10 00:13:46.000000000 +0100
@@ -1131,6 +1131,10 @@
         and if there is no journal - period, create it
         '''
         JournalPeriod = Pool().get('account.journal.period')
+        transaction = Transaction()
+        database = transaction.database
+        connection = transaction.connection
+
         journal_periods = JournalPeriod.search([
                 ('journal', '=', journal.id),
                 ('period', '=', period.id),
@@ -1142,6 +1146,7 @@
                     gettext('account.msg_modify_line_closed_journal_period',
                         journal_period=journal_period.rec_name))
         else:
+            database.lock(connection, JournalPeriod._table)
             JournalPeriod.create([{
                         'journal': journal.id,
                         'period': period.id,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account-6.0.14/tryton.cfg 
new/trytond_account-6.0.15/tryton.cfg
--- old/trytond_account-6.0.14/tryton.cfg       2022-12-19 13:03:45.000000000 
+0100
+++ new/trytond_account-6.0.15/tryton.cfg       2023-02-05 22:33:52.000000000 
+0100
@@ -1,5 +1,5 @@
 [tryton]
-version=6.0.14
+version=6.0.15
 depends:
     company
     currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_account-6.0.14/trytond_account.egg-info/PKG-INFO 
new/trytond_account-6.0.15/trytond_account.egg-info/PKG-INFO
--- old/trytond_account-6.0.14/trytond_account.egg-info/PKG-INFO        
2023-02-05 22:33:41.000000000 +0100
+++ new/trytond_account-6.0.15/trytond_account.egg-info/PKG-INFO        
2023-02-17 19:58:02.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond-account
-Version: 6.0.14
+Version: 6.0.15
 Summary: Tryton module for accounting
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/

Reply via email to