Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package trytond_stock for openSUSE:Factory checked in at 2023-06-29 17:29:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_stock (Old) and /work/SRC/openSUSE:Factory/.trytond_stock.new.13546 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_stock" Thu Jun 29 17:29:20 2023 rev:34 rq:1095961 version:6.0.20 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_stock/trytond_stock.changes 2023-04-15 22:32:53.209447826 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_stock.new.13546/trytond_stock.changes 2023-06-29 17:29:42.678745386 +0200 @@ -1,0 +2,5 @@ +Thu Jun 22 10:05:21 UTC 2023 - Axel Braun <axel.br...@gmx.de> + +- Version 6.0.20 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_stock-6.0.19.tar.gz trytond_stock-6.0.19.tar.gz.asc New: ---- trytond_stock-6.0.20.tar.gz trytond_stock-6.0.20.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_stock.spec ++++++ --- /var/tmp/diff_new_pack.GRHOTh/_old 2023-06-29 17:29:43.346749299 +0200 +++ /var/tmp/diff_new_pack.GRHOTh/_new 2023-06-29 17:29:43.350749322 +0200 @@ -19,7 +19,7 @@ %define majorver 6.0 Name: trytond_stock -Version: %{majorver}.19 +Version: %{majorver}.20 Release: 0 Summary: The "stock" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_stock-6.0.19.tar.gz -> trytond_stock-6.0.20.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.19/CHANGELOG new/trytond_stock-6.0.20/CHANGELOG --- old/trytond_stock-6.0.19/CHANGELOG 2023-04-02 00:11:45.000000000 +0200 +++ new/trytond_stock-6.0.20/CHANGELOG 2023-06-21 19:13:04.000000000 +0200 @@ -1,4 +1,9 @@ +Version 6.0.20 - 2023-06-21 +--------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.19 - 2023-04-01 --------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.19/COPYRIGHT new/trytond_stock-6.0.20/COPYRIGHT --- old/trytond_stock-6.0.19/COPYRIGHT 2023-04-02 00:11:44.000000000 +0200 +++ new/trytond_stock-6.0.20/COPYRIGHT 2023-06-21 19:13:04.000000000 +0200 @@ -1,7 +1,7 @@ Copyright (C) 2012 Openlabs Technologies & Consulting (P) LTD. -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_stock-6.0.19/PKG-INFO new/trytond_stock-6.0.20/PKG-INFO --- old/trytond_stock-6.0.19/PKG-INFO 2023-04-02 00:11:51.513846600 +0200 +++ new/trytond_stock-6.0.20/PKG-INFO 2023-06-21 19:13:08.249360800 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_stock -Version: 6.0.19 +Version: 6.0.20 Summary: Tryton module for stock and inventory 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_stock-6.0.19/location.py new/trytond_stock-6.0.20/location.py --- old/trytond_stock-6.0.19/location.py 2022-12-19 13:03:46.000000000 +0100 +++ new/trytond_stock-6.0.20/location.py 2023-06-10 11:37:40.000000000 +0200 @@ -407,7 +407,7 @@ context = {} if (name == 'quantity' - and (trans_context.get('stock_date_end', datetime.date.max) + and ((trans_context.get('stock_date_end') or datetime.date.max) > Date_.today())): context['stock_date_end'] = Date_.today() @@ -495,7 +495,7 @@ return Template(trans_context['product_template']) context = {} - if 'stock_date_end' in trans_context: + if trans_context.get('stock_date_end') is not None: # Use the last cost_price of the day context['_datetime'] = datetime.datetime.combine( trans_context['stock_date_end'], datetime.time.max) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.19/tryton.cfg new/trytond_stock-6.0.20/tryton.cfg --- old/trytond_stock-6.0.19/tryton.cfg 2022-12-19 13:03:46.000000000 +0100 +++ new/trytond_stock-6.0.20/tryton.cfg 2023-05-17 23:03:30.000000000 +0200 @@ -1,5 +1,5 @@ [tryton] -version=6.0.19 +version=6.0.20 depends: company currency diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.19/trytond_stock.egg-info/PKG-INFO new/trytond_stock-6.0.20/trytond_stock.egg-info/PKG-INFO --- old/trytond_stock-6.0.19/trytond_stock.egg-info/PKG-INFO 2023-04-02 00:11:50.000000000 +0200 +++ new/trytond_stock-6.0.20/trytond_stock.egg-info/PKG-INFO 2023-06-21 19:13:07.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond-stock -Version: 6.0.19 +Version: 6.0.20 Summary: Tryton module for stock and inventory Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/