✏️ 正在编辑: tabela-fatores.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/corretor/tabela-fatores.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Tabela de Fatores</h1> <div id="view-content"> <?php echo $this->form; ?> <br class="clear" /> <div id="view-content"> <?php if ($this->fatores): ?> <table summary="Tabelas"> <thead> <tr class="top_list"> <th>Banco</th> <th>Tabela</th> <th>Prazo</th> <th>Fator</th> <th>Dia</th> </tr> </thead> <tbody> <?php if (count($this->fatores) <= 0): ?> <tr> <td colspan="6">Nenhuma tabela encontrada.</td> </tr> <?php else: foreach ($this->fatores as $fator): $banco = $fator->findParentRow('Model_DbTable_Banco'); $tabela = $fator->findParentRow('Model_DbTable_Tabela'); ?> <tr> <td><?php echo $banco['nome']; ?></td> <td><?php echo $tabela['nome']; ?></td> <td><?php echo $fator['prazo']; ?></td> <td><?php echo number_format($fator['fator'], 6, ',', '.'); ?></td> <td><?php echo $fator['dia']; ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table> <?php endif; ?> </div> <br /> <div class="clear"></div> </div>
💾 保存文件
← 返回文件管理器