✏️ 正在编辑: index.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/tributo/index.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Tabela INSS</h1> <div id="view-content"> <table> <thead> <tr class="top_list"> <th>Tipo</th> <th>%</th> <th>Valor Inicial</th> <th>Valor Final</th> <th></th> </tr> </thead> <tbody> <?php if( count($this->paginator) > 0 ): foreach ( $this->paginator as $tributo ): if( $tributo['tipo'] == "INSS" ): ?> <tr> <td><?php echo $tributo['tipo']; ?></td> <td class="valor"><span></span><?php echo number_format($tributo['percentual'], 2, ',', '.'); ?>%</td> <td class="valor"><span>R$ </span><?php echo number_format($tributo['valor_inicial'], 2, ',', '.'); ?></td> <td class="valor"><span>R$ </span><?php echo number_format($tributo['valor_final'], 2, ',', '.'); ?></td> <td ><a href="<?php echo $this->url(array( 'action' => 'save', 'id' => $tributo['id'] )); ?>" class="link_edit" title="Editar"></a></td> </tr> <?php endif; endforeach; endif; ?> </tbody> </table> <br /> <h1 class="tit_local">Tabela IRPF</h1> <table> <thead> <tr class="top_list"> <th>Tipo</th> <th>%</th> <th>Valor Inicial</th> <th>Valor Final</th> <th>Valor Dedução (IRPF)</th> <th></th> </tr> </thead> <tbody> <?php if( count($this->paginator) > 0 ): foreach ( $this->paginator as $tributo ): if( $tributo['tipo'] == "IRPF" ): ?> <tr> <td><?php echo $tributo['tipo']; ?></td> <td class="valor"><span></span><?php echo number_format($tributo['percentual'], 2, ',', '.'); ?>%</td> <td class="valor"><span>R$ </span><?php echo number_format($tributo['valor_inicial'], 2, ',', '.'); ?></td> <td class="valor"><span>R$ </span><?php echo number_format($tributo['valor_final'], 2, ',', '.'); ?></td> <td class="valor"><span>R$ </span><?php echo number_format($tributo['valor_deducao'], 2, ',', '.'); ?></td> <td ><a href="<?php echo $this->url(array( 'action' => 'save', 'id' => $tributo['id'] )); ?>" class="link_edit" title="Editar"></a></td> </tr> <?php endif; endforeach; endif; ?> </tbody> </table> <br /> <h1 class="tit_local">Configuração do Valor de dedução mensal por dependente (IRPF)</h1> <table> <thead> <tr class="top_list"> <th></th> <th>Valor</th> <th></th> </tr> </thead> <tbody> <tr> <td>DEPENDENTE</td> <?php $dependente = $this->valorDependente; ?> <td>R$ <?php echo number_format($dependente['valor_dependente_irpf'], 2, ',', '.'); ?></td> <td ><a href="<?php echo $this->url(array( 'action' => 'save', 'id' => $dependente['id'], 'dependente' => '1' )); ?>" class="link_edit" title="Editar"></a></td> </tr> </tbody> </table> </div>
💾 保存文件
← 返回文件管理器