?> </td> <td><input name="montosol" type ="number" value = "0.00" id="idmontosol" onchange="jsValidarMonto();jsaGetLetrasByNumero();" onblur=" jsaGetLetrasByNumero();" class="mny"/></td> <th colspan="2"><div id="idmontoletras" ></div></th> </tr> <tr> <td><?php echo $xHP->lang(array("destino", "del", "credito")); ?> </td> <td><?php $sqlSc = "SELECT `creditos_destinos`.`idcreditos_destinos`, CONCAT(`creditos_destinos`.`descripcion_destinos`,'-',(`creditos_destinos`.`tasa_de_iva`*100), '%') AS 'destino' \n\t\t\t\t\tFROM `creditos_destinos` `creditos_destinos` WHERE (`creditos_destinos`.`idcreditos_destinos` !=99) "; $xTD = new cSelect("destinocredito", "iddestinocredito", $sqlSc); //$xTP->setOptionSelect(DEFAULT_PERIOCIDAD_PAGO); $xTD->SetEsSql(); $xTD->show(false); //ctrl_select("creditos_destinos", " name='destinocredito' id='iddestinocredito' ", " WHERE idcreditos_destinos<>99 "); ?> </td> <td><?php echo $xHP->lang(array("descripcion", "del", "destino")); ?> </td> <td><input name='ampliaciondestino' type='text' value='' size="35" maxlength="150" id='idampliaciondestino' /></td> </tr> <tr> <?php if (MODULO_CAPTACION_ACTIVADO == true) { ?> <td><?php
<body> <fieldset> <legend>Reportes por Oficial de Credito</legend> <form name="frmreports" action="frmreportsxcredito.php" method="post"> <hr /> <table border='0' > <tr> <td>Oficial</td> <td colspan="3"><?php $sqlSc = "SELECT id, nombre_completo FROM oficiales"; $xS = new cSelect("cOficial", "idOficiales", $sqlSc); $xS->addEspOption("todas", "Todas"); $xS->setOptionSelect("todas"); $xS->SetEsSql(); $xS->show(false); ?> </td> </tr> <tr> <td>Fecha Incial</td> <td><?php echo ctrl_date(0); ?> </td> <td>Fecha Final</td> <td><?php echo ctrl_date(1); ?>
<?php $xEmp = new cSocios_aeconomica_dependencias(); $xSel = new cSelect("idempresa", "idempresa", $xEmp->get()); $xSel->addEvent("onchange", "jsaGetEmpresa"); echo $xSel->get(); ?> </div> <div class="element-select" > <label class="title">Periocidad<span class="required">*</span></label> <?php $sqlSc = "SELECT\r\n\t\t\t `creditos_periocidadpagos`.`idcreditos_periocidadpagos`,\r\n\t\t\t `creditos_periocidadpagos`.`descripcion_periocidadpagos`\r\n\t\t FROM\r\n\t\t\t `creditos_periocidadpagos` `creditos_periocidadpagos`\r\n\t\t WHERE\r\n\t\t\t (`creditos_periocidadpagos`.`idcreditos_periocidadpagos` !=99) "; $xTP = new cSelect("periocidadpagos", "idperiocidadpagos", $sqlSc); $xTP->addEvent("onchange", "jsaGetEmpresa"); $xTP->setOptionSelect(SYS_NINGUNO); $xTP->addEspOption(SYS_NINGUNO); $xTP->SetEsSql(); $xTP->show(false); ?> </div> <div class="element-select" id="divperiodo"> <label class="title">Periodo</label> <input type="number" name="idPeriodo" id="idPeriodo" onchange="jsaGetMontoDelPeriodo()" onblur="jsaGetMontoDelPeriodo()" /></div> <div class="element-text" ><label class="title">Monto</label><input type="number" name="idMonto" id="idMonto" /></div> <div class="element-submit" ><input type="button" value="Guardar" onclick="jsSavePago()" /> <input type="button" value="Estado de Cuenta" onclick="jsPrintEstadoCuenta()" /></div> </form> <!-- Stop Formoid form--> <?php
function addSucursales($close = false) { $sqlSc = "SELECT codigo_sucursal, nombre_sucursal FROM general_sucursales"; $xS = new cSelect("idsucursal", "idsucursal", $sqlSc); $xS->addEspOption(SYS_TODAS); $xS->setOptionSelect(SYS_TODAS); $xS->SetEsSql(); if ($close == false) { $this->mSucursales = $xS->show(); } else { $this->mSucursales = $xS->get("TR.Sucursal", true); } $this->mJsVars .= "var idsucursal\t= \$('#idsucursal').val();\r\n"; $this->mURL .= " + \"&sucursal=\" + idsucursal "; $this->mURL .= " + \"&s=\" + idsucursal "; $this->mStruct .= $this->mSucursales; return $this->mSucursales; }