D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
crsys_ant
/
adm
/
app
/
gre
/
Views
/
Contrato
/
Filename :
ViewImprimeContrato.php
back
Copy
<style> html, body { margin: 0; height: 100%; background: #000; } iframe { width: 100%; height: 100vh; border: none; } </style> </head> <body> <?php if (!empty($this->Dados['pdf_url'])): ?> <iframe id="pdfFrame" src="<?php echo $this->Dados['pdf_url']; ?>"></iframe> <script> const frame = document.getElementById('pdfFrame'); frame.onload = function () { setTimeout(function () { // volta a tela do pedido na aba principal if (window.opener) { window.opener.location.href = "<?php echo URLADM . 'pedido/listar/?status=5'; ?>"; } }, 4000); }; </script> <?php else: ?> <p style="color:white;text-align:center;">PDF não encontrado.</p> <?php endif; ?>