Joined: Wed Dec 31, 1969 5:00 pm Posts: 329 Location: Vancouver, BC
|
Yes, TeleFlow can make comparisons against the current time, and follow separate logic paths.
You can use the Compare Step to compare the current time to the ranges you are concerned with. Use the TeleFlow system variable @TIME to retrieve the current time. I would recommend you create your own variable to store the phone number to be transferred to.
The logic would work like this: if @TIME >= "07:00:00" and @TIME < "15:00:00" then set @PHONE = "xxx-xxx-xxx1" else if @TIME >= "15:00:00" and @TIME < "23:00:00" then set @PHONE = "xxx-xxx-xxx2" etc.
Alternatively, you can use the Run Basic Step to contain all the logic in a single step.
|
|