/// <summary>
        /// Inserta un AsuntoT
        /// </summary>
        internal int Insert(Models.AsuntoT oAsuntoT)
        {
            try
            {
                SqlParameter[] dbparams = new SqlParameter[20] {
                    Param(enumDBFields.t332_idtarea, oAsuntoT.t332_idtarea),
                    Param(enumDBFields.T600_alerta, oAsuntoT.T600_alerta),
                    Param(enumDBFields.T600_desasunto, oAsuntoT.T600_desasunto),
                    Param(enumDBFields.T600_desasuntolong, oAsuntoT.T600_desasuntolong),
                    Param(enumDBFields.T600_dpto, oAsuntoT.T600_dpto),
                    Param(enumDBFields.T600_estado, oAsuntoT.T600_estado),
                    Param(enumDBFields.T600_etp, oAsuntoT.T600_etp),
                    Param(enumDBFields.T600_etr, oAsuntoT.T600_etr),
                    Param(enumDBFields.T600_ffin, oAsuntoT.T600_ffin),
                    Param(enumDBFields.T600_flimite, oAsuntoT.T600_flimite),
                    Param(enumDBFields.T600_fnotificacion, oAsuntoT.T600_fnotificacion),
                    Param(enumDBFields.T600_notificador, oAsuntoT.T600_notificador),
                    Param(enumDBFields.T600_obs, oAsuntoT.T600_obs),
                    Param(enumDBFields.T600_prioridad, oAsuntoT.T600_prioridad),
                    Param(enumDBFields.T600_refexterna, oAsuntoT.T600_refexterna),
                    Param(enumDBFields.T600_registrador, oAsuntoT.T600_registrador),
                    Param(enumDBFields.T600_responsable, oAsuntoT.T600_responsable),
                    Param(enumDBFields.T600_severidad, oAsuntoT.T600_severidad),
                    Param(enumDBFields.T600_sistema, oAsuntoT.T600_sistema),
                    Param(enumDBFields.t384_idtipo, oAsuntoT.t384_idtipo)
                };

                return((int)cDblib.ExecuteScalar("SUP_ASUNTO_T_I", dbparams));
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 2
0
        public int grabar(Models.AsuntoT DatosGenerales, List <Models.AsuntoRecursosT> Integrantes)
        {
            int  idReferencia;
            bool bConTransaccion = false;
            Guid methodOwnerID   = new Guid("5590F1B4-7073-4B5F-A4DB-9F301648D151");

            OpenDbConn();
            if (cDblib.Transaction.ownerID.Equals(new Guid()))
            {
                bConTransaccion = true;
            }
            if (bConTransaccion)
            {
                cDblib.beginTransaction(methodOwnerID);
            }
            try
            {
                DAL.AsuntoT         oAsunto          = new DAL.AsuntoT(cDblib);
                DAL.AsuntoEstadoT   oAsuntoEstadoDAL = new DAL.AsuntoEstadoT(cDblib);
                DAL.AsuntoRecursosT oRecursoDAL      = new DAL.AsuntoRecursosT(cDblib);

                Models.AsuntoEstadoT oAsuntoEstado = new Models.AsuntoEstadoT();

                oAsuntoEstado.t606_estado    = byte.Parse(DatosGenerales.T600_estado);
                oAsuntoEstado.t314_idusuario = (int)HttpContext.Current.Session["NUM_EMPLEADO_ENTRADA"];

                if (DatosGenerales.T600_idasunto == -1)
                {
                    idReferencia = oAsunto.Insert(DatosGenerales);

                    oAsuntoEstado.t600_idasunto = idReferencia;
                    oAsuntoEstadoDAL.Insert(oAsuntoEstado);
                }
                else
                {
                    oAsunto.Update(DatosGenerales);
                    idReferencia = DatosGenerales.T600_idasunto;

                    if (DatosGenerales.T600_estado_anterior != DatosGenerales.T600_estado)
                    {
                        oAsuntoEstado.t600_idasunto = idReferencia;
                        oAsuntoEstadoDAL.Insert(oAsuntoEstado);
                    }
                }

                foreach (Models.AsuntoRecursosT oRecurso in Integrantes)
                {
                    switch (oRecurso.accionBD)
                    {
                    case "I":
                        //Inserción
                        oRecurso.T600_idasunto = idReferencia;
                        oRecursoDAL.Insert(oRecurso);
                        break;

                    case "D":
                        //delete
                        oRecursoDAL.Delete(oRecurso);
                        break;

                    case "U":
                        //update
                        oRecursoDAL.Update(oRecurso);
                        break;
                    }
                }

                if (bConTransaccion)
                {
                    cDblib.commitTransaction(methodOwnerID);
                }

                return(idReferencia);
            }
            catch (Exception ex)
            {
                //rollback
                if (cDblib.Transaction.ownerID.Equals(new Guid()))
                {
                    cDblib.rollbackTransaction(methodOwnerID);
                }
                throw new Exception(ex.Message);
            }
            finally
            {
                //nota.Dispose();
            }
        }
Esempio n. 3
0
        public void EnviarCorreo(Models.AsuntoT DatosGenerales, List <Models.AsuntoRecursosT> Integrantes, bool bAlta)
        {
            string        sTexto = "", sTO = "", sToAux = "", sAux, sIdResponsable, slMails;
            string        sAsunto     = "";
            ArrayList     aListCorreo = new ArrayList();
            StringBuilder sb          = new StringBuilder();

            sIdResponsable = DatosGenerales.T600_responsable.ToString();
            slMails        = DatosGenerales.T600_alerta.ToString();

            if (slMails == "" && sIdResponsable == "")
            {
                return;
            }
            sAsunto = "Alerta de asunto en Bitácora de tarea.";
            if (bAlta)
            {
                sb.Append("<BR>SUPER le informa de la generación del siguiente asunto:<BR><BR>");
            }
            else
            {
                sb.Append("<BR>SUPER le informa de la modificación del siguiente asunto:<BR><BR>");
            }

            sb.Append("<label style='width:120px'>Proyecto económico: </label>" + DatosGenerales.t301_idproyecto.ToString() + @" - " + DatosGenerales.DesPE + "<br>");
            sb.Append("<label style='width:120px'>Proyecto técnico: </label>" + DatosGenerales.t301_idproyecto.ToString() + @" - " + DatosGenerales.t331_despt + "<br>");
            sb.Append("<label style='width:120px'>Fase: </label>" + DatosGenerales.t334_desfase + "<br>");
            sb.Append("<label style='width:120px'>Actividad: </label>" + DatosGenerales.t335_desactividad + "<br>");
            sb.Append("<label style='width:120px'>Tarea: </label>" + DatosGenerales.t332_idtarea.ToString() + @" - " + DatosGenerales.t332_destarea + "<br>");
            sb.Append("<label style='width:120px'>Asunto: </label><b>" + DatosGenerales.T600_idasunto.ToString() + @" - " + DatosGenerales.T600_desasunto + "</b><br><br>");

            sb.Append("<b>Información del asunto:</b><br>");

            sb.Append("<label style='width:120px'>Responsable: </label>" + DatosGenerales.Responsable + "<br>");
            if (DatosGenerales.T600_flimite == null)
            {
                sAux = "";
            }
            else
            {
                sAux = DatosGenerales.T600_flimite.ToString().Substring(0, 10);
            }

            sb.Append("<label style='width:120px'>F/Límite: </label>" + sAux + "<br>");

            if (DatosGenerales.T600_ffin == null)
            {
                sAux = "";
            }
            else
            {
                sAux = DatosGenerales.T600_ffin.ToString().Substring(0, 10);
            }

            sb.Append("<label style='width:120px'>F/Fin: </label>" + sAux + "<br>");
            sb.Append("<label style='width:120px'>Ref. Externa: </label>" + DatosGenerales.T600_refexterna.ToString() + "<br>");
            sb.Append("<label style='width:120px'>Esfuerzo planificado: </label>" + double.Parse(DatosGenerales.T600_etp.ToString()).ToString("N") + "<br>");
            sb.Append("<label style='width:120px'>Esfuerzo real: </label>" + double.Parse(DatosGenerales.T600_etr.ToString()).ToString("N") + "<br>");
            sb.Append("<label style='width:120px'>Severidad: </label>" + DatosGenerales.DesSeveridad + "<br>");
            sb.Append("<label style='width:120px'>Prioridad: </label>" + DatosGenerales.DesPrioridad + "<br>");
            sb.Append("<label style='width:120px'>Tipo: </label>" + DatosGenerales.t384_destipo + "<br>");
            sb.Append("<label style='width:120px'>Estado: </label>" + DatosGenerales.DesEstado + "<br>");
            sb.Append("<label style='width:120px'>Sistema afectado: </label>" + DatosGenerales.T600_sistema + "<br><br>");
            //descripcion larga
            sb.Append("<b><label style='width:120px'>Descripción: </label></b>" + DatosGenerales.T600_desasuntolong + "<br><br>");
            //observaciones
            sb.Append("<b><label style='width:120px'>Observaciones: </label></b>" + DatosGenerales.T600_obs + "<br><br>");
            //Departamento
            sb.Append("<b><label style='width:120px'>Departamento: </label></b>" + DatosGenerales.T600_dpto + "<br><br>");

            //Obtengo la lista de e-mail a los que alertar
            if (!slMails.Contains(";"))
            {
                slMails += ";";
            }
            string[] aMails = Regex.Split(slMails, ";");
            //Genero una tabla con la lista de e-mails a notificar
            sb.Append("<b><label style='width:400px'>Relación de e-mails a notificar: </label></b> <br>");
            sb.Append("<table width='400px' style='padding:10px;'>");
            sb.Append("<colgroup><col style='width:400px;' /></colgroup>");
            sb.Append("<tbody>");
            for (int i = 0; i < aMails.Length; i++)
            {
                sToAux = aMails[i].Trim();
                if (sToAux != "")
                {
                    sb.Append("<tr><td style='padding-left:5px;font-size:11px;'>");
                    sTO  = sToAux;
                    sAux = sTO.Substring(0, 2);
                    if (sAux == "\r\n")
                    {
                        sTO = sTO.Substring(2);
                    }
                    sb.Append(sTO);
                    sb.Append("</td></tr>");
                }
            }
            sb.Append("</tbody>");
            sb.Append("</table><br>");
            //Genero una tabla con la lista de profesionales a notificar
            sb.Append("<b><label style='width:400px'>Relación de profesionales asignados: </label> </b><br>");
            sb.Append("<table width='400px' style='padding:10px;'>");
            sb.Append("<colgroup><col style='width:400px;' /></colgroup>");
            sb.Append("<tbody>");

            foreach (Models.AsuntoRecursosT oRecurso in Integrantes)
            {
                if (oRecurso.accionBD != "D")
                {
                    sb.Append("<tr><td style='padding-left:5px;font-size:11px;'>");
                    sb.Append(oRecurso.nomRecurso);
                    sb.Append("</td></tr>");
                }
            }

            sb.Append("</tbody>");
            sb.Append("</table><br>");

            sTexto = sb.ToString();

            //Envío e-mail al responsable del asunto
            if (sIdResponsable != "")
            {
                BLL.Recursos    oRecursos     = new BLL.Recursos();
                Models.Recursos oRecursoModel = new Models.Recursos();
                try
                {
                    oRecursoModel = oRecursos.establecerUsuarioIAP("", int.Parse(sIdResponsable));
                }
                catch (Exception ex)
                {
                    throw new Exception(System.Uri.EscapeDataString("Error al obtener el código de red" + ex.Message));
                }
                finally
                {
                    oRecursos.Dispose();
                }
                sTO = oRecursoModel.t001_codred;
                string[] aMail = { sAsunto, sTexto, sTO };
                aListCorreo.Add(aMail);
            }
            //Obtengo la lista de e-mail a los que alertar y envío un correo a cada uno
            for (int i = 0; i < aMails.Length; i++)
            {
                if (aMails[i] != "")
                {
                    sTO = aMails[i];
                    //sTO.Replace((char)10, (char)160);
                    //sTO.Replace((char)13, (char)160);
                    sAux = sTO.Substring(0, 2);
                    if (sAux == "\r\n")
                    {
                        sTO = sTO.Substring(2);
                    }
                    sTO.Trim();
                    string[] aMail = { sAsunto, sTexto, sTO };
                    aListCorreo.Add(aMail);
                }
            }
            //Obtengo la lista de profesionales a los que notificar y envío un correo a cada uno

            foreach (Models.AsuntoRecursosT oRecurso in Integrantes)
            {
                if (oRecurso.t604_notificar)
                {
                    string[] aMail = { sAsunto, sTexto, oRecurso.MAIL };
                    aListCorreo.Add(aMail);
                }
            }

            Correo.EnviarCorreos(aListCorreo);
        }
        ///// <summary>
        ///// Obtiene un AsuntoT a partir del id
        ///// </summary>
        internal Models.AsuntoT Select(int t600_idasunto)
        {
            Models.AsuntoT oAsuntoT = null;
            IDataReader    dr       = null;

            try
            {
                SqlParameter[] dbparams = new SqlParameter[1] {
                    Param(enumDBFields.t600_idasunto, t600_idasunto)
                };

                dr = cDblib.DataReader("SUP_ASUNTO_T_S", dbparams);
                if (dr.Read())
                {
                    oAsuntoT = new Models.AsuntoT();
                    oAsuntoT.t332_idtarea       = Convert.ToInt32(dr["t332_idtarea"]);
                    oAsuntoT.T600_alerta        = Convert.ToString(dr["T600_alerta"]);
                    oAsuntoT.T600_desasunto     = Convert.ToString(dr["T600_desasunto"]);
                    oAsuntoT.T600_desasuntolong = Convert.ToString(dr["T600_desasuntolong"]);
                    oAsuntoT.T600_dpto          = Convert.ToString(dr["T600_dpto"]);
                    oAsuntoT.T600_estado        = Convert.ToString(dr["T600_estado"]);
                    oAsuntoT.T600_etp           = Convert.ToDouble(dr["T600_etp"]);
                    oAsuntoT.T600_etr           = Convert.ToDouble(dr["T600_etr"]);
                    oAsuntoT.T600_fcreacion     = Convert.ToDateTime(dr["T600_fcreacion"]);
                    if (!Convert.IsDBNull(dr["T600_ffin"]))
                    {
                        oAsuntoT.T600_ffin = Convert.ToDateTime(dr["T600_ffin"]);
                    }
                    if (!Convert.IsDBNull(dr["T600_flimite"]))
                    {
                        oAsuntoT.T600_flimite = Convert.ToDateTime(dr["T600_flimite"]);
                    }
                    oAsuntoT.T600_fnotificacion = Convert.ToDateTime(dr["T600_fnotificacion"]);
                    oAsuntoT.T600_idasunto      = Convert.ToInt32(dr["T600_idasunto"]);
                    oAsuntoT.T600_notificador   = Convert.ToString(dr["T600_notificador"]);
                    oAsuntoT.T600_obs           = Convert.ToString(dr["T600_obs"]);
                    oAsuntoT.T600_prioridad     = Convert.ToString(dr["T600_prioridad"]);
                    oAsuntoT.T600_refexterna    = Convert.ToString(dr["T600_refexterna"]);
                    oAsuntoT.T600_registrador   = Convert.ToInt32(dr["T600_registrador"]);
                    oAsuntoT.T600_responsable   = Convert.ToInt32(dr["T600_responsable"]);
                    oAsuntoT.T600_severidad     = Convert.ToString(dr["T600_severidad"]);
                    oAsuntoT.T600_sistema       = Convert.ToString(dr["T600_sistema"]);
                    oAsuntoT.t384_idtipo        = Convert.ToInt32(dr["t384_idtipo"]);
                    if (!Convert.IsDBNull(dr["Tipo"]))
                    {
                        oAsuntoT.t384_destipo = Convert.ToString(dr["Tipo"]);
                    }
                    oAsuntoT.Registrador = Convert.ToString(dr["Registrador"]);
                    oAsuntoT.Responsable = Convert.ToString(dr["Responsable"]);
                }
                return(oAsuntoT);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (dr != null)
                {
                    if (!dr.IsClosed)
                    {
                        dr.Close();
                    }
                    dr.Dispose();
                }
            }
        }