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

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.json.JSONArray;
import org.json.JSONObject;
import trismegistoplanilla.beans.AreaCargoBean;
import trismegistoplanilla.beans.AreaCargoTipoPagoBean;
import trismegistoplanilla.beans.TipoPagoBean;
import trismegistoplanilla.dao.TipoPagoDAO;
import trismegistoplanilla.utilities.ResponseHelper;
import trismegistoplanilla.utilities.Variables;

public class TipoPagoSqlserverDAO implements TipoPagoDAO {

18 19 20 21 22 23
	@Override
	public JSONObject listarTipoPago(AreaCargoBean ac) {
		System.out.println("TipoPagoSqlserverDAO: listarTipoPago");
		JSONObject JOListarTipoPago = null;
		JSONArray JAListarTipoPago = new JSONArray();
		ResponseHelper response = new ResponseHelper();
Luis Gangas committed
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
		String sql = ""
			+ "select "
			+ "tipo_pago.codigo_tipo_pago codigoTipoPago, "
			+ "tipo_pago.nombre "
			+ "from area_cargo_tipo_pago "
			+ "inner join dbo.tipo_pago ON dbo.tipo_pago.codigo_tipo_pago = dbo.area_cargo_tipo_pago.codigo_tipo_pago "
			+ "where area_cargo_tipo_pago.codigo_area_cargo = ? and area_cargo_tipo_pago.estado_registro = 1";
		
		Connection conexion = null;
		PreparedStatement ps = null;
		ResultSet rs = null;
		try {
			conexion = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			ps = conexion.prepareStatement(sql);
			ps.setInt(1, ac.getCodigoAreaCargo());
			rs = ps.executeQuery();
			while (rs.next()) {
				TipoPagoBean tp = new TipoPagoBean();
				tp.setCodigoTipoPago(rs.getInt("codigoTipoPago"));
				tp.setNombre(rs.getString("nombre"));
				JSONObject objTipoPago = new JSONObject(tp);
				JAListarTipoPago.put(objTipoPago);
			}
			JSONObject objTipoPago = new JSONObject();
			objTipoPago.put("tipoPagos", JAListarTipoPago);
			response.setStatus(true);
			response.setMessage("Los tipos de pagos se listaron correctamente");
			response.setData(objTipoPago);
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (conexion != null) {
					conexion.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
		JOListarTipoPago = new JSONObject(response);
		return JOListarTipoPago;
	}

	@Override
	public JSONObject validarExistenciaTipoPago(AreaCargoTipoPagoBean actp) {
		System.out.println("TipoPagoSqlserverDAO: validarExistenciaTipoPago");
		JSONObject JObjectValidarExistenciaTipoPago = null;
		ResponseHelper response = new ResponseHelper();

		String sql = ""
			+ "select "
			+ "count(1) exiteTipoPago "
			+ "from area_cargo_tipo_pago "
			+ "inner join dbo.tipo_pago ON dbo.tipo_pago.codigo_tipo_pago = dbo.area_cargo_tipo_pago.codigo_tipo_pago "
			+ "where area_cargo_tipo_pago.codigo_area_cargo = ? and area_cargo_tipo_pago.codigo_tipo_pago = ? and area_cargo_tipo_pago.estado_registro = 1;";
		
		Connection conexion = null;
		PreparedStatement ps = null;
		ResultSet rs = null;
		try {
			conexion = SqlserverDAOFactory.obtenerConexion(Variables.BD_NAME);
			ps = conexion.prepareStatement(sql);
			ps.setInt(1, actp.getCodigoAreaCargo());
			ps.setInt(2, actp.getCodigoTipoPago());
			rs = ps.executeQuery();
			rs.next();
			int exiteTipoPago = 0;
			exiteTipoPago = rs.getInt("exiteTipoPago");
			if (exiteTipoPago > 0) {
				response.setStatus(true);
				response.setMessage("El tipo de pago seleccionada existe");
			} else {
				response.setStatus(false);
				response.setMessage("Error! El tipo de pago seleccionada no existe");
			}
		} catch (SQLException e) {
			e.printStackTrace();
			response.setStatus(false);
			response.setMessage("Error: " + e.getMessage() + " \n Error Code: [" + e.getErrorCode() + "]");
		} finally {
			try {
				if (rs != null) {
					rs.close();
				}
				if (ps != null) {
					ps.close();
				}
				if (conexion != null) {
					conexion.close();
				}
			} catch (SQLException e) {
				e.printStackTrace();
			}
		}
		JObjectValidarExistenciaTipoPago = new JSONObject(response);
		return JObjectValidarExistenciaTipoPago;
	}
Luis Gangas committed
130 131

}