✏️ 正在编辑: analise-vendas.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-relatorios/analise-vendas.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Análise de Vendas</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <table> <thead> <tr class="top_list"> <th>Cliente</th> <th>CPF</th> <th>Atendido em</th> <th>Convênio</th> <th>Nº Contrato</th> <th>Data Liberação</th> <th>Banco</th> <th>Tipo</th> <th>Base Comissão</th> <th>Contratos anteriores</th> <th>Corretor</th> <th>Campanha</th> <th>Empresa</th> <th>UTM Source</th> <th>UTM Campaign</th> </tr> </thead> <tbody> <?php $valorTotal = 0; if( count($this->relatorio) > 0 ): foreach( $this->relatorio as $relatorio ): $valorTotal += $relatorio['base_comissao_empresa_valor']; ?> <tr> <td><?php echo $relatorio['cliente']; ?></td> <td><?php echo String_Refatorar::ocultarCaracteres(String_Refatorar::resetCpf($relatorio['cpf'])); ?></td> <td><?php echo $this->dateHourFormat($relatorio['atendido_em']); ?></td> <td><?php echo $relatorio['convenio']; ?></td> <td><?php echo $relatorio['numero_contrato']; ?></td> <td><?php echo $this->dateFormat($relatorio['data_liberacao']); ?></td> <td><?php echo $relatorio['banco']; ?></td> <td><?php echo $relatorio['tipo']; ?></td> <td><?php echo number_format($relatorio['base_comissao_empresa_valor'], 2, ',', '.'); ?></td> <td><?php echo $relatorio['qtd_contratos_antes']; ?></td> <td><?php echo $relatorio['corretor']; ?></td> <td><?php echo $relatorio['campanha']; ?></td> <td><?php echo $relatorio['empresa']; ?></td> <td><?php echo $relatorio['utm_source']; ?></td> <td><?php echo $relatorio['utm_campaign']; ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> <tfoot> <tr> <td colspan="9">Quantidade: <?php echo count($this->relatorio); ?></td> <td colspan="7"><?php echo number_format($valorTotal, 2, ',', '.'); ?></td> </tr> </tfoot> </table> </div>
💾 保存文件
← 返回文件管理器