53
| <![CDATA[<p style="width:220px;float:left;margin-left:1%">
<label for="tbCNPJPrestador" style="margin:0;padding:0">CPF-CNPJ do prestador</label>
<input OnKeyPress="return SoNumero(event)" id="tbCNPJPrestador" maxlength="14" name="tbCNPJPrestador" style="width: 200px;display:block" type="text" value="" />
</p>]]>
|
54
| <![CDATA[<label for="tbCNPJPrestador" style="margin:0;padding:0">CPF-CNPJ do prestador</label>]]>
|
55
| <![CDATA[<input OnKeyPress="return SoNumero(event)" id="tbCNPJPrestador" maxlength="14" name="tbCNPJPrestador" style="width: 200px;display:block" type="text" value="" />]]>
|
57
| <![CDATA[<p id="identPrestador" style="padding-top:14px"></p>]]>
|
58
| <![CDATA[<p style="clear:both;float:left;width:220px;margin-left:1%">
<label for="tbNumeroNFSe">Número</label>
<input OnKeyPress="return SoNumero(event)" id="tbNumeroNFSe" maxlength="15" name="tbNumeroNFSe" style="width: 120px;display:block" type="text" value="" />
</p>]]>
|
60
| <![CDATA[<input OnKeyPress="return SoNumero(event)" id="tbNumeroNFSe" maxlength="15" name="tbNumeroNFSe" style="width: 120px;display:block" type="text" value="" />]]>
|
62
| <![CDATA[<p style="float:left">
<label for="tbCodigoVerificacao">Código verificador</label>
<input id="tbCodigoVerificacao" maxlength="14" name="tbCodigoVerificacao" style="width: 120px;display:block" type="text" value="" />
</p>]]>
|
64
| <![CDATA[<input id="tbCodigoVerificacao" maxlength="14" name="tbCodigoVerificacao" style="width: 120px;display:block" type="text" value="" />]]>
|
69
| <![CDATA[<p style="margin-bottom:1px;margin-left:1%">
<label for="tbCAPTCHA">Informe o texto da imagem ao lado</label>
</p>]]>
|
72
| <![CDATA[<p style="clear:both;margin-left:1%">
<input Maxlength="10" OnKeyPress="return BloqueiaInjection(event)" id="tbCAPTCHA" name="tbCAPTCHA" style="width: 250px; text-transform: uppercase;float:left" type="text" value="" />
<img id="imgCAPTCHA" src='/NFSEPlacar/Placar/getCAPTCHA' style="width: 85px; height: 22px;float:left;margin-left:30px" alt="Imagem de controle"/>
<img title="Gera uma nova imagem de controle" id="newCAPTCHA" src='/NFSEPlacar/Content/Refresh.png' style="width: 26px; height: 22px; margin: 0; padding: 0; cursor:pointer" alt="Gera uma nova imagem de controle"/>
</p>]]>
|
73
| <![CDATA[<input Maxlength="10" OnKeyPress="return BloqueiaInjection(event)" id="tbCAPTCHA" name="tbCAPTCHA" style="width: 250px; text-transform: uppercase;float:left" type="text" value="" />]]>
|
74
| <![CDATA[<img id="imgCAPTCHA" src='/NFSEPlacar/Placar/getCAPTCHA' style="width: 85px; height: 22px;float:left;margin-left:30px" alt="Imagem de controle"/>]]>
|
75
| <![CDATA[<img title="Gera uma nova imagem de controle" id="newCAPTCHA" src='/NFSEPlacar/Content/Refresh.png' style="width: 26px; height: 22px; margin: 0; padding: 0; cursor:pointer" alt="Gera uma nova imagem de controle"/>]]>
|
80
| <![CDATA[<p style="margin-left:1%">
<input type="submit" name="action" value="Verificar autenticidade" />
<input type="submit" name="action" value="Limpar formulário" id="btnLimpar" />
</p>]]>
|
14
| <![CDATA[<script type="text/javascript">
$(function () {
var cod = '';
if (cod.length > 0)
PrintNFSe('http://nfse.pmfi.pr.gov.br/nfseWeb/NFSE/ImprimeNFSExterno?I={0}&codVerificador={1}', cod, $('#tbCodigoVerificacao').val());
if ($('#tbCNPJPrestador').val() != "")
DadosPrestador($('#tbCNPJPrestador').val());
$('#tbCNPJPrestador').change(function () {
DadosPrestador($('#tbCNPJPrestador').val());
})
$('#newCAPTCHA').click(function () {
$('#tbCAPTCHA').val('').focus();
var Text = Math.floor(Math.random() * 20);
$('#imgCAPTCHA').fadeOut('fast').delay(200).attr('src', '/NFSEPlacar/Placar/getCAPTCHA' + '/' + Text).delay(500).fadeIn('fast');
});
$(':button, :submit').button();
})
function DadosPrestador(doc) {
$.post('/NFSEPlacar/Placar/getEmpresa', { stCNPJ: doc }, function (data) {
if (typeof (data.nomeFantasia) != 'undefined') {
var endereco = ("{0},{1}".replace("{0}", data["endLogradouro"]).replace("{1}", data["endNumero"]));
$('#identPrestador').html(data["nomeFantasia"] + '<br /><i style="font-size:10px">' + endereco + '</i>');
}
else
$('#identPrestador').html('');
})
}
</script>]]>
|