Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package trytond_purchase for
openSUSE:Factory checked in at 2024-07-02 18:19:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_purchase (Old)
and /work/SRC/openSUSE:Factory/.trytond_purchase.new.18349 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_purchase"
Tue Jul 2 18:19:14 2024 rev:32 rq:1184802 version:6.0.16
Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_purchase/trytond_purchase.changes
2024-05-07 18:04:04.083956272 +0200
+++
/work/SRC/openSUSE:Factory/.trytond_purchase.new.18349/trytond_purchase.changes
2024-07-02 18:19:15.929601376 +0200
@@ -1,0 +2,5 @@
+Tue Jul 2 09:10:56 UTC 2024 - Axel Braun <[email protected]>
+
+- Version 6.0.16 - Bugfix Release
+
+-------------------------------------------------------------------
Old:
----
trytond_purchase-6.0.15.tar.gz
New:
----
trytond_purchase-6.0.16.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ trytond_purchase.spec ++++++
--- /var/tmp/diff_new_pack.yAo7aM/_old 2024-07-02 18:19:16.517622893 +0200
+++ /var/tmp/diff_new_pack.yAo7aM/_new 2024-07-02 18:19:16.517622893 +0200
@@ -28,7 +28,7 @@
%define majorver 6.0
Name: trytond_purchase
-Version: %{majorver}.15
+Version: %{majorver}.16
Release: 0
Summary: The "purchase" module for the Tryton ERP system
License: GPL-3.0-only
++++++ trytond_purchase-6.0.15.tar.gz -> trytond_purchase-6.0.16.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_purchase-6.0.15/CHANGELOG
new/trytond_purchase-6.0.16/CHANGELOG
--- old/trytond_purchase-6.0.15/CHANGELOG 2024-05-01 13:41:27.000000000
+0200
+++ new/trytond_purchase-6.0.16/CHANGELOG 2024-06-02 18:25:53.000000000
+0200
@@ -1,4 +1,9 @@
+Version 6.0.16 - 2024-06-02
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
+
Version 6.0.15 - 2024-05-01
---------------------------
* Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_purchase-6.0.15/PKG-INFO
new/trytond_purchase-6.0.16/PKG-INFO
--- old/trytond_purchase-6.0.15/PKG-INFO 2024-05-01 13:41:30.601618500
+0200
+++ new/trytond_purchase-6.0.16/PKG-INFO 2024-06-02 18:25:57.077770500
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: trytond_purchase
-Version: 6.0.15
+Version: 6.0.16
Summary: Tryton module for purchase
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_purchase-6.0.15/purchase.py
new/trytond_purchase-6.0.16/purchase.py
--- old/trytond_purchase-6.0.15/purchase.py 2024-04-27 07:16:39.000000000
+0200
+++ new/trytond_purchase-6.0.16/purchase.py 2024-05-26 19:47:33.000000000
+0200
@@ -495,9 +495,9 @@
@fields.depends('lines', 'currency', methods=['get_tax_amount'])
def on_change_lines(self):
- self.untaxed_amount = Decimal('0.0')
- self.tax_amount = Decimal('0.0')
- self.total_amount = Decimal('0.0')
+ self.untaxed_amount = Decimal(0)
+ self.tax_amount = Decimal(0)
+ self.total_amount = Decimal(0)
if self.lines:
for line in self.lines:
self.untaxed_amount += getattr(line, 'amount', None) or 0
@@ -1434,7 +1434,7 @@
if self.type == 'line':
return self.on_change_with_amount()
elif self.type == 'subtotal':
- amount = Decimal('0.0')
+ amount = Decimal(0)
for line2 in self.purchase.lines:
if line2.type == 'line':
amount += line2.purchase.currency.round(
@@ -1442,7 +1442,7 @@
elif line2.type == 'subtotal':
if self == line2:
break
- amount = Decimal('0.0')
+ amount = Decimal(0)
return amount
return Decimal('0.0')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_purchase-6.0.15/tryton.cfg
new/trytond_purchase-6.0.16/tryton.cfg
--- old/trytond_purchase-6.0.15/tryton.cfg 2023-11-17 19:52:32.000000000
+0100
+++ new/trytond_purchase-6.0.16/tryton.cfg 2024-05-01 13:41:38.000000000
+0200
@@ -1,5 +1,5 @@
[tryton]
-version=6.0.15
+version=6.0.16
depends:
account
account_invoice
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/trytond_purchase-6.0.15/trytond_purchase.egg-info/PKG-INFO
new/trytond_purchase-6.0.16/trytond_purchase.egg-info/PKG-INFO
--- old/trytond_purchase-6.0.15/trytond_purchase.egg-info/PKG-INFO
2024-05-01 13:41:30.000000000 +0200
+++ new/trytond_purchase-6.0.16/trytond_purchase.egg-info/PKG-INFO
2024-06-02 18:25:56.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: trytond_purchase
-Version: 6.0.15
+Version: 6.0.16
Summary: Tryton module for purchase
Home-page: http://www.tryton.org/
Download-URL: http://downloads.tryton.org/6.0/