✏️ 正在编辑: importar-capas.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/contrato/importar-capas.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Importar Capas</h1> <div id="view-content"> <?php echo $this->form; ?> <p class="clear"> </p> <div class="progress"> <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"> </div> </div> <h2 class="tit_local">Contratos Não Importados</h2> <table class="result_content"> <thead> <tr class="top_list"> <th>Contrato</th> <th>Tabela</th> <th>CPF</th> <th>Cliente</th> <th>Valor</th> <!--<th>Valor Líquido</th>--> <th>Prazo</th> <th>Cod. Vendedor</th> <th>Cod. Atendente</th> <th>Motivo</th> </tr> </thead> <tbody> <?php if ($this->nao_importados != null): ?> <?php foreach ($this->nao_importados as $contrato): ?> <tr> <td><?php echo $contrato['numero_contrato']; ?></td> <td><?php echo $contrato['tabela']; ?></td> <td><?php echo $contrato['cpf']; ?></td> <td><?php echo $contrato['cliente']; ?></td> <td class="valor"><span>R$ </span><?php echo $contrato['valor']; ?></td> <!--<td><?php echo $contrato['valor_liquido']; ?></td>--> <td><?php echo $contrato['prazo']; ?></td> <td><?php echo $contrato['codigo_vendedor']; ?></td> <td><?php echo $contrato['codigo_atendente']; ?></td> <td><?php echo $contrato['motivo']; ?></td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td class='total_registros'>Total: <?php echo count($this->nao_importados); ?></td> </tr> </tfoot> </table> </div>
💾 保存文件
← 返回文件管理器