✏️ 正在编辑: diario-rota.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/relatorio/diario-rota.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Diário de Rota - Relatório de Visitas</h1> <div id="filter"> <?php echo $this->form; ?> </div> <div class="clear"></div> <table> <thead> <tr class="top_list"> <th>Corretor</th> <th>Rota</th> <th>Data</th> <th>Localidade</th> <th>Resumo</th> </tr> </thead> <tbody> <?php if( count($this->diarios) <= 0 ): ?> <tr> <td colspan="7">Nenhum resultado a ser exibido.</td> </tr> <?php else: foreach($this->diarios as $registro): ?> <tr> <td><?php echo $registro['corretor']; ?></td> <td><?php echo $registro['rota']; ?></td> <td><?php echo $this->dateFormat($registro['data']); ?></td> <td><?php echo $registro['cidade'] . " - " . $registro['uf']; ?></td> <td><?php echo $registro['resumo']; ?></td> </tr> <?php endforeach; endif;?> </tbody> <tfoot> <tr> <td>Quantidade: <?php echo count($this->diarios); ?></td> <td></td> <td></td> <td></td> <td></td> </tr> </tfoot> </table>
💾 保存文件
← 返回文件管理器