Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
ConsumoSriAutorizacion
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GERMAN PATRICIO ROMERO QUISHPE
ConsumoSriAutorizacion
Commits
fc65beeb
Commit
fc65beeb
authored
May 03, 2023
by
GERMAN PATRICIO ROMERO QUISHPE
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Consumo facturacion entidades
parent
4e77ec0a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
102 additions
and
0 deletions
+102
-0
src/main/java/ec/edu/epn/conexion/conexionPostgres.java
+86
-0
src/main/java/ec/edu/epn/consumoFact/ConsultasFacturacion.java
+2
-0
src/main/java/ec/edu/epn/facturaSRI/GeneracionFactOfflinePDF.java
+0
-0
src/main/java/ec/edu/epn/facturaSRI/GeneracionFactOfflineXML.java
+2
-0
src/main/java/ec/edu/epn/facturacionDTO/ConceptoDTO.java
+2
-0
src/main/java/ec/edu/epn/facturacionDTO/DetallefacturaDTO.java
+2
-0
src/main/java/ec/edu/epn/facturacionDTO/FacturaDTO.java
+2
-0
src/main/java/ec/edu/epn/facturacionDTO/FormaPagoDTO.java
+2
-0
src/main/java/ec/edu/epn/facturacionDTO/PagosDTO.java
+2
-0
src/main/java/ec/edu/epn/facturacionDTO/ServicioDTO.java
+2
-0
No files found.
src/main/java/ec/edu/epn/conexion/conexionPostgres.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
recepcionfact
;
import
java.io.Serializable
;
import
java.sql.DriverManager
;
public
class
conexionPostgres
implements
Serializable
{
/**
*
*/
private
static
final
long
serialVersionUID
=
-
6947528897763208578L
;
private
java
.
sql
.
Connection
conection
=
null
;
public
java
.
sql
.
Connection
getConection
()
{
return
conection
;
}
public
void
setConection
(
java
.
sql
.
Connection
conection
)
{
this
.
conection
=
conection
;
}
private
String
url
=
"jdbc:postgresql://"
;
private
String
serverName
=
"172.31.5.10"
;
private
String
portNumber
=
"5432"
;
private
String
databaseName
=
"bddcorpepn"
;
private
String
userName
=
"seguridad"
;
private
String
password
=
"seguridad"
;
// Constructor
public
conexionPostgres
()
{
}
public
String
getConnectionUrl
()
{
return
url
+
serverName
+
":"
+
portNumber
+
"/"
+
databaseName
;
}
public
java
.
sql
.
Connection
getConnection
()
{
try
{
//String urlDatabase = "jdbc:postgresql://172.31.203.216:5432/bddcorpepn";
Class
.
forName
(
"org.postgresql.Driver"
);
conection
=
DriverManager
.
getConnection
(
getConnectionUrl
(),
userName
,
password
);
if
(
conection
!=
null
)
System
.
out
.
println
(
"Connection Successful!"
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
System
.
out
.
println
(
"Error Trace in getConnection() : "
+
e
.
getMessage
());
}
return
conection
;
}
public
void
closeConnection
()
{
try
{
if
(
conection
!=
null
)
conection
.
close
();
conection
=
null
;
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
}
\ No newline at end of file
src/main/java/ec/edu/epn/consumoFact/ConsultasFacturacion.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
consumoFact
;
public
class
consultasFacturacion
{
}
src/main/java/ec/edu/epn/facturaSRI/GeneracionFactOfflinePDF.java
0 → 100644
View file @
fc65beeb
This diff is collapsed.
Click to expand it.
src/main/java/ec/edu/epn/facturaSRI/GeneracionFactOfflineXML.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
facturaSRI
;
public
class
GeneracionFactOfflineXML
{
}
src/main/java/ec/edu/epn/facturacionDTO/ConceptoDTO.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
facturacionDTO
;
public
class
ConceptoDTO
{
}
src/main/java/ec/edu/epn/facturacionDTO/DetallefacturaDTO.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
facturacionDTO
;
public
class
DetallefacturaDTO
{
}
src/main/java/ec/edu/epn/facturacionDTO/FacturaDTO.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
facturacionDTO
;
public
class
FacturaDTO
{
}
src/main/java/ec/edu/epn/facturacionDTO/FormaPagoDTO.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
facturacionDTO
;
public
class
FormaPagoDTO
{
}
src/main/java/ec/edu/epn/facturacionDTO/PagosDTO.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
facturacionDTO
;
public
class
PagosDTO
{
}
src/main/java/ec/edu/epn/facturacionDTO/ServicioDTO.java
0 → 100644
View file @
fc65beeb
package
ec
.
edu
.
epn
.
facturacionDTO
;
public
class
ServicioDTO
{
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment