✏️ 正在编辑: por-cpf.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/consulta/por-cpf.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local no-print">Consulta Dados</h1> <?php if (isset($this->creditosRestantes)): ?> <div id="messages"> <p class="alert">Você tem <span class="negrito"><?php echo $this->creditosRestantes; ?></span> créditos restantes para consulta.</p> </div> <?php endif; ?> <div id="view-content"> <table> <thead> <tr class="top_list"> <th>Benefício</th> <th>Espécie</th> <th>Concessão do Benefício</th> <th>Nome</th> <th>Nascimento</th> <th>Cidade</th> <th>UF</th> <th colspan="10"></th> </tr> </thead> <tbody> <?php if(count($this->beneficios) > 0): ?> <?php foreach($this->beneficios as $registro): ?> <tr> <td><?php echo $registro['beneficio']; ?></td> <td><?php echo $registro['especie']; ?></td> <td><?php echo !empty($registro['dib']) ? $this->dateFormat($registro['dib']) : ""; ?></td> <td><?php echo $registro['nome']; ?></td> <td><?php echo !empty($registro['data_nascimento']) ? $this->dateFormat($registro['data_nascimento']) : null; ?></td> <td><?php echo $registro['cidade']; ?></td> <td><?php echo $registro['uf']; ?></td> <td> <input type="button" onclick="detalharBeneficio('<?php echo $this->url(array('action' => 'por-beneficio', 'beneficio' => trim($registro['beneficio']), 'cpf' => $registro['cpf'])); ?>')" value="Detalhar" /> <input type="button" disabled="true" onclick="detalharBeneficio('<?php echo $this->url(array('action' => 'carta-concessao', 'beneficio' => trim($registro['beneficio']))); ?>')" value="Carta de Concessão" /> <input type="button" onclick="detalharBeneficio('<?php echo $this->url(array('action' => 'situacao-beneficio', 'beneficio' => trim($registro['beneficio']))); ?>')" value="Situação Benefício" /> </td> </tr> <?php endforeach; endif; ?> </tbody> </table> <input type="button" onclick="window.location='<?php echo $this->baseUrl() . "/consulta" ;?>'" value="Nova Consulta" /> </div>
💾 保存文件
← 返回文件管理器