✏️ 正在编辑: historico-pendencias.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/proposta/historico-pendencias.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php echo $this->form_historico_pendencias; ?> <div class="clear"></div> <table> <thead> <tr class="top_list"> <td>Data</td> <td>Digitador</td> <td>Descrição</td> <td colspan="2"></td> </tr> </thead> <tbody> <?php if (!$this->historico_pendencias): ?> <tr> <td colspan="6">Nenhum histórico a ser exibido.</td> </tr> <?php else: ?> <?php foreach ($this->historico_pendencias as $historicoPendencia): ?> <tr> <td><?php echo $this->dateFormat($historicoPendencia->data_historico, 'dd/MM/yyyy HH:mm'); ?></td> <td><?php echo $historicoPendencia->digitador; ?></td> <td><?php echo $historicoPendencia->descricao; ?></td> <?php if($historicoPendencia->resolvida): ?> <td>Resolvida por: <b><?php echo $historicoPendencia->resolvida_por ?></b> em: <?php echo $this->dateFormat($historicoPendencia->resolvida_em, 'dd/MM/yyyy HH:mm'); ?></td> <?php elseif(Yuppie_Auth::getIdentity()->grupo != 'Corretor' && empty(Yuppie_Auth::getIdentity()->corretor_id)): ?> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'resolve-historico', 'id' => $historicoPendencia['id'], 'contrato_id' => $historicoPendencia['contrato_id'] )) ?>" class="link_apply" onclick="cleanExit();" title="Resolver Pendência"></a></td> <?php elseif($historicoPendencia['interacao_corretor'] != 1 && (Yuppie_Auth::getIdentity()->grupo == 'Corretor' || !empty(Yuppie_Auth::getIdentity()->corretor_id))): ?> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'interacao-corretor', 'id' => $historicoPendencia['id'], 'contrato_id' => $historicoPendencia['contrato_id'] )) ?>" class="icon_send" onclick="cleanExit();" title="Marcar interação"></a></td> <?php else: ?> <?php endif;?> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'delete-historico', 'id' => $historicoPendencia['id'], 'contrato_id' => $historicoPendencia['contrato_id'] )) ?>" class="link_remove" onclick="cleanExit();" title="Excluir Descrição"></a></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table>
💾 保存文件
← 返回文件管理器