✏️ 正在编辑: save-dependentes.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/funcionario/save-dependentes.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<div id="filter"> <?php echo $this->formDependente; ?> <div class="clear"></div> </div> <div id="view-content"> <?php if( $this->pagDependentes ): ?> <table summary="Dependentes"> <thead> <tr class="top_list"> <th>Nome</th> <th>Tipo</th> <th>Sexo</th> <th>Idade</th> <th>Plano de Saúde</th> <th>Desconto no IRPF</th> <th>Obs</th> <th colspan="2"></th> </tr> </thead> <tbody> <?php if( count($this->pagDependentes) == 0 ): ?> <tr> <td colspan="7">Nenhum funcionário encontrado.</td> </tr> <?php else: foreach ( $this->pagDependentes as $dependente ): ?> <tr> <td><?php echo $dependente['nome'] ?></td> <td><?php echo $dependente['tipo']; ?></td> <td><?php echo $dependente['sexo']; ?></td> <td><?php echo $dependente['idade']; ?></td> <td><?php echo number_format(($dependente['plano']), 2, ',', '.'); ?></td> <td><?php echo ($dependente['irpf']) ==1 ? "Sim" : "Não"; ?></td> <td><?php echo $dependente['obs']; ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'delete-dependente', 'id' => $dependente['id'], 'func' => $dependente['fornecedor_id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; endif ?> </tbody> <tfoot> <?php $qtdeFunc = count($this->pagDependentes); if( $qtdeFunc > 0 ): ?> <tr> <td>Total <?php echo $qtdeFunc; ?></td> <?php endif ?> </tr> </tfoot> </table> <?php endif; ?> </div>
💾 保存文件
← 返回文件管理器