✏️ 正在编辑: tabela-geral-corretor.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/relatorio/tabela-geral-corretor.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Análise de Desempenho do Corretor</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <table class="relatorio"> <thead> <tr class="top_list"> <th>Corretor</th> <th>Total de Produção</th> <th>Percentual Representativo</th> <th>Qtd. Contratos Produzidos</th> </tr> </thead> <tbody> <?php if( count($this->paginator) <= 0 ): ?> <tr> <td colspan="15">Nenhum resultado a ser exibido.</td> </tr> <?php else: ?> <?php $totalProduzido = 0; $totalValorPago = 0; $qtd = 0; ?> <?php foreach ( $this->paginator as $registro ): ?> <?php $qtd++; $totalProduzido += $registro['total_producao']; ?> <tr> <td><?php echo $registro['nome']; ?></td> <td class="valor"><span>R$</span><?php echo number_format($registro['total_producao'], 2, ',', '.'); ?> <?php echo $registro['total_producao'] > $registro['producao_mes_anterior'] ? "<i class='glyphicon-reg glyphicon-reg-up_arrow' style='color: green' title='Produção acima do mês anterior'></i>" : "<i class='glyphicon-reg glyphicon-reg-down_arrow' style='color: red' title='Produção abaixo do mês anterior'></i>" ?></td> <td class="valor"><?php echo number_format($registro['percentual_representativo'], 2, ',', '.'); ?> (%)</td> <td class="valor"><?php echo $registro['total_contratos_produzidos']; ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> <?php if( count($this->paginator) > 0 ): ?> <tfoot> <tr> <td class="negrito">Total: <?php echo $qtd ?></td> <td class="valor"> <span>R$</span> <?php echo number_format($totalProduzido, 2, ',', '.'); ?> <i></i> </td> </tr> </tfoot> <?php endif; ?> </table> </div>
💾 保存文件
← 返回文件管理器