✏️ 正在编辑: receber-fisico.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/contrato/receber-fisico.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Recebimento de Físicos</h1> <div id="filter"> <?php echo $this->form; ?> </div> <div id="view-content"> <form action="<?php echo $this->url(array( 'controller' => 'contrato', 'action' => 'carrinho-compra-fisico' )) ?>" method="post" name="receber_fisico" id="receber_fisico"> <table summary="RecebimentoFisico" class="tablesorter" id="sortedTable"> <thead> <tr class="top_list"> <th>N° Contrato</th> <th>N° ADE</th> <th>Cliente</th> <th>CPF</th> <th>Convênio</th> <th>Banco</th> <th>Produto</th> <th>Prazo</th> <th>Status</th> <th>Corretor</th> <th>Rota</th> <th>Dt. Emissão</th> <th>Dt. Liberação</th> <th>Vl. Contrato</th> <th class="check_control"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> <th align="center" colspan="1"></th> </tr> </thead> <tbody> <?php if( count($this->producao) <= 0 ): ?> <tr> <td colspan="15">Nenhum resultado a ser exibido.</td> </tr> <?php else: ?> <?php foreach ( $this->producao as $producao ): ?> <tr> <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'] ?></td> <td><?php echo $producao['convenio'] ?></td> <td><?php echo $producao['banco'] ?></td> <td><?php echo $producao['tipo'] ?></td> <td><?php echo $producao['prazo'] ?></td> <td><?php echo $producao['status_proposta_nome'] ?></td> <td><?php echo $producao['corretor'] ?></td> <td><?php echo $producao['rota'] ?></td> <td><?php echo $this->dateFormat($producao['data_emissao']) ;?></td> <td><?php echo $this->dateFormat($producao['data_liberacao']) ;?></td> <td class="valor"><?php echo number_format($producao['valor_liquido'], 2, ',', '.') ?></td> <td align="center"><input type="checkbox" name="ck_contrato[<?php echo $producao['id']; ?>]" id="checks[]" value="<?php echo $producao['id']; ?>" /></td> <td> <?php if(!$this->carrinhoFisico($producao, isset($_SESSION['carrinho']) ? $_SESSION['carrinho'] : null)): ?> <div align="right" class="clear"> <input class="bt_new" name="adicionar_contrato" onclick="adicionarCarrinhoFisico(<?php echo $producao['id']; ?>, this, 'receber-fisico')" type="button" value="Adicionar" /> </div> <?php else: ?> <a href="#" class="link_apply" title="Inserido"></a> <?php endif; ?> </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 no carrinho: <?php echo isset($_SESSION['carrinho']) ? count($_SESSION['carrinho']['carrinho']) : 0; ?></td> </tr> </tfoot> </table> <br> <input type="hidden" name="caminho" value="receber-fisico"/> <div align="right" class="clear"><input class="bt_apply" name="continuar_processo" type="submit" value="Continuar" /></div> </form> </div>
💾 保存文件
← 返回文件管理器