-
Notifications
You must be signed in to change notification settings - Fork 0
/
EstudiosDeImpactoAmbiental.aspx.cs
144 lines (122 loc) · 5.81 KB
/
EstudiosDeImpactoAmbiental.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
namespace Impamb
{
public partial class EstudiosDeImpactoAmbiental : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack) {
DataTable dtDelegacion = new DataTable();
DataTable dtTipoInstrumento = new DataTable();
DataTable dtExpedientes = new DataTable();
DataTable dtPeriodo = new DataTable();
try
{
dtDelegacion.Columns.Add("UnidadCodigo", Type.GetType("System.String"));
dtDelegacion.Columns.Add("UnidadAdministrativa", Type.GetType("System.String"));
dtTipoInstrumento.Columns.Add("CodigoInstrumento", Type.GetType("System.String"));
dtTipoInstrumento.Columns.Add("DescripcionInstrumento", Type.GetType("System.String"));
dtExpedientes.Columns.Add("Periodo", Type.GetType("System.String"));
dtExpedientes.Columns.Add("NumeroEstudio", Type.GetType("System.String"));
dtExpedientes.Columns.Add("NombreProyecto", Type.GetType("System.String"));
dtExpedientes.Columns.Add("RepresentanteLegal", Type.GetType("System.String"));
dtExpedientes.Columns.Add("DireccionProyecto", Type.GetType("System.String"));
dtExpedientes.Columns.Add("FechaRecibidaNotificar", Type.GetType("System.String"));
dtPeriodo.Columns.Add("Anio", Type.GetType("System.String"));
Session["dtExpedientes"] = dtExpedientes;
Query.EstudiosImpactoAmbientalQuery qry = new Query.EstudiosImpactoAmbientalQuery();
qry.DropDownDelegaciones(dtDelegacion);
ddlDelegaciones.DataSource = dtDelegacion;
ddlDelegaciones.DataTextField = "UnidadAdministrativa";
ddlDelegaciones.DataValueField = "UnidadCodigo";
ddlDelegaciones.DataBind();
qry.DropDownTipoInstrumentos(dtTipoInstrumento);
ddlTipoInstrumento.DataSource = dtTipoInstrumento;
ddlTipoInstrumento.DataTextField = "DescripcionInstrumento";
ddlTipoInstrumento.DataValueField = "CodigoInstrumento";
ddlTipoInstrumento.DataBind();
qry.grdEIA(dtExpedientes);
grdExpedienteInstrumentoAmbiental.DataSource = dtExpedientes;
grdExpedienteInstrumentoAmbiental.DataBind();
for (int i = 2007; i <= DateTime.Today.Year; i++) {
dtPeriodo.Rows.Add(i);
}
ddlPeriodo.DataSource = dtPeriodo;
ddlPeriodo.DataTextField = "Anio";
ddlPeriodo.DataValueField = "Anio";
ddlPeriodo.DataBind();
}
catch (Exception ex) { throw ex; }
}
}
protected void grdExpedienteInstrumentoAmbiental_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
grdExpedienteInstrumentoAmbiental.PageIndex = e.NewPageIndex;
DataTable DT = new DataTable();
DT = (DataTable)Session["dtExpedientes"];
grdExpedienteInstrumentoAmbiental.DataSource = DT;
grdExpedienteInstrumentoAmbiental.DataBind();
}
protected void btnEjecutarBusqueda_ServerClick(object sender, EventArgs e)
{
try
{
DataTable dt = new DataTable();
dt = (DataTable)Session["dtExpedientes"];
dt.Clear();
int delegacion;
int periodo;
String tipoinstrumento;
String numeroestudio;
lblMensajeExpediente.InnerText = "";
if (ddlDelegaciones.Text == "0")
{
delegacion = 0;
}
else {
delegacion = Convert.ToInt32(ddlDelegaciones.Text);
}
if (ddlPeriodo.Text == "0")
{
periodo = 0;
}
else {
periodo = Convert.ToInt32(ddlPeriodo.Text);
}
if (ddlTipoInstrumento.Text == "0")
{
tipoinstrumento = "";
}
else {
tipoinstrumento = ddlTipoInstrumento.Text;
}
if (txtNumeroEstudio.Text == "")
{
numeroestudio = "";
}
else {
numeroestudio = txtNumeroEstudio.Text;
}
Query.EstudiosImpactoAmbientalQuery qry = new Query.EstudiosImpactoAmbientalQuery();
qry.grBusquedaPorCampos(dt, delegacion, tipoinstrumento, periodo, numeroestudio);
grdExpedienteInstrumentoAmbiental.DataSource = dt;
grdExpedienteInstrumentoAmbiental.DataBind();
if (dt.Rows.Count == 0)
{
lblMensajeExpediente.InnerText = "No se encontraron expedientes para notificar";
}
ddlDelegaciones.ClearSelection();
ddlPeriodo.ClearSelection();
ddlTipoInstrumento.ClearSelection();
txtNumeroEstudio.Dispose();
}
catch (Exception ex) { throw ex; }
}
}
}