✏️ 正在编辑: ranking-vendas.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/callcenter/ranking-vendas.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h2 align="center">Ranking de Vendas</h2> <div class="container-box"> <table class="aniversariantes-do-dia"> <thead> <tr> <th>#</th> <th>Operador</th> <th>Valor Produção</th> </tr> </thead> <?php if( count($this->ranking_vendas) > 0 ): ?> <?php $cont = 1; foreach ( $this->ranking_vendas as $dados ): $rankingVenda = array_filter($dados); ?> <tbody> <tr> <?php if( $rankingVenda ): ?> <td align="center"><?php echo $cont++; ?></td> <td align="center"><?php echo $rankingVenda['corretor'] ?></td> <td align="center"><span>R$ </span><?php echo number_format($rankingVenda['valor_producao'], 2, ',', '.') ?></td> <?php else: ?> <td align="center" colspan="3">Nenhum registro encontrado.</td> <?php endif; ?> </tr> </tbody> <?php endforeach; ?> <?php endif; ?> </table> </div>
💾 保存文件
← 返回文件管理器