Added new Call Count Limit option to the campaign screen. This allows you to limit the number of attempts for any lead being dialed by a campaign. Previously you had to use a filter to achieve this functionality.
Added new Complete flag for statuses and campaign statuses. Used by the new colums mentioned below as well as for future reports. Added Dialable and Penetration colums to the Statuses Within This List/Campaign tables on the list and campaign screens, showing the DIALABLE count for each status as well as the complete-flag and call-count-limit percentage as PENETRATION. git-svn-id: svn://192.168.202.10@1736 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -1083,3 +1083,15 @@ UPDATE system_settings SET db_schema_version='1300',db_schema_update_date=NOW()
|
||||
ALTER TABLE vicidial_call_menu ADD dtmf_field VARCHAR(50) default 'NONE';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1301',db_schema_update_date=NOW() where db_schema_version < 1301;
|
||||
|
||||
ALTER TABLE vicidial_campaigns ADD call_count_limit SMALLINT(5) UNSIGNED default '0';
|
||||
ALTER TABLE vicidial_campaigns ADD call_count_target SMALLINT(5) UNSIGNED default '3';
|
||||
|
||||
ALTER TABLE vicidial_statuses ADD completed ENUM('Y','N') default 'N';
|
||||
ALTER TABLE vicidial_campaign_statuses ADD completed ENUM('Y','N') default 'N';
|
||||
|
||||
ALTER TABLE system_settings ADD expanded_list_stats ENUM('0','1') default '1';
|
||||
|
||||
ALTER TABLE vicidial_shifts ADD report_option ENUM('Y','N') default 'N';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1302',db_schema_update_date=NOW() where db_schema_version < 1302;
|
||||
|
||||
Reference in New Issue
Block a user