Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
trismegisto-planilla
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
Luis Gangas
trismegisto-planilla
Commits
e9bed16b
Commit
e9bed16b
authored
Nov 07, 2018
by
Luis Gangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT] lista ficha
parent
04eb47a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
18 deletions
+4
-18
FichaMysqlDAO.java
src/java/trismegistoplanilla/mysqldao/FichaMysqlDAO.java
+4
-18
No files found.
src/java/trismegistoplanilla/mysqldao/FichaMysqlDAO.java
View file @
e9bed16b
...
@@ -152,24 +152,10 @@ public class FichaMysqlDAO implements FichaDAO {
...
@@ -152,24 +152,10 @@ public class FichaMysqlDAO implements FichaDAO {
+
"INNER JOIN tipo_documento tipodocumento ON tipodocumento.codigo_tipo_documento = personal.codigo_tipo_documento "
+
"INNER JOIN tipo_documento tipodocumento ON tipodocumento.codigo_tipo_documento = personal.codigo_tipo_documento "
+
"WHERE "
+
"WHERE "
+
" estadoficha.estado_registro = 1 "
+
" estadoficha.estado_registro = 1 "
+
"AND ficha.codigo_ficha NOT IN ( "
+
" SELECT "
+
" * "
+
" FROM "
+
" ( "
+
" SELECT "
+
" x.codigo_ficha "
+
" FROM "
+
" ficha x "
+
" ORDER BY "
+
" 1 DESC "
+
" LIMIT ? "
+
" ) temp_tab "
+
") "
+
"AND tipoestadoficha.codigo_tipo_estado_ficha IN (1, 3) "
+
"AND tipoestadoficha.codigo_tipo_estado_ficha IN (1, 3) "
+
"ORDER BY "
+
"ORDER BY "
+
" 1 DESC "
+
" 1 DESC "
+
"LIMIT ?"
;
+
"LIMIT ?
,?
"
;
Connection
conexion
=
null
;
Connection
conexion
=
null
;
PreparedStatement
ps
=
null
,
psCount
=
null
;
PreparedStatement
ps
=
null
,
psCount
=
null
;
...
@@ -178,8 +164,8 @@ public class FichaMysqlDAO implements FichaDAO {
...
@@ -178,8 +164,8 @@ public class FichaMysqlDAO implements FichaDAO {
try
{
try
{
conexion
=
MysqlDAOFactory
.
obtenerConexion
(
Variables
.
MYSQL_NUEVO_BD_NAME
);
conexion
=
MysqlDAOFactory
.
obtenerConexion
(
Variables
.
MYSQL_NUEVO_BD_NAME
);
ps
=
conexion
.
prepareStatement
(
sql
);
ps
=
conexion
.
prepareStatement
(
sql
);
ps
.
setInt
(
1
,
Integer
.
parseInt
(
length
));
ps
.
setInt
(
2
,
Integer
.
parseInt
(
length
));
ps
.
setInt
(
2
,
Integer
.
parseInt
(
start
));
ps
.
setInt
(
1
,
Integer
.
parseInt
(
start
));
if
(
u
.
getCodigoProyectoDetalle
()
!=
5
)
{
if
(
u
.
getCodigoProyectoDetalle
()
!=
5
)
{
// evaluar parametros a enviar
// evaluar parametros a enviar
switch
(
sendParamsCondition
)
{
switch
(
sendParamsCondition
)
{
...
@@ -264,7 +250,7 @@ public class FichaMysqlDAO implements FichaDAO {
...
@@ -264,7 +250,7 @@ public class FichaMysqlDAO implements FichaDAO {
+
"from ficha "
+
"from ficha "
+
"inner join estado_ficha estadoficha on ficha.codigo_ficha = estadoficha.codigo_ficha "
+
"inner join estado_ficha estadoficha on ficha.codigo_ficha = estadoficha.codigo_ficha "
+
"inner join tipo_estado_ficha tipoestadoficha on tipoestadoficha.codigo_tipo_estado_ficha = estadoficha.codigo_tipo_estado_ficha "
+
"inner join tipo_estado_ficha tipoestadoficha on tipoestadoficha.codigo_tipo_estado_ficha = estadoficha.codigo_tipo_estado_ficha "
+
"inner join persona
persona on persona.codigo_persona
= ficha.codigo_persona "
+
"inner join persona
l persona on persona.codper
= ficha.codigo_persona "
+
"inner join tipo_documento tipodocumento on tipodocumento.codigo_tipo_documento = persona.codigo_tipo_documento "
+
"inner join tipo_documento tipodocumento on tipodocumento.codigo_tipo_documento = persona.codigo_tipo_documento "
+
"where estadoficha.estado_registro = 1 and tipoestadoficha.codigo_tipo_estado_ficha in (1, 3) "
+
condicion
+
" "
+
condicionPorUsuario
;
+
"where estadoficha.estado_registro = 1 and tipoestadoficha.codigo_tipo_estado_ficha in (1, 3) "
+
condicion
+
" "
+
condicionPorUsuario
;
...
...
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