Added agi-VDAD_inbound_calltime_check.agi script which gives the ability to have inbound IVR calls(before they have gotten to an in-group[queue]) to be in the vicidial_auto_calls table under the IVR status. Also gives the ability to use a calltime scheme for calls not yet in an in-group

Changes to AST_VDauto_dial.pl and FastAGI_log.pl scripts to accomodate the new IVR status in the vicidial_auto_calls table.
Added a doc(Inbound_VDAC_IVR.txt) to explain this feature and give an example

git-svn-id: svn://192.168.202.10@875 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2008-05-25 15:24:01 +00:00
parent 3b911e94ac
commit b7b9dfcdcf
9 changed files with 631 additions and 32 deletions
+13
View File
@@ -189,3 +189,16 @@ ALTER TABLE vicidial_timeclock_log ADD event_datestamp TIMESTAMP NOT NULL;
ALTER TABLE vicidial_timeclock_log ADD tcid_link INT(9) UNSIGNED;
UPDATE system_settings SET db_schema_version='1087';
ALTER TABLE vicidial_auto_calls MODIFY status ENUM('SENT','RINGING','LIVE','XFER','PAUSED','CLOSER','BUSY','DISCONNECT','IVR') default 'PAUSED';
UPDATE system_settings SET db_schema_version='1088';