Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
formulario-api
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Denys Tito Urbano
formulario-api
Commits
bd369f2e
Commit
bd369f2e
authored
Aug 24, 2026
by
Denys Tito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ADD] Parametro como_se_entero para informes
parent
3a4e2314
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
PostgreSqlExcel.java
...ava/pe/so/api/formulario/postgresdao/PostgreSqlExcel.java
+3
-1
No files found.
src/main/java/pe/so/api/formulario/postgresdao/PostgreSqlExcel.java
View file @
bd369f2e
...
...
@@ -138,9 +138,10 @@ public class PostgreSqlExcel implements ExcelDAO {
int
p_cantidad_invitado
=
json
.
optInt
(
"p_cantidad_invitado"
);
String
p_turno
=
!
json
.
isNull
(
"p_turno"
)
?
json
.
getString
(
"p_turno"
)
:
null
;
String
p_utm
=
!
json
.
isNull
(
"p_utm"
)
?
json
.
getString
(
"p_utm"
)
:
null
;
String
p_como_se_entero
=
!
json
.
isNull
(
"p_como_se_entero"
)
?
json
.
getString
(
"p_como_se_entero"
)
:
null
;
conexion
=
PostgreSqlFactoryDAO
.
obtenerConexion
(
"siiaa"
);
String
sql
=
"select matricula.func_informe_registrar(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"
;
String
sql
=
"select matricula.func_informe_registrar(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?
,?
)"
;
PreparedStatement
ps
=
conexion
.
prepareStatement
(
sql
);
ps
.
setString
(
1
,
p_drive_origen
);
ps
.
setInt
(
2
,
p_drive_fila
);
...
...
@@ -169,6 +170,7 @@ public class PostgreSqlExcel implements ExcelDAO {
ps
.
setInt
(
25
,
p_cantidad_invitado
);
ps
.
setString
(
26
,
p_turno
);
ps
.
setString
(
27
,
p_utm
);
ps
.
setString
(
28
,
p_como_se_entero
);
System
.
out
.
println
(
"Ejecutando: "
+
ps
);
...
...
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