✏️ 正在编辑: atendimentos.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/atendimento-corretor/atendimentos.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<table> <thead> <tr class="top_list"> <th>Data</th> <th>Usuário</th> <th>Status</th> <th>Descrição</th> <th>Motivo</th> </tr> </thead> <tbody> <?php if( count($this->atendimentos) > 0 ): foreach( $this->atendimentos as $atendimento ): ?> <tr> <td><?php echo $this->dateFormat($atendimento['data_ligacao']); ?></td> <td><?php echo $atendimento['login']; ?></td> <td><?php echo empty($atendimento['status']) ? "AGENDADO - {$this->dateFormat($atendimento['data_proximo_contato'])}" : $atendimento['status']; ?></td> <td><?php echo $atendimento['descricao']; ?></td> <td><?php echo $atendimento['motivo']; ?></td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td colspan="4">Quantidade: <?php echo count($this->atendimentos); ?></td> </tr> </tfoot> </table>
💾 保存文件
← 返回文件管理器