✏️ 正在编辑: exportar-faixa-valores.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/gerente-rota/exportar-faixa-valores.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Exportar Faixa Valores</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <form action="<?php echo $this->url(array('action' => 'opcoes-percentual')); ?>" method="post" onsubmit="validarChecks(this)"> <table> <thead> <tr class="top_list"> <th>Supervisor</th> <th>Banco</th> <th>Convênio</th> <th>Tabela</th> <th>Tipo Produto</th> <th>% De </th> <th>% A </th> <th>Comissão</th> <th>Prazo</th> <th>Data Inicial</th> <th>Data Final</th> <th class="check_control"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> </tr> </thead> <tbody> <?php $count = 0; if( count($this->percentuais) > 0 ): ?> <?php foreach ( $this->percentuais as $comissao ): $count++; ?> <tr> <td><?php echo $comissao['supervisor']; ?></td> <td><?php echo $comissao['banco']; ?></td> <td><?php echo $comissao['convenio']; ?></td> <td><?php echo $comissao['tabela']; ?></td> <td><?php echo $comissao['tipo_produto']; ?></td> <td><?php echo number_format($comissao['percentual_de'], 6, ',', '.'); ?></td> <td><?php echo number_format($comissao['percentual_a'], 6, ',', '.'); ?></td> <td><?php echo number_format($comissao['comissao'], 6, ',', '.'); ?></td> <td><?php echo $comissao['prazo']; ?></td> <td><?php echo $this->dateFormat($comissao['data_inicial']); ?></td> <td><?php echo $this->dateFormat($comissao['data_final']); ?></td> <td align="center"><input type="checkbox" id="checks[]" name="ck_comissoes[]" value="<?php echo $comissao['id'] ?>" /></td> </tr> <?php endforeach; ?> <tfoot> <tr> <td>Total: <?php echo $count; ?></td> </tr> </tfoot> <?php endif; ?> </tbody> </table> <input type="submit" name="botao_input" id="botao_input" value="Exportar Selecionados" /> <br></br> <tfoot> <tr> <td colspan="3"> Ações: <select name="acao" id="acao"> <option value=""></option> <option value="1">Exportar para outra tabela</option> <option value="2">Exportar para outro prazo</option> <option value="3">Excluir Selecionados</option> </select> <input type="submit" value="Ok" /> </td> </tr> </tfoot> </form> </div>
💾 保存文件
← 返回文件管理器