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-11-20 21:19:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_stock (Old) and /work/SRC/openSUSE:Factory/.trytond_stock.new.2521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_stock" Mon Nov 20 21:19:13 2023 rev:38 rq:1127520 version:6.0.23 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_stock/trytond_stock.changes 2023-10-19 22:52:32.577799198 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_stock.new.2521/trytond_stock.changes 2023-11-20 21:19:44.683236285 +0100 @@ -1,0 +2,5 @@ +Sat Nov 18 09:51:00 UTC 2023 - Axel Braun <axel.br...@gmx.de> + +- Version 6.0.23 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_stock-6.0.22.tar.gz trytond_stock-6.0.22.tar.gz.asc New: ---- trytond_stock-6.0.23.tar.gz trytond_stock-6.0.23.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_stock.spec ++++++ --- /var/tmp/diff_new_pack.KJHCxC/_old 2023-11-20 21:19:45.303259168 +0100 +++ /var/tmp/diff_new_pack.KJHCxC/_new 2023-11-20 21:19:45.303259168 +0100 @@ -19,7 +19,7 @@ %define majorver 6.0 Name: trytond_stock -Version: %{majorver}.22 +Version: %{majorver}.23 Release: 0 Summary: The "stock" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_stock-6.0.22.tar.gz -> trytond_stock-6.0.23.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.22/CHANGELOG new/trytond_stock-6.0.23/CHANGELOG --- old/trytond_stock-6.0.22/CHANGELOG 2023-10-05 00:07:07.000000000 +0200 +++ new/trytond_stock-6.0.23/CHANGELOG 2023-11-17 19:40:19.000000000 +0100 @@ -1,4 +1,9 @@ +Version 6.0.23 - 2023-11-17 +--------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.22 - 2023-10-04 --------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.22/PKG-INFO new/trytond_stock-6.0.23/PKG-INFO --- old/trytond_stock-6.0.22/PKG-INFO 2023-10-05 00:07:12.347327000 +0200 +++ new/trytond_stock-6.0.23/PKG-INFO 2023-11-17 19:40:22.453742000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_stock -Version: 6.0.22 +Version: 6.0.23 Summary: Tryton module for stock and inventory Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ @@ -50,8 +50,16 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Office/Business Requires-Python: >=3.6 -Provides-Extra: sparklines License-File: LICENSE +Requires-Dist: python-sql>=1.3.0 +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_product<6.1,>=6.0 +Requires-Dist: trytond<6.1,>=6.0 +Provides-Extra: sparklines +Requires-Dist: pygal; extra == "sparklines" ############ Stock Module diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.22/move.py new/trytond_stock-6.0.23/move.py --- old/trytond_stock-6.0.22/move.py 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond_stock-6.0.23/move.py 2023-11-15 18:13:20.000000000 +0100 @@ -800,8 +800,10 @@ # Use ordered dict to optimize cache alignment products, uoms = OrderedDict(), OrderedDict() for vals in vlist: - products[vals['product']] = None - uoms[vals['uom']] = None + if vals.get('product') is not None: + products[vals['product']] = None + if vals.get('uom') is not None: + uoms[vals['uom']] = None id2product = {p.id: p for p in Product.browse(products.keys())} id2uom = {u.id: u for u in Uom.browse(uoms.keys())} for vals in vlist: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.22/shipment.py new/trytond_stock-6.0.23/shipment.py --- old/trytond_stock-6.0.22/shipment.py 2023-09-12 22:20:28.000000000 +0200 +++ new/trytond_stock-6.0.23/shipment.py 2023-10-18 16:20:58.000000000 +0200 @@ -1011,7 +1011,8 @@ ], states={ 'readonly': Eval('state').in_( - ['draft', 'assigned', 'packed', 'done', 'cancelled']), + ['draft', 'assigned', 'picked', 'packed', 'done', + 'cancelled']), 'invisible': ( Eval('warehouse_storage') == Eval('warehouse_output')), }, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.22/stock_reporting_margin.py new/trytond_stock-6.0.23/stock_reporting_margin.py --- old/trytond_stock-6.0.22/stock_reporting_margin.py 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond_stock-6.0.23/stock_reporting_margin.py 2023-10-30 14:55:17.000000000 +0100 @@ -24,7 +24,7 @@ def pairwise(iterable): a, b = tee(iterable) - next(b) + next(b, None) return zip_longest(a, b) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.22/tryton.cfg new/trytond_stock-6.0.23/tryton.cfg --- old/trytond_stock-6.0.22/tryton.cfg 2023-09-06 23:14:15.000000000 +0200 +++ new/trytond_stock-6.0.23/tryton.cfg 2023-10-05 00:07:23.000000000 +0200 @@ -1,5 +1,5 @@ [tryton] -version=6.0.22 +version=6.0.23 depends: company currency diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-6.0.22/trytond_stock.egg-info/PKG-INFO new/trytond_stock-6.0.23/trytond_stock.egg-info/PKG-INFO --- old/trytond_stock-6.0.22/trytond_stock.egg-info/PKG-INFO 2023-10-05 00:07:11.000000000 +0200 +++ new/trytond_stock-6.0.23/trytond_stock.egg-info/PKG-INFO 2023-11-17 19:40:22.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond-stock -Version: 6.0.22 +Version: 6.0.23 Summary: Tryton module for stock and inventory Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ @@ -50,8 +50,16 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Office/Business Requires-Python: >=3.6 -Provides-Extra: sparklines License-File: LICENSE +Requires-Dist: python-sql>=1.3.0 +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_product<6.1,>=6.0 +Requires-Dist: trytond<6.1,>=6.0 +Provides-Extra: sparklines +Requires-Dist: pygal; extra == "sparklines" ############ Stock Module