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 2021-12-07 00:00:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_stock (Old) and /work/SRC/openSUSE:Factory/.trytond_stock.new.31177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_stock" Tue Dec 7 00:00:23 2021 rev:24 rq:936094 version:5.0.16 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_stock/trytond_stock.changes 2021-06-19 23:05:13.807873965 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_stock.new.31177/trytond_stock.changes 2021-12-07 00:02:08.623978422 +0100 @@ -1,0 +2,5 @@ +Mon Dec 6 17:48:55 UTC 2021 - Axel Braun <[email protected]> + +- Version 5.0.16 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_stock-5.0.14.tar.gz trytond_stock-5.0.14.tar.gz.asc New: ---- trytond_stock-5.0.16.tar.gz trytond_stock-5.0.16.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_stock.spec ++++++ --- /var/tmp/diff_new_pack.R8QafA/_old 2021-12-07 00:02:09.275976116 +0100 +++ /var/tmp/diff_new_pack.R8QafA/_new 2021-12-07 00:02:09.279976102 +0100 @@ -19,7 +19,7 @@ %define majorver 5.0 Name: trytond_stock -Version: %{majorver}.14 +Version: %{majorver}.16 Release: 0 Summary: The "stock" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_stock-5.0.14.tar.gz -> trytond_stock-5.0.16.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.14/.hgtags new/trytond_stock-5.0.16/.hgtags --- old/trytond_stock-5.0.14/.hgtags 2021-06-17 22:08:40.000000000 +0200 +++ new/trytond_stock-5.0.16/.hgtags 2021-11-05 00:08:51.000000000 +0100 @@ -33,3 +33,5 @@ 90609a875da675cbd4aa3a8ff7adcb51cf253ae4 5.0.12 9df0d65c5200b055218c7bfccf49cb21abebe12a 5.0.13 a1a170bb6794477116e1789058e122911918f1d7 5.0.14 +3c1152818f8e6e8d5c4c3554ccf48f00f7763c63 5.0.15 +a8b92ee404c53cf737b2340a68f41e14f22e9905 5.0.16 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.14/CHANGELOG new/trytond_stock-5.0.16/CHANGELOG --- old/trytond_stock-5.0.14/CHANGELOG 2021-06-17 22:08:39.000000000 +0200 +++ new/trytond_stock-5.0.16/CHANGELOG 2021-11-05 00:08:50.000000000 +0100 @@ -1,3 +1,9 @@ +Version 5.0.16 - 2021-11-04 +* Bug fixes (see mercurial logs for details) + +Version 5.0.15 - 2021-08-05 +* Bug fixes (see mercurial logs for details) + Version 5.0.14 - 2021-06-17 * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.14/PKG-INFO new/trytond_stock-5.0.16/PKG-INFO --- old/trytond_stock-5.0.14/PKG-INFO 2021-06-17 22:08:42.201886400 +0200 +++ new/trytond_stock-5.0.16/PKG-INFO 2021-11-05 00:08:52.286930000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: trytond_stock -Version: 5.0.14 +Version: 5.0.16 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.14/inventory.py new/trytond_stock-5.0.16/inventory.py --- old/trytond_stock-5.0.14/inventory.py 2020-11-29 17:42:23.000000000 +0100 +++ new/trytond_stock-5.0.16/inventory.py 2021-10-29 01:55:44.000000000 +0200 @@ -176,8 +176,9 @@ return inventories @classmethod - def write(cls, inventories, values): - super(Inventory, cls).write(inventories, values) + def write(cls, *args): + super().write(*args) + inventories = cls.browse(set(sum(args[::2], []))) cls.complete_lines(inventories, fill=False) @classmethod diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.14/shipment.py new/trytond_stock-5.0.16/shipment.py --- old/trytond_stock-5.0.14/shipment.py 2020-05-20 00:26:34.000000000 +0200 +++ new/trytond_stock-5.0.16/shipment.py 2021-07-21 12:08:24.000000000 +0200 @@ -247,7 +247,7 @@ @fields.depends('supplier') def on_change_with_supplier_location(self, name=None): - if self.supplier: + if self.supplier and self.supplier.supplier_location: return self.supplier.supplier_location.id @classmethod diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.14/tryton.cfg new/trytond_stock-5.0.16/tryton.cfg --- old/trytond_stock-5.0.14/tryton.cfg 2021-05-05 22:48:42.000000000 +0200 +++ new/trytond_stock-5.0.16/tryton.cfg 2021-08-05 23:47:27.000000000 +0200 @@ -1,5 +1,5 @@ [tryton] -version=5.0.14 +version=5.0.16 depends: company currency diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_stock-5.0.14/trytond_stock.egg-info/PKG-INFO new/trytond_stock-5.0.16/trytond_stock.egg-info/PKG-INFO --- old/trytond_stock-5.0.14/trytond_stock.egg-info/PKG-INFO 2021-06-17 22:08:41.000000000 +0200 +++ new/trytond_stock-5.0.16/trytond_stock.egg-info/PKG-INFO 2021-11-05 00:08:51.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: trytond-stock -Version: 5.0.14 +Version: 5.0.16 Summary: Tryton module for stock and inventory Home-page: http://www.tryton.org/ Author: Tryton
