Consultar CNPJ

Dados publicosInformacoes cadastrais da empresa.
CNAE e atividadesAtividade principal e secundarias.
SociosQuadro societario quando disponivel.
Pagina propriaURL individual para cada CNPJ.

' + ''; }function printCnpjReport() { if (!isCnpjPage()) { return; }var report = document.querySelector('[data-af-cnpj-report]') || document.querySelector('.af-cnpj-report');if (!report) { window.print(); return; }var clone = report.cloneNode(true);clone.querySelectorAll('.af-cnpj-footer-actions, button, .print-hide, .no-print').forEach(function (el) { el.remove(); });var iframe = document.createElement('iframe'); iframe.setAttribute('aria-hidden', 'true'); iframe.style.position = 'fixed'; iframe.style.right = '0'; iframe.style.bottom = '0'; iframe.style.width = '0'; iframe.style.height = '0'; iframe.style.border = '0'; iframe.style.opacity = '0';document.body.appendChild(iframe);var doc = iframe.contentWindow.document; doc.open(); doc.write(buildPrintHtml(clone.outerHTML, document.title || 'Consulta CNPJ')); doc.close();function doPrint() { iframe.contentWindow.focus(); iframe.contentWindow.print(); }iframe.contentWindow.onafterprint = function () { setTimeout(function () { iframe.remove(); }, 300); };setTimeout(doPrint, 400);setTimeout(function () { if (document.body.contains(iframe)) { iframe.remove(); } }, 60000); }document.addEventListener('click', function (event) { if (!isCnpjPage()) { return; }var target = event.target.closest('[data-af-cnpj-print], a, button, input[type="button"], input[type="submit"]');if (!target) { return; }var label = ( target.innerText || target.value || target.getAttribute('aria-label') || target.getAttribute('title') || '' ).toLowerCase();if (target.hasAttribute('data-af-cnpj-print') || label.indexOf('pdf') !== -1 || label.indexOf('imprimir') !== -1) { event.preventDefault(); event.stopPropagation(); event.stopImmediatePropagation(); printCnpjReport(); } }, true); })(); //# sourceURL=consulta-cnpj-print-clean-js-after