changeset 789a2cf40077 in modules/notification_email:default
details: 
https://hg.tryton.org/modules/notification_email?cmd=changeset&node=789a2cf40077
description:
        Do not migrate log if it has resource

        issue10855
        review364201002
diffstat:

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

diffs (12 lines):

diff -r 267cc29073b7 -r 789a2cf40077 notification.py
--- a/notification.py   Sun Sep 26 23:11:21 2021 +0200
+++ b/notification.py   Wed Oct 13 18:27:52 2021 +0200
@@ -403,7 +403,7 @@
         cursor.execute(*table.update(
                 [table.notification, table.resource],
                 [notification, resource],
-                where=table.trigger != Null))
+                where=(table.trigger != Null) & (table.resource == Null)))
         table_h.not_null_action('trigger', 'remove')
 
     def get_date(self, name):

Reply via email to