✏️ 正在编辑: bordero.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/corretor/bordero.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Borderô</h1> <div id="filter"> <?php echo $this->form; ?> </div> <div id="view-content"> <form id="f_bordero" method="post"> <table summary="RecebimentoFisico"> <thead> <tr class="top_list"> <th></th> <th>N° Contrato</th> <th>N° ADE</th> <th>Cliente</th> <th>CPF</th> <th>Status</th> <th>Banco</th> <th>Convênio</th> <th>Vl. Contrato</th> <th>Dt. Emissão</th> </tr> </thead> <tbody> <?php if( count($this->producao) <= 0 ): ?> <tr> <td colspan="10">Nenhum resultado a ser exibido.</td> </tr> <?php else: ?> <?php foreach ( $this->producao as $producao ): ?> <tr> <td> <?php if( !$this->carrinhoFisico($producao, isset($_SESSION['carrinho']) ? $_SESSION['carrinho'] : null) ): ?> <div class="clear" align="center"> <a name="adicionar_contrato" href="javascript:void()" onclick="adicionarBorderoCarrinhoCorretor(<?php echo $producao['id_contrato']; ?>, this)" class="link_add" title="Adicionar a lista"></a> </div> <?php else: ?> <div class="clear" align="center"> <a href="#" class="link_apply" title="Inserido"></a> </div> <?php endif; ?> </td> <td class="selecionar"><?php echo $producao['numero_contrato'] ?></td> <td><?php echo $producao['numero_ade'] ?></td> <td><?php echo $producao['cliente'] ?></td> <td><?php echo $producao['cpf_cliente'] ?></td> <td><?php echo $producao['status_proposta_nome'] ?></td> <td><?php echo $producao['banco'] ?></td> <td><?php echo $producao['convenio'] ?></td> <td class="valor"><?php echo number_format($producao['valor_liquido'], 2, ',', '.') ?></td> <td><?php echo $this->dateFormat($producao['data_emissao']); ?></td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td class="negrito">Total: <?php echo count($this->producao); ?></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> <td class="negrito">Itens para impressão: <?php echo isset($_SESSION['carrinho']) ? count($_SESSION['carrinho']['carrinho']) : 0; ?></td> </tr> </tfoot> </table> <br> <div class="clear"> <input class="bt_apply" name="continuar_processo" id="continuar_processo" type="submit" value="Concluir Borderô" /> <?php if( isset($_SESSION['carrinho']) && count($_SESSION['carrinho']) > 0 ): ?> <input class="bt_new" name="btn_new" id="bt_new" type="button" value="Novo Borderô" onclick="window.location = '<?php echo $this->url(array('action' => 'bordero', 'new' => 1)); ?>'" /> <?php endif; ?> </div> </form> </div>
💾 保存文件
← 返回文件管理器