I've created this filter in crm leads advanced filters
[['date_action', '<<=', timedelta.strftime('%Y-%m-%d')]]It has this issue
Uncaught Error: Failed to evaluate search criterions:
{"code":400,"message":"Evaluation Error","data":{"type":"local_exception","debug":"Local evaluation failure\nNameError: name 'timedelta' is not defined\n\n{\"domains\":[[\"|\",[\"type\",\"=\",\"lead\"],[\"type\",\"=\",false]],\"[['date_action', '<=', timedelta.strftime('%Y-%m-%d')]]\"],\"contexts\":[{\"lang\":\"en_US\",\"tz\":\"Australia/Melbourne\",\"uid\":1,\"default_type\":\"lead\",\"stage_type\":\"lead\",\"empty_list_help_model\":\"crm.case.section\",\"needaction_menu_ref\":\"crm.menu_crm_opportunities\",\"search_default_unassigned\":1},\"{}\"],\"group_by_seq\":[\"{}\"]}"}}
http://119.9.51.242:8069/web/static/src/js/views.js:851
However if I remove timedelta and replace with just time it works fine, the issue is then that my timezone gives a delayed "Today"
[['date_action', '<=', time.strftime('%Y-%m-%d')]]
If I review my today tasks at 7:30 am on 30/05/2015 it only returns results up to 29/05/2015