✏️ 正在编辑: atendimentos.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-relatorios/atendimentos.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Atendimentos</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <table> <thead> <tr class="top_list"> <th>Campanha</th> <th>Cliente</th> <th>Cpf</th> <th>UF</th> <th>Operador</th> <th>Data</th> <th>Status Histórico</th> <th>Comentário Histórico</th> <th>Status Atual</th> <th>Operador Atual</th> </tr> </thead> <tbody> <?php if( count($this->atendimentos) > 0 ): foreach( $this->atendimentos as $atendimento ): ?> <tr> <td><?php echo $atendimento['campanha']; ?></td> <td><?php echo $atendimento['cliente']; ?></td> <td><?php echo String_Refatorar::resetCpf($atendimento['cpf']); ?></td> <td><?php echo $atendimento['uf']; ?></td> <td><?php echo $atendimento['operador_atendimento']; ?></td> <td><?php echo $this->dateHourFormat($atendimento['data_atendimento']); ?></td> <td><?php echo $atendimento['status_atendimento']; ?></td> <td><?php echo $atendimento['comentario']; ?></td> <td><?php echo $atendimento['status_atendimento_atual']; ?></td> <td><?php echo $atendimento['operador_atual']; ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> <tfoot> <tr> <td colspan="7">Quantidade: <?php echo count($this->atendimentos); ?></td> </tr> </tfoot> </table> </div>
💾 保存文件
← 返回文件管理器