Script 'mail_helper' called by obssrc
Hello community,

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

Package is "trytond_account_invoice"

Sun Mar 12 19:47:57 2023 rev:26 rq:1071009 version:6.0.9

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/trytond_account_invoice/trytond_account_invoice.changes
  2023-02-12 19:14:43.489189048 +0100
+++ 
/work/SRC/openSUSE:Factory/.trytond_account_invoice.new.31432/trytond_account_invoice.changes
       2023-03-12 19:47:59.503517847 +0100
@@ -1,0 +2,5 @@
+Sun Mar  5 16:01:25 UTC 2023 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.9 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_account_invoice-6.0.8.tar.gz
  trytond_account_invoice-6.0.8.tar.gz.asc

New:
----
  trytond_account_invoice-6.0.9.tar.gz
  trytond_account_invoice-6.0.9.tar.gz.asc

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

Other differences:
------------------
++++++ trytond_account_invoice.spec ++++++
--- /var/tmp/diff_new_pack.T8TKkb/_old  2023-03-12 19:48:00.095520815 +0100
+++ /var/tmp/diff_new_pack.T8TKkb/_new  2023-03-12 19:48:00.095520815 +0100
@@ -19,7 +19,7 @@
 
 %define majorver 6.0
 Name:           trytond_account_invoice
-Version:        %{majorver}.8
+Version:        %{majorver}.9
 Release:        0
 Summary:        The "account_invoice" module for the Tryton ERP system
 License:        GPL-3.0-only

++++++ trytond_account_invoice-6.0.8.tar.gz -> 
trytond_account_invoice-6.0.9.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account_invoice-6.0.8/CHANGELOG 
new/trytond_account_invoice-6.0.9/CHANGELOG
--- old/trytond_account_invoice-6.0.8/CHANGELOG 2023-02-05 22:26:46.000000000 
+0100
+++ new/trytond_account_invoice-6.0.9/CHANGELOG 2023-03-04 13:18:04.000000000 
+0100
@@ -1,3 +1,8 @@
+
+Version 6.0.9 - 2023-03-04
+--------------------------
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.8 - 2023-02-05
 --------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account_invoice-6.0.8/PKG-INFO 
new/trytond_account_invoice-6.0.9/PKG-INFO
--- old/trytond_account_invoice-6.0.8/PKG-INFO  2023-02-05 22:26:49.504911400 
+0100
+++ new/trytond_account_invoice-6.0.9/PKG-INFO  2023-03-04 13:18:09.820299600 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond_account_invoice
-Version: 6.0.8
+Version: 6.0.9
 Summary: Tryton module for invoicing
 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_account_invoice-6.0.8/invoice.py 
new/trytond_account_invoice-6.0.9/invoice.py
--- old/trytond_account_invoice-6.0.8/invoice.py        2023-02-05 
21:50:06.000000000 +0100
+++ new/trytond_account_invoice-6.0.9/invoice.py        2023-02-27 
18:51:39.000000000 +0100
@@ -1171,14 +1171,15 @@
 
     @classmethod
     def search_rec_name(cls, name, clause):
-        if clause[1].startswith('!') or clause[1].startswith('not '):
+        _, operator, value = clause
+        if operator.startswith('!') or operator.startswith('not '):
             bool_op = 'AND'
         else:
             bool_op = 'OR'
         return [bool_op,
-            ('number',) + tuple(clause[1:]),
-            ('reference',) + tuple(clause[1:]),
-            ('party',) + tuple(clause[1:]),
+            ('number', *clause[1:]),
+            ('reference', *clause[1:]),
+            ('party', *clause[1:]),
             ]
 
     def get_origins(self, name):
@@ -2278,10 +2279,15 @@
 
     @classmethod
     def search_rec_name(cls, name, clause):
-        return ['OR',
-            ('invoice.rec_name',) + tuple(clause[1:]),
-            ('product.rec_name',) + tuple(clause[1:]),
-            ('account.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,
+            ('invoice.rec_name', *clause[1:]),
+            ('product.rec_name', *clause[1:]),
+            ('account.rec_name', *clause[1:]),
             ]
 
     @classmethod
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_account_invoice-6.0.8/tryton.cfg 
new/trytond_account_invoice-6.0.9/tryton.cfg
--- old/trytond_account_invoice-6.0.8/tryton.cfg        2022-12-19 
13:03:46.000000000 +0100
+++ new/trytond_account_invoice-6.0.9/tryton.cfg        2023-02-05 
22:26:59.000000000 +0100
@@ -1,5 +1,5 @@
 [tryton]
-version=6.0.8
+version=6.0.9
 depends:
     account
     account_product
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_account_invoice-6.0.8/trytond_account_invoice.egg-info/PKG-INFO 
new/trytond_account_invoice-6.0.9/trytond_account_invoice.egg-info/PKG-INFO
--- old/trytond_account_invoice-6.0.8/trytond_account_invoice.egg-info/PKG-INFO 
2023-02-05 22:26:48.000000000 +0100
+++ new/trytond_account_invoice-6.0.9/trytond_account_invoice.egg-info/PKG-INFO 
2023-03-04 13:18:08.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond-account-invoice
-Version: 6.0.8
+Version: 6.0.9
 Summary: Tryton module for invoicing
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/

Reply via email to