Added framework for new SIP logging features
Fixed database issue with Call Quotas git-svn-id: svn://192.168.202.10@3129 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
CALL QUOTA LEAD RANKING Started: 2019-07-01 Updated: 2019-07-22
|
||||
CALL QUOTA LEAD RANKING Started: 2019-07-01 Updated: 2019-07-24
|
||||
|
||||
!!!! THIS IS AN EXPERIMENTAL FEATURE, PLEASE READ ALL IMPORTANT NOTES !!!!
|
||||
(If you plan on using this feature-set in production, you should read and understand everything in this document)
|
||||
@@ -228,7 +228,7 @@ A new outbound auto-dial log-auditing function has been added to the AST_VDadapt
|
||||
ALTER TABLE system_settings ADD call_quota_lead_ranking ENUM('0','1','2') default '0';
|
||||
|
||||
ALTER TABLE vicidial_campaigns ADD auto_active_list_new VARCHAR(20) default 'DISABLED';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_lead_ranking VARCHAR(20) default 'DISABLED';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_lead_ranking VARCHAR(40) default 'DISABLED';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_process_running TINYINT(3) default '0';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_last_run_date DATETIME;
|
||||
|
||||
|
||||
@@ -1021,9 +1021,10 @@ callback_dnc ENUM('ENABLED','DISABLED') default 'DISABLED',
|
||||
manual_dial_validation ENUM('Y','N') default 'N',
|
||||
mute_recordings ENUM('Y','N') default 'N',
|
||||
auto_active_list_new VARCHAR(20) default 'DISABLED',
|
||||
call_quota_lead_ranking VARCHAR(20) default 'DISABLED',
|
||||
call_quota_lead_ranking VARCHAR(40) default 'DISABLED',
|
||||
call_quota_process_running TINYINT(3) default '0',
|
||||
call_quota_last_run_date DATETIME
|
||||
call_quota_last_run_date DATETIME,
|
||||
sip_event_logging VARCHAR(40) default 'DISABLED'
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
CREATE TABLE vicidial_lists (
|
||||
@@ -4496,4 +4497,4 @@ INSERT INTO vicidial_settings_containers(container_id,container_notes,container_
|
||||
|
||||
UPDATE system_settings set vdc_agent_api_active='1';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1573',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
UPDATE system_settings SET db_schema_version='1574',db_schema_update_date=NOW(),reload_timestamp=NOW();
|
||||
|
||||
@@ -936,7 +936,7 @@ UPDATE system_settings SET db_schema_version='1572',db_schema_update_date=NOW()
|
||||
ALTER TABLE system_settings ADD call_quota_lead_ranking ENUM('0','1','2') default '0';
|
||||
|
||||
ALTER TABLE vicidial_campaigns ADD auto_active_list_new VARCHAR(20) default 'DISABLED';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_lead_ranking VARCHAR(20) default 'DISABLED';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_lead_ranking VARCHAR(40) default 'DISABLED';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_process_running TINYINT(3) default '0';
|
||||
ALTER TABLE vicidial_campaigns ADD call_quota_last_run_date DATETIME;
|
||||
|
||||
@@ -1013,3 +1013,8 @@ index(first_call_date)
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1573',db_schema_update_date=NOW() where db_schema_version < 1573;
|
||||
|
||||
ALTER TABLE vicidial_campaigns ADD sip_event_logging VARCHAR(40) default 'DISABLED';
|
||||
ALTER TABLE vicidial_campaigns MODIFY call_quota_lead_ranking VARCHAR(40) default 'DISABLED';
|
||||
|
||||
UPDATE system_settings SET db_schema_version='1574',db_schema_update_date=NOW() where db_schema_version < 1574;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
# version: 20190722160501
|
||||
# version: 20190724162601
|
||||
users-user User ID <QXZ>This field is where you put the users ID number, can be up to 8 digits in length, Must be at least 2 characters in length.</QXZ>
|
||||
users-pass Password <QXZ>This field is where you put the users password. Must be at least 2 characters in length. A medium strength user password will be at least 10 characters in length, and a strong user password will be at least 20 characters in length and have letters as well as at least one number. It is recommended that you use a longer password if possible, stringing together several unrelated words with no spaces, and a number somewhere in the string. The maximum size of a password is 100 characters.</QXZ>
|
||||
users-force_change_password Force Change Password <QXZ>If this option is set to Y then the user will be prompted to change their password the next time they log in to the administration webpage. Default is N.</QXZ>
|
||||
@@ -293,6 +293,7 @@ campaigns-pause_max Agent Pause Max Seconds <QXZ>If this is set to greater than
|
||||
campaigns-pause_max_dispo Agent Pause Max Status <QXZ>If Agent Pause Max Seconds is enabled, this is the status set for the call when the agent has not selected a status past the number of seconds set above. This situation can happen when manual alt dial is enabled and the agent has not finished the lead they are on. Default is PAUSMX.</QXZ>
|
||||
campaigns-ready_max_logout Agent Ready Max Seconds Logout <QXZ>If this is set to greater than 0, and the agent has not gone out of READY or CLOSER status in this number of seconds, the agent will automatically be logged out of the agent screen. Default is 0 for disabled.</QXZ>
|
||||
campaigns-customer_gone_seconds Customer Gone Warning Seconds <QXZ>This setting controls the number of seconds after a customer hangs up before a warning that the customer has hung up will appear on the agent screen. Default is 30.</QXZ>
|
||||
campaigns-sip_event_logging SIP Event Actions <QXZ>SIP Event Logging Actions allows you to select a SIP_EVENT_ACTIONS Settings Container that contains all of the rules that you want followed for calls based upon different SIP Event Log triggers. Default is DISABLED.</QXZ>
|
||||
campaigns-screen_labels Agent Screen Labels <QXZ>You can select a set of agent screen labels to use with this option. Default is --SYSTEM-SETTINGS-- for the default labels.</QXZ>
|
||||
campaigns-allow_required_fields Allow Required Fields <QXZ>Must be enabled for required fields as defined in screen labels to work. Once a field is designated as required, the agent will not be allowed to hang up a lead until there is something filled in within that field, this will affect all calls the agent receives or places. Default is N for disabled.</QXZ>
|
||||
campaigns-status_display_fields Status Display Fields <QXZ>You can select which variables for calls will be displayed in the status line of the agent screen. CALLID will display the 20 character unique call ID, LEADID will display the system lead ID, LISTID will display the list ID, NAME will display the customer name. Default is CALLID.</QXZ>
|
||||
|
||||
Reference in New Issue
Block a user