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
3a4e2314
Commit
3a4e2314
authored
Aug 10, 2026
by
Denys Tito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ADD] Parametro utm en el registro de informe
parent
b79af6b2
Show 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 @
3a4e2314
...
@@ -137,9 +137,10 @@ public class PostgreSqlExcel implements ExcelDAO {
...
@@ -137,9 +137,10 @@ public class PostgreSqlExcel implements ExcelDAO {
String
p_solicitud
=
!
json
.
isNull
(
"p_solicitud"
)
?
json
.
getString
(
"p_solicitud"
)
:
null
;
String
p_solicitud
=
!
json
.
isNull
(
"p_solicitud"
)
?
json
.
getString
(
"p_solicitud"
)
:
null
;
int
p_cantidad_invitado
=
json
.
optInt
(
"p_cantidad_invitado"
);
int
p_cantidad_invitado
=
json
.
optInt
(
"p_cantidad_invitado"
);
String
p_turno
=
!
json
.
isNull
(
"p_turno"
)
?
json
.
getString
(
"p_turno"
)
:
null
;
String
p_turno
=
!
json
.
isNull
(
"p_turno"
)
?
json
.
getString
(
"p_turno"
)
:
null
;
String
p_utm
=
!
json
.
isNull
(
"p_utm"
)
?
json
.
getString
(
"p_utm"
)
:
null
;
conexion
=
PostgreSqlFactoryDAO
.
obtenerConexion
(
"siiaa"
);
conexion
=
PostgreSqlFactoryDAO
.
obtenerConexion
(
"siiaa"
);
String
sql
=
"select matricula.func_informe_registrar(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"
;
String
sql
=
"select matricula.func_informe_registrar(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?
,?
)"
;
PreparedStatement
ps
=
conexion
.
prepareStatement
(
sql
);
PreparedStatement
ps
=
conexion
.
prepareStatement
(
sql
);
ps
.
setString
(
1
,
p_drive_origen
);
ps
.
setString
(
1
,
p_drive_origen
);
ps
.
setInt
(
2
,
p_drive_fila
);
ps
.
setInt
(
2
,
p_drive_fila
);
...
@@ -167,6 +168,7 @@ public class PostgreSqlExcel implements ExcelDAO {
...
@@ -167,6 +168,7 @@ public class PostgreSqlExcel implements ExcelDAO {
ps
.
setString
(
24
,
p_solicitud
);
ps
.
setString
(
24
,
p_solicitud
);
ps
.
setInt
(
25
,
p_cantidad_invitado
);
ps
.
setInt
(
25
,
p_cantidad_invitado
);
ps
.
setString
(
26
,
p_turno
);
ps
.
setString
(
26
,
p_turno
);
ps
.
setString
(
27
,
p_utm
);
System
.
out
.
println
(
"Ejecutando: "
+
ps
);
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