✏️ 正在编辑: atendimentos.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/callcenter/atendimentos.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<table> <thead> <tr class="top_list"> <th>Campanha</th> <th>Data</th> <th>Usuário</th> <th>Status</th> <th>Comentário</th> <th>Gravação Preditivo</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 $this->dateHourFormat($atendimento['data_atendimento']); ?></td> <td><?php echo $atendimento['login']; ?></td> <td><?php echo $atendimento['status_atendimento']; ?></td> <td><?php echo $atendimento['comentario']; ?></td> <td align="center"> <?php if( !empty($atendimento['telefone_chamada']) ): ?> <a href="#" title="Baixar gravação" class="glyphicon-reg glyphicon-reg-disk_save" style="text-decoration: none" onclick="window.open('<?php echo $this->url(['controller' => 'callcenter', 'action' => 'baixar-gravacao', 'chamada_id' => $atendimento['telefone_chamada']]); ?>')"> </a> <?php endif; ?> </td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td colspan="6">Quantidade: <?php echo count($this->atendimentos); ?></td> </tr> </tfoot> </table>
💾 保存文件
← 返回文件管理器