LoteFichaSqlserverDAO.java 30.8 KB
Newer Older
Luis Gangas committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package trismegistoplanilla.sqlserverdao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import org.json.JSONArray;
import org.json.JSONObject;
import pe.siso.webservicesseguridad.webservices.UsuarioBean;
import trismegistoplanilla.beans.LoteFichaBean;
import trismegistoplanilla.beans.ReporteLoteFichaBean;
import trismegistoplanilla.dao.LoteFichaDAO;
import trismegistoplanilla.utilities.CurrencyFormat;
import trismegistoplanilla.utilities.ResponseHelper;
import trismegistoplanilla.utilities.Variables;

public class LoteFichaSqlserverDAO implements LoteFichaDAO {

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
	@Override
	public JSONObject listarFichasDT(String draw, String length, String start, JSONObject json) {
		System.out.println("LoteFichaSqlserverDAO: listarFichasDT");
		JSONObject jsonObjListarFichasDT = new JSONObject();
		JSONArray jsonArrayListarFichasDT = new JSONArray();
		Connection cnx = null;
		PreparedStatement ps = null, psCantidadFilas = null;
		ResultSet rs = null, rsCantidadFilas = null;

		String condicion = jsonCondicion(json);

		try {
			cnx = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select top " + length + " "
				+ "ficha.codigo_ficha codigoFicha, "
				+ "ficha.codigo_persona codigoPersona, "
				+ "persona.apellido_paterno apellidoPaterno, "
				+ "persona.apellido_materno apellidoMaterno, "
				+ "persona.nombre nombre, "
				+ "persona.numero_documento numeroDocumento, "
				+ "ficha_laboral.tipo_ficha tipoFicha, "
				+ "sede.nombre nombreSede, "
				+ "area.nombre nombreArea, "
				+ "cargo.nombre nombreCargo, "
				+ "sueldo_administrativo.sueldo_escalafon sueldoEscalafonAdministrativo, "
				+ "sueldo_administrativo.sueldo_mensual sueldoMensualAdministrativo, "
				+ "isnull(sueldo_administrativo.observacion,'') observacionAdministrativo, "
				+ "sueldo_docente.costo_mensual costoMensualDocente, "
				+ "sueldo_docente.costo_a costoADocente, "
				+ "sueldo_docente.costo_b costoBDocente, "
				+ "sueldo_docente.costo_c costoCDocente, "
				+ "sueldo_docente.observacion observacionDocente "
				+ "FROM ficha "
				+ "inner join persona ON persona.codigo_persona = ficha.codigo_persona "
				+ "inner join ficha_laboral ON ficha_laboral.codigo_ficha = ficha.codigo_ficha "
				+ "inner join sede_area ON sede_area.codigo_sede_area = ficha_laboral.codigo_sede_area "
				+ "inner join sede ON sede.codigo_sede = sede_area.codigo_sede "
				+ "inner join area ON area.codigo_area = sede_area.codigo_area "
				+ "inner join area_cargo ON area_cargo.codigo_area_cargo = ficha_laboral.codigo_area_cargo "
				+ "inner join cargo ON cargo.codigo_cargo = area_cargo.codigo_cargo "
				+ "left join sueldo_administrativo ON sueldo_administrativo.codigo_ficha = ficha_laboral.codigo_ficha "
				+ "left join sueldo_docente ON sueldo_docente.codigo_ficha = ficha_laboral.codigo_ficha "
				+ "where ficha.estado_registro = 1 and ficha.codigo_ficha not in "
				+ "( "
				+ "select top " + start + " "
				+ "x.codigo_ficha from ficha x "
				+ "inner join estado_ficha ON estado_ficha.codigo_ficha = x.codigo_ficha "
				+ "inner join ficha_laboral ON ficha_laboral.codigo_ficha = x.codigo_ficha "
				+ "left join sueldo_administrativo ON sueldo_administrativo.codigo_ficha = ficha_laboral.codigo_ficha "
				+ "left join sueldo_docente ON sueldo_docente.codigo_ficha = ficha_laboral.codigo_ficha "
				+ "where estado_ficha.estado_registro = 1 and estado_ficha.codigo_tipo_estado_ficha = 4 "
				+ condicion + " "
				+ "order by 1 desc "
				+ ") "
				+ "and "
				+ "( "
				+ "select top 1 estado_ficha.codigo_tipo_estado_ficha FROM ficha x "
				+ "inner join dbo.estado_ficha ON dbo.estado_ficha.codigo_ficha = x.codigo_ficha "
				+ "inner join dbo.tipo_estado_ficha ON dbo.tipo_estado_ficha.codigo_tipo_estado_ficha = dbo.estado_ficha.codigo_tipo_estado_ficha "
				+ "where x.codigo_ficha = ficha.codigo_ficha and estado_ficha.estado_registro = 1 "
				+ ") = 4 "
				+ condicion + " "
				+ "order by 1 desc";

			ps = cnx.prepareStatement(sql);
			rs = ps.executeQuery();
			while (rs.next()) {
				ReporteLoteFichaBean reporteLoteFicha = new ReporteLoteFichaBean();
				reporteLoteFicha.setCodigoFicha(rs.getInt("codigoFicha"));
				reporteLoteFicha.setCodigoPersona(rs.getInt("codigoPersona"));
				reporteLoteFicha.setApellidoPaterno(rs.getString("apellidoPaterno"));
				reporteLoteFicha.setApellidoMaterno(rs.getString("apellidoMaterno"));
				reporteLoteFicha.setNombre(rs.getString("nombre"));
				reporteLoteFicha.setNumeroDocumento(rs.getString("numeroDocumento"));
				reporteLoteFicha.setTipoFicha(rs.getString("tipoFicha"));
				reporteLoteFicha.setNombreSede(rs.getString("nombreSede"));
				reporteLoteFicha.setNombreArea(rs.getString("nombreArea"));
				reporteLoteFicha.setNombreCargo(rs.getString("nombreCargo"));
				reporteLoteFicha.setSueldoEscalafonAdministrativo(CurrencyFormat.getCustomCurrency(rs.getDouble("sueldoEscalafonAdministrativo")));
				reporteLoteFicha.setSueldoMensualAdministrativo(CurrencyFormat.getCustomCurrency(rs.getDouble("sueldoMensualAdministrativo")));
				reporteLoteFicha.setObservacionAdministrativo(rs.getString("observacionAdministrativo"));
				reporteLoteFicha.setCostoMensualDocente(CurrencyFormat.getCustomCurrency(rs.getDouble("costoMensualDocente")));
				reporteLoteFicha.setCostoADocente(CurrencyFormat.getCustomCurrency(rs.getDouble("costoADocente")));
				reporteLoteFicha.setCostoBDocente(CurrencyFormat.getCustomCurrency(rs.getDouble("costoBDocente")));
				reporteLoteFicha.setCostoCDocente(CurrencyFormat.getCustomCurrency(rs.getDouble("costoCDocente")));
				reporteLoteFicha.setObservacionDocente(rs.getString("observacionDocente"));
				JSONObject jsonObjReporteLoteFicha = new JSONObject(reporteLoteFicha);
				jsonArrayListarFichasDT.put(jsonObjReporteLoteFicha);
			}
			int cantidadFilas = 0;
			String sqlCantidadFilas
				= "select "
				+ "count(1) as cantidadFilas "
				+ "FROM ficha "
				+ "inner join ficha_laboral ON ficha_laboral.codigo_ficha = ficha.codigo_ficha "
				+ "left join sueldo_administrativo ON sueldo_administrativo.codigo_ficha = ficha_laboral.codigo_ficha "
				+ "left join sueldo_docente ON sueldo_docente.codigo_ficha = ficha_laboral.codigo_ficha "
				+ "where ficha.estado_registro = 1 "
				+ "and (select top 1 estado_ficha.codigo_tipo_estado_ficha FROM ficha x "
				+ "inner join dbo.estado_ficha ON dbo.estado_ficha.codigo_ficha = x.codigo_ficha "
				+ "inner join dbo.tipo_estado_ficha ON dbo.tipo_estado_ficha.codigo_tipo_estado_ficha = dbo.estado_ficha.codigo_tipo_estado_ficha "
				+ "where x.codigo_ficha = ficha.codigo_ficha and estado_ficha.estado_registro = 1) = 4 "
				+ condicion + " "
				+ "order by 1 desc";

			psCantidadFilas = cnx.prepareStatement(sqlCantidadFilas);
			rsCantidadFilas = psCantidadFilas.executeQuery();
			rsCantidadFilas.next();
			cantidadFilas = rsCantidadFilas.getInt("cantidadFilas");

			jsonObjListarFichasDT.put("data", jsonArrayListarFichasDT);
			jsonObjListarFichasDT.put("recordsFiltered", cantidadFilas);
			jsonObjListarFichasDT.put("recordsTotal", cantidadFilas);
			jsonObjListarFichasDT.put("draw", draw);

		} catch (SQLException e) {
			e.printStackTrace();
			jsonObjListarFichasDT.put("status", false);
			jsonObjListarFichasDT.put("Mensaje", "Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rsCantidadFilas != null) {
					rsCantidadFilas.close();
				}
				if (psCantidadFilas != null) {
					psCantidadFilas.close();
				}
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (cnx != null) {
					cnx.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
		return jsonObjListarFichasDT;
	}

	private String jsonCondicion(JSONObject json) {
		System.out.println("LoteFichaSqlserverDAO: jsonCondicion");

		if (json.getInt("criterio") == 1) { // administrativo
			return " and sueldo_administrativo.codigo_sueldo_administrativo is not null ";
		}

		if (json.getInt("criterio") == 2) { // docente de secundaria
			return " and sueldo_docente.codigo_sueldo_docente is not null ";
		}

		return "";
	}

	@Override
	public JSONObject registrarLote(JSONObject data, UsuarioBean usuario) {
		System.out.println("LoteFichaSqlserverDAO: registrarLote");
		JSONObject jsonObjRegistrarLote = null;

		Connection cnx = null;

		PreparedStatement psInsertarLote = null,
			psInsertarEstadoLote = null,
			psCantidadLotes = null,
			psInsertarDetalleLote = null,
			psDesactivarUltimoEstadoFicha = null,
			psRegistrarEstadoFicha = null;

		ResultSet rsInsertarLote = null,
			rsCantidadLotes = null;

		ResponseHelper response = new ResponseHelper();
		int cantidadLotes;
		int codigoLoteGenerado;
		String numeroGenerado;
		try {
			cnx = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			cnx.setAutoCommit(false);

			String sqlCantidadLote = "select count(1) as cantidad FROM ficha_lote";

			psCantidadLotes = cnx.prepareStatement(sqlCantidadLote);
			rsCantidadLotes = psCantidadLotes.executeQuery();
			rsCantidadLotes.next();
			cantidadLotes = rsCantidadLotes.getInt("cantidad");

			numeroGenerado = numeroGenerado(cantidadLotes);

			String sql
				= "insert into ficha_lote "
				+ "(numero_lote, estado_registro, tipo_lote) "
				+ "VALUES (?,1,?)";

			psInsertarLote = cnx.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
			psInsertarLote.setString(1, numeroGenerado);
			psInsertarLote.setString(2, data.getString("tipoLote"));
			int resultadoInsertarLote = psInsertarLote.executeUpdate();

			if (resultadoInsertarLote != 0) {
				rsInsertarLote = psInsertarLote.getGeneratedKeys();
				rsInsertarLote.next();
				codigoLoteGenerado = rsInsertarLote.getInt(1);

				String sqlInsertarDetalleLote
					= "insert into detalle_ficha_lote (codigo_ficha_lote,codigo_ficha,estado_registro) "
					+ "VALUES (?,?,1)";

				psInsertarDetalleLote = cnx.prepareStatement(sqlInsertarDetalleLote);
				JSONArray jsonArrayDetalleLote = data.getJSONArray("detallelote");
				int longitudDetalleLote = data.getJSONArray("detallelote").length();

				for (int i = 0; i < longitudDetalleLote; i++) {
					psInsertarDetalleLote.setInt(1, codigoLoteGenerado);
					psInsertarDetalleLote.setInt(2, jsonArrayDetalleLote.getJSONObject(i).getInt("codigoFicha"));
					psInsertarDetalleLote.addBatch();
				}

				int resultadoInsertarDetalleLote[] = psInsertarDetalleLote.executeBatch();
				int totalFilasDetalle = resultadoInsertarDetalleLote.length;

				if (totalFilasDetalle != 0) {
					String sqlInsertarEstadoLote
						= "insert into estado_ficha_lote "
						+ "(codigo_ficha_lote,codigo_tipo_estado_ficha_lote,fecha_registro,codigo_usuario,estado_registro) "
						+ "VALUES (?,?,getdate(),?,1)";

					psInsertarEstadoLote = cnx.prepareStatement(sqlInsertarEstadoLote);
					psInsertarEstadoLote.setInt(1, codigoLoteGenerado);
					psInsertarEstadoLote.setInt(2, 1);
					psInsertarEstadoLote.setInt(3, usuario.getCodigoUsuario());
					int resultadoInsertarEstadoLote = psInsertarEstadoLote.executeUpdate();

					if (resultadoInsertarEstadoLote != 0) {
						String sqlDesactivarUltimoEstadoFicha
							= "update estado_ficha "
							+ "set estado_registro = 0 "
							+ "where codigo_ficha = ? and estado_registro = 1 ";

						psDesactivarUltimoEstadoFicha = cnx.prepareStatement(sqlDesactivarUltimoEstadoFicha);

						for (int i = 0; i < longitudDetalleLote; i++) {
							psDesactivarUltimoEstadoFicha.setInt(1, jsonArrayDetalleLote.getJSONObject(i).getInt("codigoFicha"));
							psDesactivarUltimoEstadoFicha.addBatch();
						}

						int resultadoDesactivarUltimoEstadoFicha[] = psDesactivarUltimoEstadoFicha.executeBatch();
						int totalFilasDesactivarUltimoEstadoFicha = resultadoDesactivarUltimoEstadoFicha.length;

						if (totalFilasDesactivarUltimoEstadoFicha != 0) {
							String sqlRegistrarEstadoFicha
								= "insert into estado_ficha "
								+ "(codigo_ficha,codigo_tipo_estado_ficha,fecha_registro,codigo_usuario,estado_registro) "
								+ "VALUES (?,6 ,getdate() ,?  ,1)";

							psRegistrarEstadoFicha = cnx.prepareStatement(sqlRegistrarEstadoFicha);

							for (int i = 0; i < longitudDetalleLote; i++) {
								psRegistrarEstadoFicha.setInt(1, jsonArrayDetalleLote.getJSONObject(i).getInt("codigoFicha"));
								psRegistrarEstadoFicha.setInt(2, usuario.getCodigoUsuario());
								psRegistrarEstadoFicha.addBatch();
							}
							int resultadoRegistrarEstadoFicha[] = psRegistrarEstadoFicha.executeBatch();
							int totalFilasRegistrarEstadoFicha = resultadoRegistrarEstadoFicha.length;

							if (totalFilasRegistrarEstadoFicha != 0) {
								JSONObject jsonObjResultedKey = new JSONObject();
								jsonObjResultedKey.put("getResultedKey", numeroGenerado);
								response.setStatus(true);
								response.setMessage("Se generó lote correctamente!");
								response.setData(jsonObjResultedKey);
								cnx.commit();
							} else {
								response.setStatus(false);
								response.setMessage("No se pudo registrar los estados a la ficha");
								cnx.rollback();
							}
						} else {
							response.setStatus(false);
							response.setMessage("Lo sentimos, no se pudo desactivar los estados de las fichas");
							cnx.rollback();
						}
					} else {
						response.setStatus(false);
						response.setMessage("No se pudo registrar el estado de lote");
						cnx.rollback();
					}
				} else {
					response.setStatus(false);
					response.setMessage("No se pudo registrar el detalle de lote");
					cnx.rollback();
				}
			} else {
				response.setStatus(false);
				response.setMessage("Lo sentimos, no se pudo generar lote");
				cnx.rollback();
			}

		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rsCantidadLotes != null) {
					rsCantidadLotes.close();
				}
				if (rsInsertarLote != null) {
					rsInsertarLote.close();
				}
				if (psRegistrarEstadoFicha != null) {
					psRegistrarEstadoFicha.close();
				}
				if (psDesactivarUltimoEstadoFicha != null) {
					psDesactivarUltimoEstadoFicha.close();
				}
				if (psInsertarDetalleLote != null) {
					psInsertarDetalleLote.close();
				}
				if (psCantidadLotes != null) {
					psCantidadLotes.close();
				}
				if (psInsertarLote != null) {
					psInsertarLote.close();
				}
				if (cnx != null) {
					cnx.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}

		jsonObjRegistrarLote = new JSONObject(response);
		return jsonObjRegistrarLote;
	}

	private String numeroGenerado(int cantidad) {
		System.out.println("LoteFichaSqlserverDAO: numeroGenerado");
		int numeroLotes = cantidad + 1;
		String x_numeroLotes = String.format("%05d", numeroLotes);
		String fechaActual = CurrencyFormat.getActualDate("dd/MM/yyyy");
		String dia = fechaActual.split("/")[0];
		String mes = fechaActual.split("/")[1];
		String anio = fechaActual.split("/")[2].substring(2);

		return dia + mes + anio + x_numeroLotes;
	}

	@Override
	public JSONObject listarLoteDT(String draw, String length, String start, String search) {
		System.out.println("LoteFichaSqlserverDAO: listarLoteDT");
		JSONObject jsonObjListarLoteDT = new JSONObject();
		JSONArray jsonArrayListarLoteDT = new JSONArray();
		Connection cnx = null;
		PreparedStatement ps = null,
			psCantidadLotes = null;
		ResultSet rs = null,
			rsCantidadLotes = null;

		int cantidadLotes = 0;
		String condicion = "";

		if (!search.equals("")) {
			condicion = " and ficha_lote.numero_lote = '" + search + "'  ";
		}

		try {
			cnx = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select top " + length + " "
				+ "ficha_lote.codigo_ficha_lote codigoLote, "
				+ "ficha_lote.numero_lote numeroLote, "
				+ "ficha_lote.tipo_lote tipoLote, "
				+ "format(estado_ficha_lote.fecha_registro,'dd/MM/yyyy') fechaRegistro, "
				+ "upper(datename(mm, estado_ficha_lote.fecha_registro)) mes, "
				+ "(select count(1) cantidadFichas "
				+ "from detalle_ficha_lote x "
				+ "where x.codigo_ficha_lote = ficha_lote.codigo_ficha_lote ) cantidadFichas, "
				+ "tipo_estado_ficha_lote.nombre estadoActual, "
				+ "'<span class=\"'+tipo_estado_ficha_lote.estilo+'\">'+tipo_estado_ficha_lote.nombre+'</span>' estilo "
				+ "FROM ficha_lote "
				+ "inner join estado_ficha_lote ON estado_ficha_lote.codigo_ficha_lote = ficha_lote.codigo_ficha_lote "
				+ "inner join tipo_estado_ficha_lote ON tipo_estado_ficha_lote.codigo_tipo_estado_ficha_lote = estado_ficha_lote.codigo_tipo_estado_ficha_lote "
				+ "where estado_ficha_lote.estado_registro = 1 "
				+ "and ficha_lote.estado_registro = 1 "
				+ "and ficha_lote.codigo_ficha_lote not in (select top " + start + " "
				+ "x.codigo_ficha_lote "
				+ "from ficha_lote x where x.codigo_ficha_lote = ficha_lote.codigo_ficha_lote order by 1 desc) "
				+ "and estado_ficha_lote.codigo_tipo_estado_ficha_lote = 1"
				+ condicion
				+ "order by 1 desc";

			ps = cnx.prepareStatement(sql);
			rs = ps.executeQuery();

			int numeroFilas = Integer.parseInt(start) + 1;
			while (rs.next()) {
				LoteFichaBean loteFicha = new LoteFichaBean();
				loteFicha.setItem(numeroFilas++);
				loteFicha.setCodigoFichaLote(rs.getInt("codigoLote"));
				loteFicha.setNumeroLote(rs.getString("numeroLote"));
				loteFicha.setTipoLote(rs.getString("tipoLote"));
				loteFicha.setFechaRegistro(rs.getString("fechaRegistro"));
				loteFicha.setNumeroFichas(rs.getInt("cantidadFichas"));
				loteFicha.setEstadoLote(rs.getString("estadoActual"));
				loteFicha.setEstilo(rs.getString("estilo"));
				loteFicha.setMes(rs.getString("mes"));
				JSONObject jsonObjLoteFicha = new JSONObject(loteFicha);
				jsonArrayListarLoteDT.put(jsonObjLoteFicha);
			}

			String sqlCantidadLotes
				= "select count(1) cantidadLotes "
				+ "FROM ficha_lote "
				+ "inner join dbo.estado_ficha_lote ON dbo.estado_ficha_lote.codigo_ficha_lote = dbo.ficha_lote.codigo_ficha_lote "
				+ "where ficha_lote.estado_registro = 1 "
				+ "and estado_ficha_lote.estado_registro = 1 "
				+ "and estado_ficha_lote.codigo_tipo_estado_ficha_lote = 1 "
				+ condicion;
			psCantidadLotes = cnx.prepareStatement(sqlCantidadLotes);
			rsCantidadLotes = psCantidadLotes.executeQuery();
			rsCantidadLotes.next();
			cantidadLotes = rsCantidadLotes.getInt("cantidadLotes");

			jsonObjListarLoteDT.put("data", jsonArrayListarLoteDT);
			jsonObjListarLoteDT.put("recordsFiltered", cantidadLotes);
			jsonObjListarLoteDT.put("recordsTotal", cantidadLotes);
			jsonObjListarLoteDT.put("draw", draw);

		} catch (SQLException e) {
			e.printStackTrace();
			jsonObjListarLoteDT.put("status", false);
			jsonObjListarLoteDT.put("message", "Error: " + e.getMessage() + " Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rsCantidadLotes != null) {
					rsCantidadLotes.close();
				}
				if (rs != null) {
					rs.close();
				}
				if (psCantidadLotes != null) {
					psCantidadLotes.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (cnx != null) {
					cnx.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}

		return jsonObjListarLoteDT;
	}

	@Override
	public JSONObject listarLoteGeneralDT(JSONObject json) {
		System.out.println("LoteFichaSqlserverDAO: listarLoteGeneralDT");
		JSONObject jsonObjListarLoteGeneral = new JSONObject();
		JSONArray jsonArrayListarLoteGeneral = new JSONArray();
		Connection cnx = null;
		PreparedStatement ps = null, psCount = null;
		ResultSet rs = null, rsCount = null;

		try {
			cnx = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select top " + json.getString("length") + " "
				+ "ficha_lote.codigo_ficha_lote codigoLote, "
				+ "ficha_lote.numero_lote numeroLote, "
				+ "format(estado_ficha_lote.fecha_registro,'dd/MM/yyyy') fechaRegistro, "
				+ "upper(datename(mm, estado_ficha_lote.fecha_registro)) mes, "
				+ "(select count(1) cantidadFichas "
				+ "from detalle_ficha_lote x "
				+ "where x.codigo_ficha_lote = ficha_lote.codigo_ficha_lote ) cantidadFichas, "
				+ "estado_ficha_lote.codigo_tipo_estado_ficha_lote codigoEstadoLote, "
				+ "tipo_estado_ficha_lote.nombre estadoActual, "
				+ "tipo_estado_ficha_lote.estilo estilo, "
				+ "ficha_lote.tipo_lote tipoLote "
				+ "FROM ficha_lote "
				+ "inner join estado_ficha_lote "
				+ "ON estado_ficha_lote.codigo_ficha_lote = ficha_lote.codigo_ficha_lote "
				+ "inner join tipo_estado_ficha_lote "
				+ "ON tipo_estado_ficha_lote.codigo_tipo_estado_ficha_lote = estado_ficha_lote.codigo_tipo_estado_ficha_lote "
				+ "where estado_ficha_lote.estado_registro = 1 "
				+ "and ficha_lote.estado_registro = 1 "
				+ "and ficha_lote.codigo_ficha_lote not in "
				+ "( "
				+ "select top " + json.getString("start") + " "
				+ "fl.codigo_ficha_lote "
				+ "from ficha_lote fl "
				+ "inner join estado_ficha_lote efl ON efl.codigo_ficha_lote = fl.codigo_ficha_lote "
				+ "where efl.estado_registro = 1 "
				+ condicionListarLoteGeneral(json.getJSONObject("data")) + " "
				+ "order by 1 desc "
				+ ") "
				+ condicionListarLoteGeneral(json.getJSONObject("data")) + " "
				+ "order by 1 desc;";

			ps = cnx.prepareStatement(sql);
			rs = ps.executeQuery();
			int item = Integer.parseInt(json.getString("start")) + 1;
			while (rs.next()) {
				LoteFichaBean fichas = new LoteFichaBean();
				fichas.setCodigoFichaLote(rs.getInt("codigoLote"));
				fichas.setNumeroLote(rs.getString("numeroLote"));
				fichas.setFechaRegistro(rs.getString("fechaRegistro"));
				fichas.setMes(rs.getString("mes"));
				fichas.setNumeroFichas(rs.getInt("cantidadFichas"));
				fichas.setEstadoLote(rs.getString("estadoActual"));
				fichas.setEstilo(rs.getString("estilo"));
				fichas.setTipoLote(rs.getString("tipoLote"));
				fichas.setItem(item++);
				JSONObject jsonObjFichas = new JSONObject(fichas);
				jsonObjFichas.put("codigoEstadoLote", rs.getInt("codigoEstadoLote"));
				jsonArrayListarLoteGeneral.put(jsonObjFichas);
			}

			String sqlCount
				= "select count(1) cantidad "
				+ "FROM ficha_lote "
				+ "inner join dbo.estado_ficha_lote ON dbo.estado_ficha_lote.codigo_ficha_lote = dbo.ficha_lote.codigo_ficha_lote "
				+ "where ficha_lote.estado_registro = 1 "
				+ "and estado_ficha_lote.estado_registro = 1 "
				+ condicionListarLoteGeneral(json.getJSONObject("data"));
			int count;
			psCount = cnx.prepareStatement(sqlCount);
			rsCount = psCount.executeQuery();
			rsCount.next();
			count = rsCount.getInt("cantidad");

			jsonObjListarLoteGeneral.put("data", jsonArrayListarLoteGeneral);
			jsonObjListarLoteGeneral.put("recordsFiltered", count);
			jsonObjListarLoteGeneral.put("recordsTotal", count);
			jsonObjListarLoteGeneral.put("draw", json.getString("draw"));
		} catch (SQLException e) {
			e.printStackTrace();
			jsonObjListarLoteGeneral.put("status", false);
			jsonObjListarLoteGeneral.put("message", "Error: " + e.getMessage() + " Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rsCount != null) {
					rsCount.close();
				}
				if (rs != null) {
					rs.close();
				}
				if (psCount != null) {
					psCount.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (cnx != null) {
					cnx.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}

		return jsonObjListarLoteGeneral;
	}

	private String condicionListarLoteGeneral(JSONObject json) {
		System.out.println("LoteFichaSqlserverDAO: condicionListarLoteGeneral");
		int criterio = json.getInt("criterio");
		int filtro = json.getInt("filtro");
		String search = json.getString("search");
		String search2 = json.getString("search2");

		if (criterio == 1) {
			return " and ficha_lote.numero_lote = '" + search + "' ";
		}

		if (criterio == 2) {
			if (filtro == 1) {
				return " and format(estado_ficha_lote.fecha_registro,'dd/MM/yyyy') >= '" + search + "' ";
			}
			if (filtro == 2) {
				return " and format(estado_ficha_lote.fecha_registro,'dd/MM/yyyy') <= '" + search + "' ";
			}
			if (filtro == 3) {
				return " and format(estado_ficha_lote.fecha_registro,'dd/MM/yyyy') = '" + search + "' ";
			}
			if (filtro == 4) {
				return " and format(estado_ficha_lote.fecha_registro,'dd/MM/yyyy') between '" + search + "' and '" + search2 + "' ";
			}
		}

		if (criterio == 3) {
			if (filtro == 1) {
				return " and (select count(1) from detalle_ficha_lote x where x.codigo_ficha_lote = ficha_lote.codigo_ficha_lote) >= " + search + " ";
			}
			if (filtro == 2) {
				return " and (select count(1) from detalle_ficha_lote x where x.codigo_ficha_lote = ficha_lote.codigo_ficha_lote) <=  " + search + " ";
			}
			if (filtro == 3) {
				return " and (select count(1) from detalle_ficha_lote x where x.codigo_ficha_lote = ficha_lote.codigo_ficha_lote) =  " + search + " ";
			}
		}

		return "";
	}

	@Override
	public JSONObject listarFichasGeneral(JSONObject json) {
		System.out.println("LoteFichaSqlserverDAO: listarFichasGeneral");
		JSONObject jsonObjListarFichasGeneral = null;
		JSONArray jsonArrListarFichasGeneral = new JSONArray();
		ResponseHelper response = new ResponseHelper();
		String sueldo = "", inner = "", where = "";
		PreparedStatement ps = null;
		ResultSet rs = null;
		Connection cnx = null;

		if (json.getString("tipoLote").equals("A")) {

			sueldo = "sueldo_administrativo.sueldo_escalafon sueldoEscalafon, "
				+ "sueldo_administrativo.sueldo_mensual sueldoMensual,"
				+ "sueldo_administrativo.sueldo_presidencia sueldoPresidencia ";
			inner = "inner join sueldo_administrativo ON sueldo_administrativo.codigo_ficha = ficha_laboral.codigo_ficha ";
			where = "sueldo_administrativo.estado_registro = 1";

		} else if (json.getString("tipoLote").equals("D")) {

			sueldo = "sueldo_docente.costo_mensual costoMensualDocente, "
				+ "sueldo_docente.costo_a costoaDocente, "
				+ "sueldo_docente.costo_b costobDocente, "
				+ "sueldo_docente.costo_c costocDocente ";
			inner = "inner join sueldo_docente ON sueldo_docente.codigo_ficha = ficha_laboral.codigo_ficha ";
			where = "sueldo_docente.estado_registro = 1 ";

		}

		try {
			cnx = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			String sql
				= "select "
				+ "persona.codigo_persona codigoPersona, "
				+ "detalle_ficha_lote.codigo_ficha_lote codigoFichaLote, "
				+ "detalle_ficha_lote.codigo_ficha codigoFicha, "
				+ "persona.apellido_paterno apellidoPaterno, "
				+ "persona.apellido_materno apellidoMaterno, "
				+ "persona.nombre nombre, "
				+ "tipo_documento.descripcion_corta tipoDocumento, "
				+ "persona.numero_documento numeroDocumento, "
				+ "format(ficha_laboral.fecha_ingreso,'dd/MM/yyyy') fechaIngreso, "
				+ sueldo + " "
				+ "FROM detalle_ficha_lote "
				+ "inner join ficha_laboral ON ficha_laboral.codigo_ficha = detalle_ficha_lote.codigo_ficha "
				+ "inner join ficha ON ficha.codigo_ficha = ficha_laboral.codigo_ficha "
				+ "inner join persona ON persona.codigo_persona = ficha.codigo_persona "
				+ "inner join tipo_documento ON tipo_documento.codigo_tipo_documento = persona.codigo_tipo_documento "
				+ "inner join estado_ficha ON estado_ficha.codigo_ficha = ficha.codigo_ficha "
				+ inner + " "
				+ "where " + where + " "
				+ "and estado_ficha.estado_registro = 1 "
				+ "and detalle_ficha_lote.codigo_ficha_lote = ? ";

			ps = cnx.prepareStatement(sql);
			ps.setInt(1, json.getInt("codigoLote"));
			rs = ps.executeQuery();
			while (rs.next()) {
				JSONObject jsonObj = new JSONObject();
				jsonObj.put("codigoPersona", isNullOrEmpty(rs.getString("codigoPersona")) ? rs.getInt("codigoPersona") : 0);
				jsonObj.put("codigoLote", isNullOrEmpty(rs.getString("codigoFichaLote")) ? rs.getInt("codigoFichaLote") : 0);
				jsonObj.put("codigoFicha", isNullOrEmpty(rs.getString("codigoFicha")) ? rs.getInt("codigoFicha") : 0);
				jsonObj.put("apellidoPaterno", isNullOrEmpty(rs.getString("apellidoPaterno")) ? rs.getString("apellidoPaterno") : "");
				jsonObj.put("apellidoMaterno", isNullOrEmpty(rs.getString("apellidoMaterno")) ? rs.getString("apellidoMaterno") : "");
				jsonObj.put("nombre", isNullOrEmpty(rs.getString("nombre")) ? rs.getString("nombre") : "");
				jsonObj.put("tipoDocumento", isNullOrEmpty(rs.getString("tipoDocumento")) ? rs.getString("tipoDocumento") : "");
				jsonObj.put("numeroDocumento", isNullOrEmpty(rs.getString("numeroDocumento")) ? rs.getString("numeroDocumento") : "");
				jsonObj.put("fechaIngreso", isNullOrEmpty(rs.getString("fechaIngreso")) ? rs.getString("fechaIngreso") : "");
				if (json.getString("tipoLote").equals("A")) {
					jsonObj.put("sueldoEscalafon", isNullOrEmpty(rs.getString("sueldoEscalafon")) ? CurrencyFormat.getCustomCurrency(rs.getDouble("sueldoEscalafon")) : "0.00");
					jsonObj.put("sueldoMensual", isNullOrEmpty(rs.getString("sueldoMensual")) ? CurrencyFormat.getCustomCurrency(rs.getDouble("sueldoMensual")) : "0.00");
					jsonObj.put("sueldoPresidencia", isNullOrEmpty(rs.getString("sueldoPresidencia")) ? CurrencyFormat.getCustomCurrency(rs.getDouble("sueldoPresidencia")) : "0.00");
				} else if (json.getString("tipoLote").equals("D")) {
					jsonObj.put("costoMensualDocente", isNullOrEmpty(rs.getString("costoMensualDocente")) ? CurrencyFormat.getCustomCurrency(rs.getDouble("costoMensualDocente")) : "0.00");
					jsonObj.put("costoaDocente", isNullOrEmpty(rs.getString("costoaDocente")) ? CurrencyFormat.getCustomCurrency(rs.getDouble("costoaDocente")) : "0.00");
					jsonObj.put("costobDocente", isNullOrEmpty(rs.getString("costobDocente")) ? CurrencyFormat.getCustomCurrency(rs.getDouble("costobDocente")) : "0.00");
					jsonObj.put("costocDocente", isNullOrEmpty(rs.getString("costocDocente")) ? CurrencyFormat.getCustomCurrency(rs.getDouble("costocDocente")) : "0.00");
				}

				jsonArrListarFichasGeneral.put(jsonObj);
			}

			JSONObject jsonObj = new JSONObject();
			jsonObj.put("fichas", jsonArrListarFichasGeneral);
			jsonObj.put("count", jsonArrListarFichasGeneral.length());

			response.setStatus(true);
			response.setMessage("Se listo correctamente los datos de la ficha.");
			response.setData(jsonObj);

		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (cnx != null) {
					cnx.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}

		jsonObjListarFichasGeneral = new JSONObject(response);
		return jsonObjListarFichasGeneral;
	}

	private static boolean isNullOrEmpty(String param) {
		System.out.println("LoteFichaSqlserverDAO: isNullOrEmpty");
		if (param == null) {
			return false;
		}

		if (param.trim().length() == 0) {
			return false;
		}

		return true;
	}

	@Override
	public JSONObject listarDetalleFicha(JSONObject json) {
		System.out.println("LoteFichaSqlserverDAO: listarDetalleFicha");
		JSONObject jsonObj = new JSONObject();
		PreparedStatement ps = null;
		ResultSet rs = null;
		Connection cnx = null;
		ResponseHelper response = new ResponseHelper();
		String base = "planillabd";
		try {
			cnx = SqlserverDAOFactory.obtenerConexion(base);
		} catch (Exception e) {
		}
		return jsonObj;
	}
Luis Gangas committed
775 776

}