/** * Funcion para Agregar Llamada */ function Common_eb8d3f1b179bfca7a3d31880b4d66778($strOrden) { $d = explode(STD_LITERAL_DIVISOR, $strOrden, 4); $socio = $d[0]; $solicitud = $d[1]; $fecha = $d[2]; $hora = $d[3]; $observaciones = "AGREGADO_DESDE_EL_CALENDARIO"; saveError(11, $_SESSION["SN_b80bb7740288fda1f201890375a60c8f"], "Se creo la Llamada del Socio {$socio} por el Credito {$solicitud}"); setNewLlamadaBySocio($socio, $solicitud, $fecha, $hora, $observaciones); return "Llamada Agregada al socio {$socio} por el Credito {$solicitud}"; }
function setLlamadasDiariasPorMora($fecha_operacion, $recibo = 0) { $sucursal = getSucursal(); $fecha = sumardias($fecha_operacion, DIAS_DE_ANTICIPACION_PARA_LLAMADAS); $msg = "====================== GENERAR_LLAMADAS_POR_CREDITOS_NO_360 \r\n"; $msg .= "====================== GENERAR LLAMADAS POR CREDITOS MOROSOS_Y_VENCIDOS \r\n"; $msg .= "====================== GENERAR LLAMADAS PARA EL " . getFechaLarga($fecha) . "\r\n"; $msg .= "\tSocio\tCredito\tObservaciones\r\n"; $sql = "SELECT\n\t`creditos_solicitud`.*\nFROM\n\t`creditos_solicitud` `creditos_solicitud`\nWHERE\n\t(\n\t\t(`creditos_solicitud`.`estatus_actual` =30)\n\t\tOR\n\t\t(`creditos_solicitud`.`estatus_actual` =20)\n\t)\n\tAND\n\t(`creditos_solicitud`.`sucursal` ='{$sucursal}')\n\tAND\n\t(`creditos_solicitud`.`saldo_actual` > " . TOLERANCIA_SALDOS . ")\n\tAND\n\t(`creditos_solicitud`.`periocidad_de_pago` != 360)\n\t"; $fecha_operacion = sumardias($fecha_operacion, 1); //ma�ana $rs = mysql_query($sql, cnnGeneral()); while ($rw = mysql_fetch_array($rs)) { $socio = $rw["numero_socio"]; $credito = $rw["numero_solicitud"]; $oficial = $rw["oficial_seguimiento"]; $hora = "8:00"; $txt = setNewLlamadaBySocio($socio, $credito, $fecha, $hora, "LLAMADAS DIARIAS AUTOMATICAS : {$recibo}"); $msg .= date("H:i:s") . "\t" . $txt . "\r\n"; } return $msg; }