You can churn list with disposition in vicidial / Goautodial through back end with such command....
mysql -p
use asterisk;
update vicidial_list set status='NEW',called_since_last_reset='N' where list_id='104'and status='A';
only need to change list id and status, through this command you can churn a particular disposition.
For multiple list id and status
update vicidial_list set status='NEW',ca lled_since_last _reset='N' where list_id in ('104','105','1 33') and status in ('A','NA')
mysql -p
use asterisk;
update vicidial_list set status='NEW',called_since_last_reset='N' where list_id='104'and status='A';
only need to change list id and status, through this command you can churn a particular disposition.
For multiple list id and status
update vicidial_list set status='NEW',ca
No comments:
Post a Comment