示例#1
0
        private void CargarReporteModular()
        {
            EmpleadoNegocio nEmpleado = new EmpleadoNegocio();

            vDatosReporteModular = nEmpleado.ReporteEmpleadoPorModulo(vIdEmpleado.Value);

            if (vDatosReporteModular != null)
            {
                if (vDatosReporteModular.DatosIdp != null)
                {
                    txtFolioSolicitud.Text = vDatosReporteModular.DatosIdp.CL_SOLICITUD;
                    txtBateriaPruebas.Text = vDatosReporteModular.DatosIdp.FL_BATERIA;
                    vIdSolicitud           = vDatosReporteModular.DatosIdp.ID_SOLICITUD;
                    vIdCandidato           = vDatosReporteModular.DatosIdp.ID_CANDIDATO;
                    if (vIdSolicitud != 0)
                    {
                        btnSolicitud.Enabled = true;
                        btnProceso.Enabled   = true;
                    }
                }
            }
        }