Initial Commit

parents
**/nbproject/private/
**/nbproject/Makefile-*.mk
**/nbproject/Package-*.bash
build/
nbbuild/
dist/
nbdist/
.nb-gradle/
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>reporteExcel</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<exec.mainClass>com.mycompany.reporteexcel.panel</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20231013</version> <!---->
<type>jar</type>
</dependency>
<dependency>
<groupId>unknown.binary</groupId>
<artifactId>AbsoluteLayout</artifactId>
<version>SNAPSHOT</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jdatepicker/jdatepicker -->
<dependency>
<groupId>org.jdatepicker</groupId>
<artifactId>jdatepicker</artifactId>
<version>1.3.4</version>
</dependency>
</dependencies>
<build>
<finalName>EXCEL</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
<configuration>
<archive>
<manifest>
<mainClass>com.mycompany.reporteexcel.panel</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.mycompany.reporteexcel.panel</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>unknown-jars-temp-repo</id>
<name>A temporary repository created by NetBeans for libraries and jars it could not identify. Please replace the dependencies in this repository with correct ones and delete this repository.</name>
<url>file:${project.basedir}/lib</url>
</repository>
</repositories>
</project>
\ No newline at end of file
package com.mycompany.reporteexcel;
import java.util.concurrent.TimeUnit;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class ApiData {
public JSONObject conseguirDataReporte(int empresa,int razonSocial, int periodo, String fecha, String conceptoPago) {
JSONObject respuesta = new JSONObject();
try {
// Configurar el timeout de 2 minutos (120,000 ms)
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(360, TimeUnit.SECONDS) // Timeout de conexión
.readTimeout(360, TimeUnit.SECONDS) // Timeout de lectura
.writeTimeout(360, TimeUnit.SECONDS) // Timeout de escritura
.build();
MediaType JSON = MediaType.parse("application/json; charset=utf-8");
String razonSocialText = razonSocial == 0 ? "NULL" : String.valueOf(razonSocial);
JSONObject data = new JSONObject();
String sql = "SELECT * FROM caja.func_listar_morosidad_sede(363,1145,NULL,"+periodo+",NULL,NULL,'"+conceptoPago+"',"+razonSocialText+",'FALSE',NULL,'"+fecha+"',NULL,500000,0,1 )";
System.out.println(sql);
data.put("procedure", sql);
data.put("params", new JSONArray());
RequestBody body = RequestBody.create(data.toString(), JSON);
Request request = new Request.Builder()
.url("http://prueba.sacooliveros.edu.pe:8080/formulario-api/api/v1/excel/procedure")
.post(body)
.build();
try (Response response = client.newCall(request).execute()) {
if (response.isSuccessful()) {
String responseBodyString = response.body().string();
respuesta = new JSONObject(responseBodyString);
} else {
System.out.println("Error: " + response.code() + " - " + response.message());
String errorResponseBody = response.body() != null ? response.body().string() : "Cuerpo vacío";
System.out.println("Response: " + errorResponseBody);
}
} catch (Exception e) {
System.out.println("Error: " + e.getMessage());
}
} catch (JSONException ex) {
System.out.println("Error : HttpRequest : " + ex.getMessage());
}
return respuesta;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment