✏️ 正在编辑: regularizar-pendencias.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/contrato/regularizar-pendencias.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Regularizar pendências</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <form action="" method="post" onsubmit="validarChecks(this)"> <table class="tablesorter selecionar" id="sortedTable"> <thead> <tr class="top_list"> <th>Banco</th> <th>Corretor</th> <th>Nº Contato</th> <th>Cliente</th> <th>CPF</th> <th>Desc. Pendência</th> <th>Data Envio</th> <th>Tipo</th> <th style="text-align: center">Anexo</th> <!--<th>Usuário Envio</th>--> <th>Validado</th> <th>Aceito</th> <th>Motivo</th> <th>Usuário Validação</th> <th class="check_control"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> </tr> </thead> <tbody> <?php if(count($this->documentos) > 0): foreach($this->documentos as $documento): ?> <tr> <td><?php echo $documento['banco'];?></td> <td><?php echo $documento['corretor'];?></td> <td><?php echo $documento['numero_contrato'];?></td> <td><?php echo $documento['cliente'];?></td> <td><?php echo $documento['cpf'];?></td> <td><?php echo $documento['descricao_pendencia'];?></td> <td><?php echo $this->dateHourFormat($documento['data_cadastro']);?></td> <td><?php echo $documento['tipo_anexo']?></td> <td style="text-align: center"><a href="<?php echo $this->baseUrl('/uploads/') . $documento['anexo'];?>" target="_blank">[visualizar]</a></td> <!--<td><?php echo $documento['usuario_abertura'];?></td>--> <td><?php echo $documento['validado'] == 1 ? "SIM" : "NÃO";?></td> <td> <?php if( $documento['validado'] == 1 ){ echo $documento['aceito'] == 1 ? "SIM" : "NÃO"; }else{ echo "Em análise"; } ?> </td> <td><?php echo $documento['motivo'];?></td> <td><?php echo $documento['usuario_validacao'];?></td> <td align="center"><input type="checkbox" name="contratos[]" id="checks[]" value="<?php echo $documento['id'] ?>" /></td> </tr> <?php endforeach; endif; ?> </tbody> </table> <p> </p> <div style="margin-left: 10px;"> <div> <div style="width: 50px;"><label>Ação: </label></div> <div style="width: 200px;"> <select name="validar" id="validar" onchange="$('#motivo_row').toggle()" style="width: 100%"> <option value="1">Validar aceitando</option> <option value="2">Validar negando</option> </select> </div> </div> <div style="display: none; margin-top: 5px;" id="motivo_row"> <div style="width: 50px;"><label style="width: 50px;">Motivo:</label></div> <div style="width: 200px;"><textarea name="motivo" value="" id="motivo" cols="50" rows="5"></textarea></div> </div> <div style="margin-top: 10px;"> <input type="submit" value="Ok" /> </div> </div> <!-- <input type="submit" value="Validar aceitando" name="btn_aceitando" class="bt_apply" /> <input type="submit" value="Validar negando" name="btn_negando" class="bt_delete" />--> </form> </div>
💾 保存文件
← 返回文件管理器