✏️ 正在编辑: enviar-fisico.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/contrato/enviar-fisico.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Envio de Físicos</h1> <div id="filter"> <?php echo $this->form; ?> </div> <form action="<?php echo $this->url(array( 'controller' => 'contrato', 'action' => 'carrinho-compra-fisico' )) ?>" method="post" name="enviar_fisico" id="enviar_fisico"> <div id="view-content"> <?php if( $this->producao ): ?> <table summary="EnvioFisico" class="relatorio selecionar"> <thead> <tr class="top_list"> <th>N° Contrato</th> <th>Agendado para:</th> <th>Cliente</th> <th>CPF</th> <th>Convênio</th> <th>Prazo</th> <th>Produto</th> <th>Status</th> <th>Corretor</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="11">Nenhum resultado a ser exibido.</td> </tr> <?php else: ?> <?php foreach ( $this->producao as $producao ): ?> <tr> <td><?php echo $producao['numero_contrato'] ?> <?php echo isset($producao['numero_ade']) && $producao['numero_ade'] > 0 ? " | <br />" . $producao['numero_ade'] : ""; ?></td> <td><?php echo $this->dateFormat($producao['data_agendamento_proposta']) ." ".$producao->hora_agendada; ?></td> <td><?php echo $this->limitSizeTextList($producao['cliente']) ?></td> <td><?php echo $producao['cpf'] ?></td> <td><?php echo $this->limitSizeTextList($producao['convenio']) ?></td> <td><?php echo $producao['prazo'] ?></td> <td><?php echo $producao['produto']." (".$producao['tipo'].")" ?></td> <td><?php echo $this->limitSizeTextList($producao['status_proposta_nome']) ?></td> <td><?php echo $this->limitSizeTextList($producao['corretor']) ?></td> <td class="valor"><?php echo number_format($producao['valor_liquido'], 2, ',', '.') ?></td> <td align="center"><input type="checkbox" name="ck_contrato[]" id="checks[]" value="<?php echo $producao['id']; ?>" /></td> <td> <?php if( !$this->carrinhoFisico($producao, isset($_SESSION['carrinho_enviar_fisico']) ? $_SESSION['carrinho_enviar_fisico'] : null) ): ?> <div align="right" class="clear"> <input class="bt_new" name="adicionar_contrato" onclick="adicionarCarrinhoFisico(<?php echo $producao['id']; ?>, this, 'enviar-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_enviar_fisico']) ? count($_SESSION['carrinho_enviar_fisico']['carrinho_enviar_fisico']) : 0; ?></td> </tr> </tfoot> </table> </div> <input type="hidden" name="caminho" value="enviar-fisico"/> <div align="right" class="clear"><input class="bt_apply" name="continuar_processo" type="submit" value="Continuar" /></div> <?php endif; ?> </form>
💾 保存文件
← 返回文件管理器