✏️ 正在编辑: ranking-envios-pendentes.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/relatorio/ranking-envios-pendentes.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Ranking Envios Pendentes</h1> <div id="filter"> <?php echo $this->form; ?> </div> <div id="columns_selected"> <fieldset> <legend>Selecione as colunas para exibição</legend> <dl> <dd><input type="checkbox" id="select_column1" name="select_column1" value="1" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column1">Corretor</label></dt> <dd><input type="checkbox" id="select_column2" name="select_column2" value="2" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column2">Supervisor</label></dt> <dd><input type="checkbox" id="select_column3" name="select_column3" value="3" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column3">Rota</label></dt> <dd><input type="checkbox" id="select_column4" name="select_column4" value="4" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column4">Qtde físicos pendentes</label></dt> <dd><input type="checkbox" id="select_column5" name="select_column5" value="5" onchange="hideShowTableColumn(this)" checked="checked" /></dd> <dt><label for="select_column5">%</label></dt> </dl> </fieldset> <div class="clear"></div> </div> <div id="view-content"> <table summary="RelProducao" class="tablesorter relatorio" id="sortedTable"> <thead> <tr class="top_list"> <th>Corretor</th> <th>Supervisor</th> <th>Rota</th> <th>Qtd. Pentende</th> <th>%</th> </tr> </thead> <tbody> <?php $total = 0; if( count($this->producao) <= 0 ): ?> <tr> <td colspan="5">Nenhum resultado a ser exibido.</td> </tr> <?php else: ?> <?php $total = $this->sumColsArray($this->producao, 'qtd_pendentes'); foreach ( $this->producao as $producao ): ?> <tr> <td><?php echo $producao['corretor']; ?></td> <td><?php echo $producao['supervisor']; ?></td> <td><?php echo $producao['rota']; ?></td> <td><?php echo $producao['qtd_pendentes']; ?></td> <td><?php echo number_format(($producao['qtd_pendentes'] * 100 / $total), 2, ',', '.'); ?> %</td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td class="negrito">Total: <?php echo count($this->producao); ?></td> <td class="negrito"></td> <td class="negrito"></td> <td class="negrito"><?php echo number_format($total, 0, '', '.'); ?></td> <td class="negrito"></td> </tr> </tfoot> </table> </div>
💾 保存文件
← 返回文件管理器