✏️ 正在编辑: historico-indicador.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/indicador/historico-indicador.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Histórico do Indicador</h1> <table> <thead> <tr class="top_list"> <th>ID indicador</th> <th>Data Alteração</th> <th>Usuário Alteração</th> <th>Alteração</th> <th>Origem</th> </tr> </thead> <tbody> <?php if (count($this->result)):?> <?php foreach ($this->result as $item) : ?> <?php $alteracao = @unserialize($item['alteracao']); ?> <?php if($alteracao): ?> <tr> <td><?php echo $this->corretor_id; ?></td> <td><?php echo $this->formatDate($item['data_mudanca'], 'd/m/Y H:i:s'); ?></td> <td><?php echo $item['nome_usuario']; ?></td> <td> <?php if(is_array($alteracao)): $dbtableHistorico = new Model_DbTable_Log(); $data = $dbtableHistorico->prepareData($alteracao); if($data > 0): foreach ($data as $key => $value): ?> <p><?= $key; ?> => <?= $value ?></p> <?php endforeach; endif; endif; ?> </td> <td><?php echo $item['origem']; ?></td> </tr> <?php else: $oldInfo = true; endif;?> <?php endforeach; if($oldInfo): ?> <tr> <td colspan="5">Interações mais antigas não serão exibidas neste histórico.</td> </tr> <?php endif; else: ?> <tr> <td colspan="5">Nenhuma interação realizada.</td> </tr> <?php endif;?> </tbody> </table>
💾 保存文件
← 返回文件管理器