fix(patch): Ignore cancelled ToDos while setting _assign
This commit is contained in:
parent
2ca691feed
commit
448c2f4e3f
1 changed files with 3 additions and 2 deletions
|
|
@ -9,8 +9,9 @@ def execute():
|
|||
FROM
|
||||
`tabToDo`
|
||||
WHERE
|
||||
COALESCE(reference_type, '') != '' and
|
||||
COALESCE(reference_name, '') != ''
|
||||
COALESCE(reference_type, '') != '' AND
|
||||
COALESCE(reference_name, '') != '' AND
|
||||
status != 'Cancelled'
|
||||
GROUP BY
|
||||
reference_type, reference_name
|
||||
'''
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue