Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package trytond_stock_supply for 
openSUSE:Factory checked in at 2023-03-12 19:47:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_stock_supply (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_stock_supply.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_stock_supply"

Sun Mar 12 19:47:59 2023 rev:20 rq:1071011 version:6.0.5

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/trytond_stock_supply/trytond_stock_supply.changes    
    2023-02-12 19:14:49.437225497 +0100
+++ 
/work/SRC/openSUSE:Factory/.trytond_stock_supply.new.31432/trytond_stock_supply.changes
     2023-03-12 19:48:01.879529763 +0100
@@ -1,0 +2,5 @@
+Sun Mar  5 16:01:04 UTC 2023 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.5 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_stock_supply-6.0.4.tar.gz
  trytond_stock_supply-6.0.4.tar.gz.asc

New:
----
  trytond_stock_supply-6.0.5.tar.gz
  trytond_stock_supply-6.0.5.tar.gz.asc

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

Other differences:
------------------
++++++ trytond_stock_supply.spec ++++++
--- /var/tmp/diff_new_pack.soqjgX/_old  2023-03-12 19:48:02.447532611 +0100
+++ /var/tmp/diff_new_pack.soqjgX/_new  2023-03-12 19:48:02.479532772 +0100
@@ -19,7 +19,7 @@
 
 %define         majorver 6.0
 Name:           trytond_stock_supply
-Version:        %{majorver}.4
+Version:        %{majorver}.5
 Release:        0
 Summary:        The Stock Supply module for the Tryton ERP system
 License:        GPL-3.0-only

++++++ trytond_stock_supply-6.0.4.tar.gz -> trytond_stock_supply-6.0.5.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock_supply-6.0.4/CHANGELOG 
new/trytond_stock_supply-6.0.5/CHANGELOG
--- old/trytond_stock_supply-6.0.4/CHANGELOG    2023-02-05 22:06:27.000000000 
+0100
+++ new/trytond_stock_supply-6.0.5/CHANGELOG    2023-03-04 12:15:35.000000000 
+0100
@@ -1,3 +1,8 @@
+
+Version 6.0.5 - 2023-03-04
+--------------------------
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.4 - 2023-02-05
 --------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock_supply-6.0.4/PKG-INFO 
new/trytond_stock_supply-6.0.5/PKG-INFO
--- old/trytond_stock_supply-6.0.4/PKG-INFO     2023-02-05 22:06:30.218551000 
+0100
+++ new/trytond_stock_supply-6.0.5/PKG-INFO     2023-03-04 12:15:38.986413200 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond_stock_supply
-Version: 6.0.4
+Version: 6.0.5
 Summary: Tryton module for stock supply
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock_supply-6.0.4/order_point.py 
new/trytond_stock_supply-6.0.5/order_point.py
--- old/trytond_stock_supply-6.0.4/order_point.py       2022-12-19 
13:03:46.000000000 +0100
+++ new/trytond_stock_supply-6.0.5/order_point.py       2023-02-27 
18:51:25.000000000 +0100
@@ -229,9 +229,14 @@
 
     @classmethod
     def search_rec_name(cls, name, clause):
-        return ['OR',
-            ('location.rec_name',) + tuple(clause[1:]),
-            ('product.rec_name',) + tuple(clause[1:]),
+        _, operator, value = clause
+        if operator.startswith('!') or operator.startswith('not '):
+            bool_op = 'AND'
+        else:
+            bool_op = 'OR'
+        return [bool_op,
+            ('location.rec_name', *clause[1:]),
+            ('product.rec_name', *clause[1:]),
             ]
 
     def get_location(self, name):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock_supply-6.0.4/tryton.cfg 
new/trytond_stock_supply-6.0.5/tryton.cfg
--- old/trytond_stock_supply-6.0.4/tryton.cfg   2022-12-19 13:03:46.000000000 
+0100
+++ new/trytond_stock_supply-6.0.5/tryton.cfg   2023-02-05 22:06:38.000000000 
+0100
@@ -1,5 +1,5 @@
 [tryton]
-version=6.0.4
+version=6.0.5
 depends:
     account
     ir
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_stock_supply-6.0.4/trytond_stock_supply.egg-info/PKG-INFO 
new/trytond_stock_supply-6.0.5/trytond_stock_supply.egg-info/PKG-INFO
--- old/trytond_stock_supply-6.0.4/trytond_stock_supply.egg-info/PKG-INFO       
2023-02-05 22:06:29.000000000 +0100
+++ new/trytond_stock_supply-6.0.5/trytond_stock_supply.egg-info/PKG-INFO       
2023-03-04 12:15:38.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond-stock-supply
-Version: 6.0.4
+Version: 6.0.5
 Summary: Tryton module for stock supply
 Home-page: http://www.tryton.org/
 Author: Tryton

Reply via email to