✏️ 正在编辑: detalhamento-custo.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/funcionario/detalhamento-custo.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Detalhamento de custos</h1> <?php $funcionario = $this->dados_funcionario; ?> <table> <thead> <tr class="top_list"> <th colspan="6"> </th> </tr> </thead> <tbody> <tr> <td width="60px">Nome:</td><td><?= $funcionario['nome'] ?></td> <td width="60px">CPF:</td><td colspan="3"><?= $funcionario['cpf_responsavel'] ?></td> </tr> <tr> <td width="60px">Salário Base:</td><td><span>R$ </span><?= number_format($funcionario['salario_base'], 2, ',', '.'); ?></td> <td width="60px">Vale Transporte:</td><td><span>R$ </span><?= number_format($funcionario['vale_transporte'], 2, ',', '.'); ?></td> <td width="60px">Vale Alimentação:</td><td><span>R$ </span><?= number_format($funcionario['vale_alimentacao'], 2, ',', '.'); ?></td> </tr> <tr> <td width="60px">INSS:</td><td><span>R$ </span><?= number_format($this->CalculoDetalhamento($funcionario['salario_base'], 'INSS'), 2, ',', '.'); ?></td> <td width="60px">FGTS:</td><td><span>R$ </span><?= number_format($this->CalculoDetalhamento($funcionario['salario_base'], 'FGTS'), 2, ',', '.'); ?></td> <td width="60px">Desconto VT:</td><td><span>R$ </span><?= number_format($this->CalculoDetalhamento($funcionario['salario_base'], 'VT'), 2, ',', '.'); ?></td> </tr> </tbody> </table>
💾 保存文件
← 返回文件管理器