✏️ 正在编辑: sinc-start-consig.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/sincronizacao/sinc-start-consig.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Sincronizar StartConsig</h1> <div id="view-content"> <?php echo $this->form; ?> <div class="clear"></div> <?php if (count($this->nao_importados) > 1): unset($this->nao_importados['total_importados'])?> <h2 class="tit_local">Contratos Não Importados</h2> <table class="result_content" id="sinc-startConsig"> <thead> <tr class="top_list"> <th>Nº ADE</th> <th>Banco</th> <th>Corretor</th> <th>CPF</th> <th>Cliente</th> <th>Valor</th> <th>Motivo</th> </tr> </thead> <tbody> <?php foreach ($this->nao_importados as $contrato): ?> <tr> <td><?php echo $contrato['numero_contrato']; ?></td> <td><?php echo $contrato['banco'] ?></td> <td><?php echo $contrato['corretor'] ?></td> <td><?php echo String_Refatorar::resetCpf($contrato['cpf']); ?></td> <td><?php echo $contrato['cliente']; ?></td> <td class="valor"><span>R$ </span><?php echo number_format($contrato['valor'], 2, ',', "."); ?></td> <td><?php echo $contrato['motivo']; ?></td> </tr> <?php endforeach; ?> </tbody> <tfoot> <tr> <td>Total: <?php echo count($this->nao_importados); ?></td> </tr> </tfoot> </table> <?php endif; ?> </div>
💾 保存文件
← 返回文件管理器