public TOTransaction <PqInpqr> GetInfoDataPqr(int emp_codi, int inp_cont)
        {
            DAOPqDinPq daoDinpq = new DAOPqDinPq();
            DAOPqInpqr DAOPqr   = new DAOPqInpqr();

            try
            {
                List <PqInpqr> pqrList = DAOPqr.getPqInPqrEncuestas(inp_cont, emp_codi);
                PqInpqr        pqr     = pqrList.FirstOrDefault();

                if (pqr == null)
                {
                    throw new Exception("No se encontraron datos con los parámetros especificados");
                }

                pqr.seguimientos = daoDinpq.getpqDinPq(inp_cont, emp_codi);
                return(new TOTransaction <PqInpqr>()
                {
                    objTransaction = pqr, retorno = 0, txtRetorno = ""
                });
            }
            catch (Exception ex)
            {
                return(new TOTransaction <PqInpqr>()
                {
                    objTransaction = null, retorno = 1, txtRetorno = ex.Message
                });
            }
        }
Beispiel #2
0
        public TOTransaction SetPqEncue(List <PQEncue> encuesta)
        {
            DAOPqInpqr DAOPqr   = new DAOPqInpqr();
            DAOPqEncue DAOEncue = new DAOPqEncue();

            try
            {
                if (encuesta != null && encuesta.Count > 0)
                {
                    foreach (PQEncue encue in encuesta)
                    {
                        encue.enc_cont = DAOPqr.GetCont("PQ_ENCUE", "ENC_CONT");
                        encue.enc_fech = DateTime.Now;
                        var insertion = DAOEncue.insertDAOPqEncue(encue);
                        if (insertion != 0)
                        {
                            throw new Exception("No se envió la encuesta.Contacte con su proveedor de servicios");
                        }
                    }
                }
                return(new TOTransaction()
                {
                    txtRetorno = "", retorno = 0
                });
            }
            catch (Exception ex)
            {
                return(new TOTransaction()
                {
                    retorno = 1, txtRetorno = ex.Message
                });
            }
        }
Beispiel #3
0
        public TOTransaction Post()
        {
            BOGnRadju boRadju     = new BOGnRadju();
            var       httpRequest = HttpContext.Current.Request;
            int       emp_codi    = 0;
            int       inp_cont    = 0;

            try
            {
                if (httpRequest.Files.Count == 0)
                {
                    throw new Exception("No se recibió ningún adjunto. Contacte con su administrador del sistema");
                }


                foreach (string file in httpRequest.Files)
                {
                    var postedFile = httpRequest.Files[file];

                    emp_codi = int.Parse(httpRequest.Form["EMP_CODI"]);
                    emp_codi = new tools.General().GetEmpCodi(emp_codi);

                    inp_cont = int.Parse(httpRequest.Form["INP_CONT"]);
                    PqInpqr pqr = new DAOPqInpqr().getPqInPqr(inp_cont, emp_codi).FirstOrDefault();
                    if (pqr == null)
                    {
                        throw new Exception("Registro no encontrado");
                    }
                    // var filePath = HttpContext.Current.Server.MapPath("~/Upload/" + postedFile.FileName);
                    string key = string.Concat(emp_codi, inp_cont);
                    //Sube archivo a documentos
                    var saveAttchment = boRadju.insertGnRadju((short)emp_codi, key, "PQ_INPQR", "SPQINPQR", inp_cont, postedFile, "S");
                    if (!saveAttchment.Item1)
                    {
                        throw new Exception(string.Format("Error insertando adjunto en documentos {0}", saveAttchment.Item2));
                    }

                    //Sube archivo a workflow
                    saveAttchment = boRadju.insertGnRadju((short)emp_codi, key, "PQ_INPQR", "SPQINPQR", pqr.cas_cont, postedFile, "W");
                    if (!saveAttchment.Item1)
                    {
                        throw new Exception(string.Format("Error insertando adjunto en flujo {0}", saveAttchment.Item2));
                    }
                }
            }
            catch (Exception ex)
            {
                DAOPqInpqr daoPqr = new DAOPqInpqr();
                daoPqr.deletePqr(inp_cont);
                return(new TOTransaction()
                {
                    retorno = 1, txtRetorno = ex.Message
                });
            }


            return(new TOTransaction()
            {
                retorno = 0, txtRetorno = ""
            });
        }