How to make date conditions work with workflows - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: How to make date conditions work with workflows (/showthread.php?tid=1222) |
How to make date conditions work with workflows - partnerwerk - 08-21-2018 I want to get a workflow running 24 hours before a scheduled calendar item but I can not figure out how to set the right conditions. I set the first field to "date_start" and the second to "days_later". In the third field I use an expression: "1". The test with evalwf.php is positive but the mail is not sent. Are there any ideas what I could do? RE: How to make date conditions work with workflows - joebordes - 08-22-2018 Have a look at the explanation on this documentation page, see if that helps. http://corebos.org/documentation/doku.php?id=en:scheduled_workflows Also have a look at the "Notify when a task is delayed beyond 24 hrs" workflow which does something similar. RE: How to make date conditions work with workflows - partnerwerk - 08-23-2018 Great, it took me a while but I figured out a nice way to do it: First I set the workflow trigger on fixed time with daily check at 7.30. Second I set a condition ”Start date and time (System date)” ”is” expression: ”add_days(get_date('today'), 1)” Now my reminder tasks are triggered every morning to remind for the upcoming appointments on the next day. |