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.
 
 

14 lines
408 B

<?php
include 'AltaRede.php';
$atr = new AltaRede();
$document = $atr->agi()->get_variable('DOCUMENTOCLIENTE', true);
$retorno = $atr->desbloqueiaCliente($document);
if ($retorno['message'] != 'Sem resultados') {
$atr->executarFluxo('ANUNCIO', 'INT_DESBLOQUEIO_SUCESSO'.CONF_NOME_EMPRESA); // Sucesso
} else {
$atr->executarFluxo('ANUNCIO', 'INT_DESBLOQUEIO_FALHA'.CONF_NOME_EMPRESA); // Falha
}