✏️ 正在编辑: contratos-recuperar.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/contrato/contratos-recuperar.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Contratos para recuperar</h1> <div id="filter"> <?php echo $this->form; ?> </div> <div id="view-content"> <form action="<?php echo $this->url(array('action' => 'contratos-recuperar')); ?>" method="post"> <table> <thead> <tr class="top_list"> <th>Corretor</th> <th>Nº Contrato</th> <th>Cliente</th> <th>Cpf Cliente</th> <th>Banco</th> <th>Status</th> <th>Solução</th> <th></th> </tr> </thead> <tbody> <?php if(count($this->contratos) > 0): foreach ( $this->contratos as $contrato ): $solucao = new Zend_Form_Element_Textarea("solucao"); $solucao->setAttribs(array("cols" => 40,"rows" => 2)); $solucao->removeDecorator("label"); $solucao->setBelongsTo("solucoes[{$contrato['id_corretor']}][{$contrato['id_contrato']}]"); ?> <tr> <td><?= $contrato['corretor']; ?></td> <td><?= $contrato['numero_contrato']; ?></td> <td><?= $contrato['cliente']; ?></td> <td><?= $contrato['cpf_cliente']; ?></td> <td><?= $contrato['banco']; ?></td> <td><?= $contrato['status_proposta']; ?></td> <td><?= $solucao; ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'delete', 'id' => $contrato['id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; else: ?> <tr> <td colspan="11">Nenhum contrato a recuperar.</td> </tr> <?php endif;?> <tfoot> <tr> <td colspan="1"><?= count($this->contratos) ? "Quantidade: ". count($this->contratos) : ''; ?></td> <td colspan="10" class="valor"> <input type="submit" value="Salvar" class="bt_apply" /> <input type="submit" value="Salvar e notificar corretores" name="email" class="bt_apply" /> </td> </tr> </tfoot> </tbody> </table> </form> </div>
💾 保存文件
← 返回文件管理器