✏️ 正在编辑: extrato-ligacoes.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-relatorios/extrato-ligacoes.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Extrato de Ligações</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <table class="tablesorter font-big table_export" id="sortedTable"> <thead> <tr class="top_list"> <th>Data da Ligação</th> <th>Cliente</th> <th>Cpf</th> <th>Telefone</th> <th>Tabulação</th> <th>Status Telefone</th> </tr> </thead> <tbody> <?php if( count($this->atendimentos) > 0 ): foreach( $this->atendimentos as $atendimento ): ?> <tr> <td><?php echo $this->dateHourFormat($atendimento['data_atendimento']); ?></td> <td><?php echo $atendimento['cliente']; ?></td> <td><?php echo String_Refatorar::resetCpf($atendimento['cpf']); ?></td> <td><?php echo $atendimento['fone']; ?></td> <td><?php echo $atendimento['status_atendimento']; ?></td> <td><?php echo $this->statusDiscador($atendimento['discador_status']); ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> <tfoot> <tr> <td colspan="6">Quantidade: <?php echo count($this->atendimentos); ?></td> </tr> </tfoot> </table> <div> <button type="button" class="export_csv bt_export">Exportar CSV</button> </div> </div>
💾 保存文件
← 返回文件管理器