changeset ce77aff68339 in modules/account_statement:default
details: 
https://hg.tryton.org/modules/account_statement?cmd=changeset&node=ce77aff68339
description:
        Replace ilike operator by like on Reference

        issue11203
        review395431002
diffstat:

 statement.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 45be4843c4e3 -r ce77aff68339 statement.py
--- a/statement.py      Tue Feb 15 00:08:47 2022 +0100
+++ b/statement.py      Thu Feb 17 00:48:06 2022 +0100
@@ -1056,7 +1056,7 @@
         return move.join(line,
             condition=move.id == line.move
             ).select(*columns,
-                where=move.origin.ilike(Statement.__name__ + ',%'),
+                where=move.origin.like(Statement.__name__ + ',%'),
                 group_by=std_columns + [move.id]
                 )
 

Reply via email to