Beispiel #1
0
        private void ButtonAgregar_Click(object sender, EventArgs e)
        {
            bool check = true;

            int id = Id.ValueId("ofrenda", "id");

            string culto = TextBoxCulto.Text;

            if (!EvaluateTextBox.EString(culto, 50, true, "Nombre de Culto"))
            {
                check = false;
            }

            string monto = TextBoxMonto.Text;

            if (!EvaluateTextBox.EDecimal(monto, 10, 3, true, "monto"))
            {
                check = false;
            }

            string fecha = "";

            fecha += MonthCalendarEmision.SelectionStart.Year.ToString() + "-";
            fecha += MonthCalendarEmision.SelectionStart.Month.ToString() + "-";
            fecha += MonthCalendarEmision.SelectionStart.Day.ToString();

            int id_iglesia = 1;

            if (check)
            {
                SqlConnection conexion = new SqlConnection(General_Values.str_connection);
                conexion.Open();
                string str_consult = "INSERT INTO ofrenda(id, culto, monto, fecha, id_iglesia) VALUES(" +
                                     id + ", '" + culto + "', " + monto + ", '" + fecha + "', " + id_iglesia + ");";
                SqlCommand consult = new SqlCommand(str_consult, conexion);
                consult.ExecuteNonQuery();

                conexion.Close();

                MessageBox.Show("Los datos se guardaron correctamente");
                this.Close();
            }
        }
Beispiel #2
0
        private void ButtonAgregar_Click(object sender, EventArgs e)
        {
            bool check = true;

            int id = Id.ValueId("ofrenda_pro_templo", "id");

            string monto = TextBoxMonto.Text;

            if (!EvaluateTextBox.EDecimal(monto, 10, 3, true, "Monto"))
            {
                check = false;
            }

            string mes = TextBoxMes.Text;

            if (!EvaluateTextBox.EMounth(mes, true, "Mes"))
            {
                check = false;
            }

            string año = TextBoxAño.Text;

            if (!EvaluateTextBox.EYear(año, true, "Año"))
            {
                check = false;
            }

            string fch_emision = "";

            fch_emision += MonthCalendarEmision.SelectionStart.Year.ToString() + "-";
            fch_emision += MonthCalendarEmision.SelectionStart.Month.ToString() + "-";
            fch_emision += MonthCalendarEmision.SelectionStart.Day.ToString();

            string cod_miembro = TextBoxCodigo.Text;

            if (!EvaluateTextBox.EIntPositive(cod_miembro, true, "Codigo"))
            {
                check = false;
            }
            else if (!Id.ExistsId("miembro", "codigo", cod_miembro))
            {
                MessageBox.Show("Codigo no encontrado");
                check = false;
            }


            if (check)
            {
                SqlConnection conexion = new SqlConnection(General_Values.str_connection);
                conexion.Open();
                string str_consult2 = "INSERT INTO ofrenda_pro_templo(id, monto, mes, año, fch_emision, cod_miembro) VALUES (" +
                                      +id + ", " + monto + ", '" + mes + "', '" + año + "', '" + fch_emision + "', " + cod_miembro + ");";

                SqlCommand consulta2 = new SqlCommand(str_consult2, conexion);
                consulta2.ExecuteNonQuery();

                MessageBox.Show("Los datos se guardaron correctamente");
                conexion.Close();
                this.Close();
            }
        }