Hello community,

here is the log from the commit of package trytond_purchase for 
openSUSE:Factory checked in at 2018-05-15 10:14:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_purchase (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_purchase.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_purchase"

Tue May 15 10:14:09 2018 rev:6 rq:606653 version:4.2.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_purchase/trytond_purchase.changes        
2018-03-11 15:24:39.880477945 +0100
+++ /work/SRC/openSUSE:Factory/.trytond_purchase.new/trytond_purchase.changes   
2018-05-15 10:33:37.303703925 +0200
@@ -1,0 +2,5 @@
+Sat May 12 12:58:57 UTC 2018 - axel.br...@gmx.de
+
+- Version 4.2.5 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_purchase-4.2.4.tar.gz

New:
----
  trytond_purchase-4.2.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ trytond_purchase.spec ++++++
--- /var/tmp/diff_new_pack.kuDtDY/_old  2018-05-15 10:33:38.227669990 +0200
+++ /var/tmp/diff_new_pack.kuDtDY/_new  2018-05-15 10:33:38.231669843 +0200
@@ -19,7 +19,7 @@
 
 %define majorver 4.2
 Name:           trytond_purchase
-Version:        %{majorver}.4
+Version:        %{majorver}.5
 Release:        0
 Summary:        The "purchase" module for the Tryton ERP system
 License:        GPL-3.0

++++++ trytond_purchase-4.2.4.tar.gz -> trytond_purchase-4.2.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_purchase-4.2.4/.hgtags 
new/trytond_purchase-4.2.5/.hgtags
--- old/trytond_purchase-4.2.4/.hgtags  2018-03-01 23:14:13.000000000 +0100
+++ new/trytond_purchase-4.2.5/.hgtags  2018-05-08 22:21:10.000000000 +0200
@@ -19,3 +19,4 @@
 b0f53bcdaeff1ac4dc91cf946780ed4eab4346ab 4.2.2
 49c99efccb434208fe29bf520eb8cd6693d35977 4.2.3
 fa530863cb63861e82e4ca0575e54beaafc395c4 4.2.4
+40c8c030ce8e8573c48c75afc75170800b1e7ced 4.2.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_purchase-4.2.4/CHANGELOG 
new/trytond_purchase-4.2.5/CHANGELOG
--- old/trytond_purchase-4.2.4/CHANGELOG        2018-03-01 23:14:13.000000000 
+0100
+++ new/trytond_purchase-4.2.5/CHANGELOG        2018-05-08 22:21:10.000000000 
+0200
@@ -1,3 +1,6 @@
+Version 4.2.5 - 2018-05-08
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.4 - 2018-03-01
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_purchase-4.2.4/PKG-INFO 
new/trytond_purchase-4.2.5/PKG-INFO
--- old/trytond_purchase-4.2.4/PKG-INFO 2018-03-01 23:14:14.000000000 +0100
+++ new/trytond_purchase-4.2.5/PKG-INFO 2018-05-08 22:21:11.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_purchase
-Version: 4.2.4
+Version: 4.2.5
 Summary: Tryton module for purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_purchase-4.2.4/purchase.py 
new/trytond_purchase-4.2.5/purchase.py
--- old/trytond_purchase-4.2.4/purchase.py      2017-11-08 00:40:42.000000000 
+0100
+++ new/trytond_purchase-4.2.5/purchase.py      2018-05-08 22:21:08.000000000 
+0200
@@ -1061,7 +1061,7 @@
         context['taxes'] = [t.id for t in self.taxes]
         return context
 
-    @fields.depends('product', 'unit', 'quantity', 'description',
+    @fields.depends('product', 'unit', 'quantity', 'description', 'purchase',
         '_parent_purchase.party', '_parent_purchase.currency',
         '_parent_purchase.purchase_date')
     def on_change_product(self):
@@ -1118,7 +1118,7 @@
         if self.product:
             return self.product.default_uom_category.id
 
-    @fields.depends('product', 'quantity', 'unit', 'taxes',
+    @fields.depends('product', 'quantity', 'unit', 'taxes', 'purchase',
         '_parent_purchase.currency', '_parent_purchase.party',
         '_parent_purchase.purchase_date')
     def on_change_quantity(self):
@@ -1142,7 +1142,7 @@
     def on_change_taxes(self):
         self.on_change_quantity()
 
-    @fields.depends('type', 'quantity', 'unit_price', 'unit',
+    @fields.depends('type', 'quantity', 'unit_price', 'unit', 'purchase',
         '_parent_purchase.currency')
     def on_change_with_amount(self):
         if self.type == 'line':
@@ -1183,7 +1183,7 @@
         else:
             return self.purchase.party.supplier_location.id
 
-    @fields.depends('product', 'quantity', 'moves',
+    @fields.depends('product', 'quantity', 'moves', 'purchase',
         '_parent_purchase.purchase_date', '_parent_purchase.party')
     def on_change_with_delivery_date(self, name=None):
         if self.moves:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_purchase-4.2.4/tryton.cfg 
new/trytond_purchase-4.2.5/tryton.cfg
--- old/trytond_purchase-4.2.4/tryton.cfg       2017-11-08 00:41:02.000000000 
+0100
+++ new/trytond_purchase-4.2.5/tryton.cfg       2018-03-01 23:14:27.000000000 
+0100
@@ -1,5 +1,5 @@
 [tryton]
-version=4.2.4
+version=4.2.5
 depends:
     account
     account_invoice
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_purchase-4.2.4/trytond_purchase.egg-info/PKG-INFO 
new/trytond_purchase-4.2.5/trytond_purchase.egg-info/PKG-INFO
--- old/trytond_purchase-4.2.4/trytond_purchase.egg-info/PKG-INFO       
2018-03-01 23:14:14.000000000 +0100
+++ new/trytond_purchase-4.2.5/trytond_purchase.egg-info/PKG-INFO       
2018-05-08 22:21:10.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-purchase
-Version: 4.2.4
+Version: 4.2.5
 Summary: Tryton module for purchase
 Home-page: http://www.tryton.org/
 Author: Tryton


Reply via email to