✏️ 正在编辑: receptivos-agendados.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter/receptivos-agendados.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Agendados</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>Nome</th> <th>CPF</th> <th>Nascimento</th> <th>Cidade</th> <th>UF</th> <th>Status Atendimento</th> <th>Último Atendimento</th> <th>Usuário</th> <th>Data Agendada</th> <th>Hora Agendada</th> <th colspan="2"></th> </tr> </thead> <tbody> <?php if( count($this->receptivos) > 0 ): foreach( $this->receptivos as $base ): ?> <tr> <td><?php echo $base['campanha']; ?></td> <td><?php echo $base['nome']; ?></td> <td><?php echo String_Refatorar::ocultarCaracteres(String_Refatorar::resetCpf($base['cpf'])); ?></td> <td><?php echo $this->dateFormat($base['data_nascimento']); ?></td> <td><?php echo $base['cidade']; ?></td> <td><?php echo $base['uf']; ?></td> <td><?php echo $base['status_atendimento']; ?></td> <td><?php echo $this->dateFormat($base['data_ultimo_atendimento']); ?></td> <td><?php echo $base['usuario']; ?></td> <td><?php echo $this->dateFormat($base['agendado_para']); ?></td> <td><?php echo $base['hora_agendada']; ?></td> <td><a href="#" onclick="openWin('<?php echo $this->url(array('controller' => 'callcenter', 'action' => 'ver-cliente', 'id' => $base['id'])); ?>', 1000, 670, 1)" title="Visualizar dados do cliente" class="link_view"></a></td> <td><a href="<?php echo $this->url(array('controller' => 'callcenter', 'action' => 'exibir-cliente', 'id' => $base['id'])); ?>" title="Atender Cliente" class="link_client"></a></td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td colspan="14">Quantidade: <?php echo count($this->receptivos); ?></td> </tr> </tfoot> </table> </div>
💾 保存文件
← 返回文件管理器