Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package trytond_account_invoice_stock for openSUSE:Factory checked in at 2024-01-03 12:26:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_account_invoice_stock (Old) and /work/SRC/openSUSE:Factory/.trytond_account_invoice_stock.new.28375 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_account_invoice_stock" Wed Jan 3 12:26:01 2024 rev:15 rq:1135784 version:6.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_account_invoice_stock/trytond_account_invoice_stock.changes 2023-10-19 22:52:26.145565906 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_account_invoice_stock.new.28375/trytond_account_invoice_stock.changes 2024-01-03 12:26:08.185994804 +0100 @@ -1,0 +2,5 @@ +Sat Dec 23 17:51:58 UTC 2023 - Axel Braun <axel.br...@gmx.de> + +- Version 6.0.3 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_account_invoice_stock-6.0.2.tar.gz trytond_account_invoice_stock-6.0.2.tar.gz.asc New: ---- trytond_account_invoice_stock-6.0.3.tar.gz trytond_account_invoice_stock-6.0.3.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_account_invoice_stock.spec ++++++ --- /var/tmp/diff_new_pack.X0n20z/_old 2024-01-03 12:26:09.070027086 +0100 +++ /var/tmp/diff_new_pack.X0n20z/_new 2024-01-03 12:26:09.070027086 +0100 @@ -20,7 +20,7 @@ %define majorver 6.0 Name: trytond_account_invoice_stock -Version: %{majorver}.2 +Version: %{majorver}.3 Release: 0 Summary: The "account_invoice_stock" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_account_invoice_stock-6.0.2.tar.gz -> trytond_account_invoice_stock-6.0.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice_stock-6.0.2/.readthedocs.yaml new/trytond_account_invoice_stock-6.0.3/.readthedocs.yaml --- old/trytond_account_invoice_stock-6.0.2/.readthedocs.yaml 1970-01-01 01:00:00.000000000 +0100 +++ new/trytond_account_invoice_stock-6.0.3/.readthedocs.yaml 2023-08-06 19:28:07.000000000 +0200 @@ -0,0 +1,7 @@ +version: 2 +build: + os: ubuntu-22.04 + tools: + python: "3" +sphinx: + configuration: modules/account_invoice_stock/doc/conf.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice_stock-6.0.2/CHANGELOG new/trytond_account_invoice_stock-6.0.3/CHANGELOG --- old/trytond_account_invoice_stock-6.0.2/CHANGELOG 2023-07-31 19:16:06.000000000 +0200 +++ new/trytond_account_invoice_stock-6.0.3/CHANGELOG 2023-12-16 11:06:37.000000000 +0100 @@ -1,4 +1,9 @@ +Version 6.0.3 - 2023-12-16 +-------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.2 - 2023-07-31 -------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice_stock-6.0.2/PKG-INFO new/trytond_account_invoice_stock-6.0.3/PKG-INFO --- old/trytond_account_invoice_stock-6.0.2/PKG-INFO 2023-07-31 19:16:09.747941500 +0200 +++ new/trytond_account_invoice_stock-6.0.3/PKG-INFO 2023-12-16 11:06:40.024036000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_account_invoice_stock -Version: 6.0.2 +Version: 6.0.3 Summary: Tryton module to link stock and invoice Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ @@ -51,6 +51,10 @@ Classifier: Topic :: Office/Business :: Financial :: Accounting Requires-Python: >=3.6 License-File: LICENSE +Requires-Dist: trytond_account_invoice<6.1,>=6.0 +Requires-Dist: trytond_stock<6.1,>=6.0 +Requires-Dist: trytond_product<6.1,>=6.0 +Requires-Dist: trytond<6.1,>=6.0 ############################ Account Invoice Stock Module diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice_stock-6.0.2/stock.py new/trytond_account_invoice_stock-6.0.3/stock.py --- old/trytond_account_invoice_stock-6.0.2/stock.py 2023-07-10 23:30:28.000000000 +0200 +++ new/trytond_account_invoice_stock-6.0.3/stock.py 2023-12-10 13:57:05.000000000 +0100 @@ -113,7 +113,9 @@ quantity += UoM.compute_qty( line.unit, line.quantity, self.uom) if quantity: - unit_price = round_price(amount / Decimal(str(quantity))) + unit_price = amount / Decimal(str(quantity)) + if unit_price is not None: + unit_price = round_price(unit_price) return unit_price diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice_stock-6.0.2/tryton.cfg new/trytond_account_invoice_stock-6.0.3/tryton.cfg --- old/trytond_account_invoice_stock-6.0.2/tryton.cfg 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond_account_invoice_stock-6.0.3/tryton.cfg 2023-07-31 19:16:15.000000000 +0200 @@ -1,5 +1,5 @@ [tryton] -version=6.0.2 +version=6.0.3 depends: account_invoice stock diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice_stock-6.0.2/trytond_account_invoice_stock.egg-info/PKG-INFO new/trytond_account_invoice_stock-6.0.3/trytond_account_invoice_stock.egg-info/PKG-INFO --- old/trytond_account_invoice_stock-6.0.2/trytond_account_invoice_stock.egg-info/PKG-INFO 2023-07-31 19:16:09.000000000 +0200 +++ new/trytond_account_invoice_stock-6.0.3/trytond_account_invoice_stock.egg-info/PKG-INFO 2023-12-16 11:06:39.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond-account-invoice-stock -Version: 6.0.2 +Version: 6.0.3 Summary: Tryton module to link stock and invoice Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ @@ -51,6 +51,10 @@ Classifier: Topic :: Office/Business :: Financial :: Accounting Requires-Python: >=3.6 License-File: LICENSE +Requires-Dist: trytond_account_invoice<6.1,>=6.0 +Requires-Dist: trytond_stock<6.1,>=6.0 +Requires-Dist: trytond_product<6.1,>=6.0 +Requires-Dist: trytond<6.1,>=6.0 ############################ Account Invoice Stock Module diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice_stock-6.0.2/trytond_account_invoice_stock.egg-info/SOURCES.txt new/trytond_account_invoice_stock-6.0.3/trytond_account_invoice_stock.egg-info/SOURCES.txt --- old/trytond_account_invoice_stock-6.0.2/trytond_account_invoice_stock.egg-info/SOURCES.txt 2023-07-31 19:16:09.000000000 +0200 +++ new/trytond_account_invoice_stock-6.0.3/trytond_account_invoice_stock.egg-info/SOURCES.txt 2023-12-16 11:06:39.000000000 +0100 @@ -1,3 +1,4 @@ +.readthedocs.yaml CHANGELOG COPYRIGHT LICENSE