Hello community, here is the log from the commit of package trytond_stock for openSUSE:Leap:15.2 checked in at 2020-06-12 13:07:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/trytond_stock (Old) and /work/SRC/openSUSE:Leap:15.2/.trytond_stock.new.3606 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_stock" Fri Jun 12 13:07:48 2020 rev:25 rq:813785 version:5.0.10 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/trytond_stock/trytond_stock.changes 2020-03-13 10:59:02.256505797 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.trytond_stock.new.3606/trytond_stock.changes 2020-06-12 13:07:48.927840353 +0200 @@ -1,0 +2,5 @@ +Thu Jun 4 09:58:58 UTC 2020 - Axel Braun <[email protected]> + +- Version 5.0.10 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_stock-5.0.9.tar.gz New: ---- trytond_stock-5.0.10.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_stock.spec ++++++ --- /var/tmp/diff_new_pack.ngx4iy/_old 2020-06-12 13:07:49.339841240 +0200 +++ /var/tmp/diff_new_pack.ngx4iy/_new 2020-06-12 13:07:49.339841240 +0200 @@ -19,7 +19,7 @@ %define majorver 5.0 Name: trytond_stock -Version: %{majorver}.9 +Version: %{majorver}.10 Release: 0 Summary: The "stock" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_stock-5.0.9.tar.gz -> trytond_stock-5.0.10.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.9/.hgtags new/trytond_stock-5.0.10/.hgtags --- old/trytond_stock-5.0.9/.hgtags 2020-03-09 18:34:29.000000000 +0100 +++ new/trytond_stock-5.0.10/.hgtags 2020-06-03 22:17:00.000000000 +0200 @@ -28,3 +28,4 @@ c28e197150589c730148a7abc40c96cfef65c5fd 5.0.7 858b2cb7a2710b1469be54a7cf4be780694f0c45 5.0.8 e459804ec7619f9ee737d7fa1abdaacd4d4e1ddb 5.0.9 +cbb30461e6c588d68bd536892e568225f1c301b4 5.0.10 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.9/CHANGELOG new/trytond_stock-5.0.10/CHANGELOG --- old/trytond_stock-5.0.9/CHANGELOG 2020-03-09 18:34:29.000000000 +0100 +++ new/trytond_stock-5.0.10/CHANGELOG 2020-06-03 22:17:00.000000000 +0200 @@ -1,3 +1,6 @@ +Version 5.0.10 - 2020-06-03 +* Bug fixes (see mercurial logs for details) + Version 5.0.9 - 2020-03-09 * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.9/PKG-INFO new/trytond_stock-5.0.10/PKG-INFO --- old/trytond_stock-5.0.9/PKG-INFO 2020-03-09 18:34:31.000000000 +0100 +++ new/trytond_stock-5.0.10/PKG-INFO 2020-06-03 22:17:02.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: trytond_stock -Version: 5.0.9 +Version: 5.0.10 Summary: Tryton module for stock and inventory Home-page: http://www.tryton.org/ Author: Tryton diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.9/shipment.py new/trytond_stock-5.0.10/shipment.py --- old/trytond_stock-5.0.9/shipment.py 2019-04-10 18:58:35.000000000 +0200 +++ new/trytond_stock-5.0.10/shipment.py 2020-05-20 00:26:34.000000000 +0200 @@ -444,6 +444,8 @@ def receive(cls, shipments): Move = Pool().get('stock.move') Move.do([m for s in shipments for m in s.incoming_moves]) + Move.delete([m for s in shipments for m in s.inventory_moves + if m.state in ('draft', 'cancel')]) cls.create_inventory_moves(shipments) # Set received state to allow done transition cls.write(shipments, {'state': 'received'}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.9/tryton.cfg new/trytond_stock-5.0.10/tryton.cfg --- old/trytond_stock-5.0.9/tryton.cfg 2020-02-02 17:14:59.000000000 +0100 +++ new/trytond_stock-5.0.10/tryton.cfg 2020-03-09 18:34:41.000000000 +0100 @@ -1,5 +1,5 @@ [tryton] -version=5.0.9 +version=5.0.10 depends: company currency diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.9/trytond_stock.egg-info/PKG-INFO new/trytond_stock-5.0.10/trytond_stock.egg-info/PKG-INFO --- old/trytond_stock-5.0.9/trytond_stock.egg-info/PKG-INFO 2020-03-09 18:34:30.000000000 +0100 +++ new/trytond_stock-5.0.10/trytond_stock.egg-info/PKG-INFO 2020-06-03 22:17:01.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: trytond-stock -Version: 5.0.9 +Version: 5.0.10 Summary: Tryton module for stock and inventory Home-page: http://www.tryton.org/ Author: Tryton
