✏️ 正在编辑: acoes-judiciais.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/relatorio/acoes-judiciais.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Ações Judiciais</h1> <?php if($this->contratoId) : ?> <form id="f_cadastra_anexo" action="<?php echo $this->url(array('action' => 'add-acoes-judiciais')); ?>" method="post" enctype="multipart/form-data"> <?php endif; ?> <?php if (!$this->contratoId): ?> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <?php endif; ?> <div id="view-content"> <table> <thead> <tr class="top_list"> <?php if (!$this->contratoId): ?> <td>Nº Contrato</td> <td>Empresa</td> <td>Corretor</td> <td>Nome</td> <?php endif; ?> <td>CPF</td> <td>Nome Advogado</td> <td>Código do cadastro</td> <td>Responsabilidade</td> <td>Processo</td> <td>Data da audiencia</td> <td>Data de recebimento</td> <td>Motivo</td> <td>Resposta do parceiro</td> <td>Resposta do banco</td> <?php if ($this->contratoId) : ?> <td></td> <td></td> <?php endif; ?> </tr> </thead> <tbody> <?php if (count($this->acoesJudiciais) > 0): ?> <?php foreach ($this->acoesJudiciais as $acao): ?> <tr> <?php if (!$this->contratoId): ?> <td> <a href="<?php echo $this->url(array( 'controller' => 'contrato', 'action' => 'view', 'id' => $acao->contrato_id, 'cliente_id' => $acao->cliente_id )); ?>"><?php echo $this->escape($acao->numero_contrato); ?></a> </td> <td><?php echo $this->escape($acao->empresa); ?></td> <td><?php echo $this->escape($acao->corretor); ?></td> <td><?php echo $this->escape($acao->cliente); ?></td> <?php endif; ?> <td class="cpf"><?php echo String_Refatorar::resetCpf($acao->cliente_cpf ? $acao->cliente_cpf : $acao->cpf); ?></td> <td><?php echo $this->escape($acao->nome_advogado); ?></td> <td><?php echo $this->escape($acao->codigo); ?></td> <td><?php echo $this->escape($acao->responsabilidade); ?></td> <td><?php echo $this->escape($acao->processo); ?></td> <td><?php echo $this->dateFormat($acao->data_audiencia); ?></td> <td><?php echo $this->dateFormat($acao->data_recebimento); ?></td> <td><?php echo $this->escape($acao->motivo); ?></td> <td><?php echo $this->escape($acao->resposta_parceiro); ?></td> <td><?php echo $this->escape($acao->resposta_banco); ?></td> <?php if($this->contratoId) : ?> <td> <input type="file" name="anexo[]" id="anexo" value="" /> </td> <?php endif; ?> <?php if ($this->contratoId && !empty($acao->anexo)): ?> <td> <a href="<?php echo $this->baseUrl(); ?>/uploads/<?php echo $acao->anexo; ?>" target="_blank">[Visualizar]</a> </td> <?php endif; ?> </tr> <?php endforeach; ?> <?php if($this->contratoId) : ?> <tr> <td colspan="11"><input type="submit" value="Salvar Anexos" /></td> </tr> <?php endif; ?> <?php endif; ?> </tbody> </table> </div> </form>
💾 保存文件
← 返回文件管理器