repositório com os arquivos utilizados para integração entre o sistema SimplesIP e diversos sistemas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

51 lines
1.4 KiB

<?php
include 'HubSoft.php';
$registros = array(
"id" => '',
"reg_ura" => $ura,
"reg_tronco" => $tronco,
"reg_uniqueid" => $uid,
"reg_id_metodo" => $idMetodo,
"reg_uniqueid" => $uid,
"reg_uniqueid_old" => $uidOld,
"reg_fone" => $numero,
"reg_status_exec" => '1',
"reg_inicio" => date());
$hub = new HubSoft(
CONF_URL_API,
CONF_USERID_API,
CONF_TOKEN_API,
CONF_USER_API,
CONF_PASSWORD_API,
CONF_LOGGER_ATIVO
);
$hub->db()->setRegistros($registros);
if (CONF_AUDIO_ERROR) {
$hub->db()->setIdAudioError(CONF_AUDIO_ERROR);
}
$telefoneCliente = $hub->agi()->get_variable('TELEFONEPRIMARIO', true);
$emailCliente = $hub->agi()->get_variable('EMAILCLIENTE', true);
$response = $hub->consultaPendencia($hub->agi()->get_variable('CODCLIENTE', true));
$envio = false;
foreach($response['faturas'] as $fatura){
$resp = $hub->enviaFaturaEmail($fatura['id_fatura']);
if($resp['status'] == 'success'){
$envio = true;
}
}
if ($envio) {
$hub->agi()->exec_goto($hub->db()->getAnuncio('INT_FATURA_SUCESSO'));
} else {
$hub->agi()->exec_goto($hub->db()->getAnuncio('INT_FATURA_FALHA'));
}
$hub->db()->atualizaIntegracao();
?>