Beispiel #1
0
        private void btn_continuar_Click(object sender, EventArgs e)
        {
            Nombre_Servicio_seleccionado = cbx_servicio.Text;
            string frecuencia = num_frecuencia.Text;

            if (cb_tipo.Text != "")
            {
                if (Nombre_Servicio_seleccionado != "")
                {
                    ET_R19 servicio = _lista_R19.FirstOrDefault(gg => gg._TR19_TM41_DESCRIP == Nombre_Servicio_seleccionado);

                    //agregar servicio nuevo
                    _entidad._entity_r28._TR28_PADRE   = Id_Servicio_Padre;
                    _entidad._entity_r28._TR28_TM39_ID = tm39_id;
                    _entidad._entity_r28._TR28_TM41_ID = servicio._TR19_TM41_ID;
                    _entidad._entity_r28._TR28_DESCRIP = Nombre_Servicio_seleccionado;
                    _entidad._entity_r28._TR28_PERIODO = Periodo_servicio;

                    _entidad._entity_r28._TR28_FRECUENCIA = Convert.ToInt32(frecuencia);
                    //tipo
                    //frecuencia

                    _nt_r28.set_002(_entidad);

                    this.DialogResult = DialogResult.OK;
                }
                else
                {
                    DialogResult decision_msg = MessageBox.Show("Seleccione un servicio.", "Cotizador", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    if (decision_msg == DialogResult.OK)
                    {
                    }
                }
            }
            else
            {
                DialogResult decision_msg = MessageBox.Show("Seleccione un tipo de servicio.", "Cotizador", MessageBoxButtons.OK, MessageBoxIcon.Information);
                if (decision_msg == DialogResult.OK)
                {
                }
            }
        }
Beispiel #2
0
        //OBTENER LISTA DE SERVICIOS POR TIPO
        public ET_entidad get_001(ET_M41 objEntity)
        {
            string Mensaje_error = "";

            DataTable dt = new DataTable();

            using (SqlConnection cn = new SqlConnection(conexion))
            {
                cn.Open();
                SqlTransaction sqlTran = cn.BeginTransaction();
                SqlCommand     cmd     = new SqlCommand("pa_tr19_sel001", cn, sqlTran);
                cmd.CommandType = CommandType.StoredProcedure;
                try
                {
                    cmd.Parameters.Add("@p_TR19_TM2_ID", SqlDbType.VarChar, 10).Value  = _global._TM2_ID;
                    cmd.Parameters.Add("@p_TR19_TM42_ID", SqlDbType.VarChar, 10).Value = objEntity._TM41_TM42_ID;
                    SqlDataAdapter da = new SqlDataAdapter();
                    da.SelectCommand = cmd;
                    da.Fill(dt);
                    _LISTA_ET_R19.Clear();
                    foreach (DataRow fila in dt.Rows)
                    {
                        _et_r19 = new ET_R19();

                        _et_r19._T_R19_TM2_ID      = fila["T_R19_TM2_ID"].ToString();
                        _et_r19._TR19_TM41_ID      = Convert.ToInt32(fila["TR19_TM41_ID"].ToString());
                        _et_r19._TR19_TM42_ID      = Convert.ToInt32(fila["TR19_TM42_ID"].ToString());
                        _et_r19._TR19_TM41_DESCRIP = fila["TR19_TM41_DESCRIP"].ToString();
                        //_et_r19._TR19_VALOR = Convert.ToInt32(fila["TR19_VALOR"].ToString());
                        _et_r19._TR19_UCREA      = fila["TR19_UCREA"].ToString();
                        _et_r19._TR19_FCREA      = Convert.ToDateTime(fila["TR19_FCREA"].ToString());
                        _et_r19._TR19_UACTUALIZA = fila["TR19_UACTUALIZA"].ToString();
                        _et_r19._TR19_FACTUALIZA = Convert.ToDateTime(fila["TR19_FACTUALIZA"].ToString());

                        _LISTA_ET_R19.Add(_et_r19);
                    }

                    _Entidad._lista_et_r19 = _LISTA_ET_R19;
                    _Entidad._hubo_error   = false;
                }
                catch (SqlException exsql)
                {
                    try
                    {
                        sqlTran.Rollback();
                    }
                    catch (Exception exRollback)
                    {
                    }
                }
                catch (Exception ex)
                {
                    Mensaje_error = string.Format("{1}{0}", Environment.NewLine, (Mensaje_error + ex.Message.ToString()));
                    if (ex.InnerException != null)
                    {
                        Mensaje_error = string.Format("{1}{0}", Environment.NewLine, (Mensaje_error + "Inner exception: " + ex.InnerException.Message));
                    }
                    Mensaje_error = string.Format("{1}{0}", Environment.NewLine, (Mensaje_error + "Stack trace: " + ex.StackTrace));

                    _Entidad._hubo_error        = true;
                    _Entidad._contenido_mensaje = Mensaje_error;
                    _Entidad._titulo_mensaje    = "Error!";
                }
                finally
                {
                    cn.Close();
                }
                return(_Entidad);
            }
        }