Páginas filhas
  • Chave - Integração TOP x Protheus - Mensagem Única

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
HTML
<html>
<head>
	<script src="http://lig-membres.imag.fr/donsez/cours/exemplescourstechnoweb/js_securehash/md5.js"></script>
	<script type="text/javascript">
	function teste()
	{
		var coligada = document.getElementById('coligada').value;
		
		var cnpj = document.getElementById('cnpj').value;
				
		var scriptt = "INSERT INTO HCPARAMETROS (CODCOLIGADA,NOMECOLUNA,VALORSTR) VALUES ({1},'CHAVEPACOTEMU_1002', '{0}')"
		document.getElementById('resultado').value = 
			calcMD5(coligada + cnpj + '1002')
		document.getElementById('scriptparametro').value = scriptt.replace("{0}",
			 document.getElementById('resultado').value).replace("{1}",coligada);
		
	}

	</script>
</head>
<b>Liberação de Chave Integração TOP x Protheus</b>
<BR>
<BR>
Código de Coligada:
<BR>
<input type="text" name="coligada" id="coligada" size="60">
<BR>
<BR>
CNPJ:
<BR>
<input type="text" name="cnpj" id="cnpj" size="60">
<BR>
<BR>
<input type="button" value="GERAR CHAVE" onclick="teste()">
<BR>
<BR>
<input type="text" name="resultado" id="resultado" size="60">
<BR>
<br>
Script:
<BR>
<textarea name="scriptparametro" id="scriptparametro" cols="40" rows="5"></textarea>
<BR>
</html>