$ls_salida = ""; $lb_valido = false; $lo_dao = new sps_pro_liquidacion_dao(); $lo_json = new JSON(); $ls_operacion = $_GET["operacion"]; if ($ls_operacion === "ue_detalleliquidacion") { $lb_valido = $lo_dao->getDetalleLiquidacion($_GET["codper"],$_GET["codnom"],$_GET["numliq"],&$pa_datos ); if ($lb_valido) { $ls_salida = $lo_json->encode($pa_datos); } } elseif ($ls_operacion == "ue_inicializar") { // Causa de Retiro $lb_hay = $lo_dao->getCausaRetiro("ORDER BY codcauret",$la_array); if ($lb_hay) $ls_salida .= $lo_json->encode($la_array); // Articulos $ls_salida .= "&"; $lb_hay = $lo_dao->getArticulos("ORDER BY id_art",$la_articulo); if ($lb_hay) $ls_salida .= $lo_json->encode($la_articulo); } elseif ($ls_operacion == "ue_nuevo") { $ls_salida = $lo_dao->getProximoCodigo(); } elseif ($ls_operacion == "ue_deudaanterior") { $lb_valido = $lo_dao->getDeudaAnterior( $_GET["codper"],$_GET["codnom"],$_GET["fecdes"],&$pa_datos);