| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/leve/application/lib/invoices/ |
Upload File : |
<html>
<head>
<style>
* { margin: 0; padding: 0; }
body {
font: 9px/0.9 dejavusanscondensed;
}
#page-wrap { width: 1000px; margin: 0 auto; }
table { border-collapse: collapse; }
table td, table th { border: 0.5px solid black; padding: 5px; text-align:center;}
table .semborda td, table .semborda th { border: 0 solid black; padding: 5px; }
#customer { overflow: hidden; }
#logo { text-align: right; float: right; position: relative; margin-top: 25px; border: 1px solid #fff; max-width: 540px; overflow: hidden; }
#meta { margin-top: 1px; width: 100%; float: right; }
#meta td { text-align: right; }
#meta td.meta-head { text-align: left; background: #eee; }
#meta td textarea { width: 100%; height: 20px; text-align: right; }
#items { clear: both; width: 100%; margin: 30px 0 0 0; border: 1px solid black; }
#terms { text-align: left; margin: 20px 0 0 0; }
#terms h5 { text-transform: uppercase; font: 13px <?php echo $config['pdf_font']; ?>; letter-spacing: 10px; border-bottom: 1px solid black; padding: 0 0 8px 0; margin: 0 0 8px 0; }
#terms textarea { width: 100%; text-align: center;}
</style>
</head>
<body style="font-family:dejavusanscondensed">
<div id="page-wrap">
<table width="100%" >
<tr>
<td style="border: 0;text-align: left" width="50%">
<img id="image" src="<?php echo APP_URL; ?>/application/storage/system/logo.png" alt="logo" />
</td>
<td style="border: 0; text-align: right" width="50%">
<div id="logo" style="font-size:18px">
<?php echo $config['caddress']; ?>
</div>
</td>
</tr>
<tr>
</tr>
</table>
<hr>
<div style="clear:both"></div>
<table width="100%">
<thead>
<tr>
<th colspan="6" class="center"><h2>PRESCRIÇÃO MÉDICA</h2>
</tr>
<tr>
<th colspan="6" class="center">
<span style="font-size: 12px;">
PACIENTE: <?php echo $guia['nomeBeneficiario']?> |
CONVÊNIO: UNIMED |
DATA: <?php echo $guia['Procedimento_dataExecucao']?>
</span>
</th>
</tr>
<tr>
<th>
#
</th>
<th>
Item
</th>
<th>
Unidade
</th>
<th>
Qtd
</th>
<th>
Via Admin
</th>
<th>
Horário
</th>
</tr>
</thead>
<tbody>
<?php
$str_despesa = '';
$count = 1;
foreach($arr_outras_despesas as $despesa)
{
$str_despesa .= "<tr>"
. "<td>".$count."</td>"
. "<td class='left'>".$despesa['tiss_item_term']."</td>"
. "<td>".$despesa['tiss_unit_code']."</td>"
. "<td>".$despesa['expense_qty']."</td>"
. "<td></td>"
. "<td></td>"
."</tr>";
$count++;
}
echo $str_despesa;
?>
</tbody>
</table>
<br/><br/>
</div>
</body>
</html>