Ejemplo n.º 1
0
 private void b_eliminar_Click(object sender, EventArgs e)
 {
     if (tabla_clientes.SelectedRows.Count > 0)
     {
         id = tabla_clientes.CurrentRow.Cells["id_clientes"].Value.ToString();
         objetoCN.EliminarClientes(id);
         objma = new Form_Mensaje_A("Cliente eliminadó correctamente");
         objma.Show();
         MostrarClientes();
         Limpiar_Datos();
     }
     else
     {
         objme = new Form_Mensaje_E("Seleccione una fila");
         objme.Show();
     }
 }
Ejemplo n.º 2
0
 private void b_eliminar2_Click(object sender, EventArgs e)
 {
     if (tablaDeudas.SelectedRows.Count > 0)
     {
         id2 = tablaDeudas.CurrentRow.Cells["id_deuda_proveedor"].Value.ToString();
         objetoCN2.EliminarDProveedor(id2);
         objma = new Form_Mensaje_A("Registro eliminadó correctamente");
         objma.Show();
         MostrarDeudasProveedores();
         Limpiar_Datos2();
     }
     else
     {
         objme = new Form_Mensaje_E("Seleccione una fila");
         objme.Show();
     }
 }
Ejemplo n.º 3
0
 private void b_eliminar_Click(object sender, EventArgs e)
 {
     if (dataGridView1.SelectedRows.Count > 0)
     {
         t_id.Text = dataGridView1.CurrentRow.Cells["id_producto"].Value.ToString();
         objetoCN.EliminarProd(t_id.Text);
         objma = new Form_Mensaje_A("Producto eliminadó correctamente");
         objma.Show();
         MostrarProductos();
         Limpiar_Datos();
     }
     else
     {
         objme = new Form_Mensaje_E("Seleccione una fila");
         objme.Show();
     }
 }
Ejemplo n.º 4
0
 private void b_guardar_Click(object sender, EventArgs e)
 {
     if (t_nombre.Text == string.Empty || t_direccion.Text == string.Empty || t_telefono.Text == string.Empty || t_correo.Text == string.Empty)
     {
         error.SetError(this.b_guardar, "Campos Vacios");
     }
     else
     {
         error.Clear();
         if (Editar == false)
         {
             try
             {
                 objetoCN.InsertarClientes(t_nombre.Text, t_direccion.Text, t_telefono.Text, t_correo.Text);
                 objma = new Form_Mensaje_A("Cliente agregadó correctamente");
                 objma.Show();
                 MostrarClientes();
                 Limpiar_Datos();
             }
             catch (Exception ex)
             {
                 objme = new Form_Mensaje_E("Ha ocurridó un error");
                 objme.Show();
             }
         }
         if (Editar == true)
         {
             try
             {
                 objetoCN.EditarClientes(id, t_nombre.Text, t_direccion.Text, t_telefono.Text, t_correo.Text);
                 objma = new Form_Mensaje_A("Cliente editadó correctamente");
                 objma.Show();
                 MostrarClientes();
                 Limpiar_Datos();
                 Editar = false;
             }
             catch (Exception ex)
             {
                 objme = new Form_Mensaje_E("Ha Ocurridó un error de edicion");
                 objme.Show();
             }
         }
     }
 }
Ejemplo n.º 5
0
        private void b_guardar_Click(object sender, EventArgs e)
        {
            if (Editar == false)
            {
                try
                {
                    objetoCN.InsertarProveedor(t_nombre.Text, t_direccion.Text, t_telefono.Text, t_correo.Text, t_cuidad.Text, t_agente.Text);
                    objma = new Form_Mensaje_A("Proveedor agregadó correctamente");
                    objma.Show();
                    MostrarProveedores();
                    Limpiar_Datos();
                    Llenar_Proveedor(cb_proveedor);
                }
                catch (Exception ex)
                {
                    objme = new Form_Mensaje_E("Ha ocurridó un error");
                    objme.Show();
                }
            }

            if (Editar == true)
            {
                try
                {
                    objetoCN.EditarProveedor(id, t_nombre.Text, t_direccion.Text, t_telefono.Text, t_correo.Text, t_cuidad.Text, t_agente.Text);
                    objma = new Form_Mensaje_A("Proveedor editadó correctamente");
                    objma.Show();
                    MostrarProveedores();
                    Limpiar_Datos();
                    Llenar_Proveedor(cb_proveedor);
                    Editar = false;
                }
                catch (Exception ex)
                {
                    objme = new Form_Mensaje_E("Ha Ocurridó un error de edicion");
                    objme.Show();
                }
            }
        }
Ejemplo n.º 6
0
        private void b_guardar2_Click(object sender, EventArgs e)
        {
            if (Editar2 == false)
            {
                try
                {
                    objetoCN2.InsertarDProveedor(cb_proveedor.SelectedItem.ToString(), t_folio.Text, t_cantidad.Text, t_fechaV.Text, cb_estado.SelectedItem.ToString());
                    objma = new Form_Mensaje_A("Registro agregadó correctamente");
                    objma.Show();
                    MostrarDeudasProveedores();
                    Limpiar_Datos2();
                }
                catch (Exception ex)
                {
                    objme = new Form_Mensaje_E("Ha ocurridó un error");
                    objme.Show();
                }
            }

            if (Editar2 == true)
            {
                try
                {
                    objetoCN2.EditarDProveedor(id2, cb_proveedor.SelectedItem.ToString(), t_folio.Text, t_cantidad.Text, t_fechaV.Text, cb_estado.SelectedItem.ToString());
                    objma = new Form_Mensaje_A("Registro editadó correctamente");
                    objma.Show();
                    MostrarDeudasProveedores();
                    Limpiar_Datos2();
                    Editar2 = false;
                }
                catch (Exception ex)
                {
                    objme = new Form_Mensaje_E("Ha Ocurridó un error de edicion");
                    objme.Show();
                }
            }
        }
Ejemplo n.º 7
0
 private void b_guardar_Click(object sender, EventArgs e)
 {
     if (Editar == false)
     {
         try
         {
             objetoCN.InsertarProd(t_id.Text, t_descripcion.Text, t_existencia.Text, t_preciocosto.Text, t_precioventa.Text, t_cantidadminima.Text, cb_foliofactura.SelectedItem.ToString());
             objma = new Form_Mensaje_A("Producto agregadó correctamente");
             objma.Show();
             MostrarProductos();
             Limpiar_Datos();
         }
         catch (Exception ex)
         {
             objme = new Form_Mensaje_E("Ha ocurridó un error");
             objme.Show();
         }
     }
     if (Editar == true)
     {
         try
         {
             objetoCN.EditarProd(t_id.Text, t_descripcion.Text, t_existencia.Text, t_preciocosto.Text, t_precioventa.Text, t_cantidadminima.Text);
             objma = new Form_Mensaje_A("Producto editadó correctamente");
             objma.Show();
             MostrarProductos();
             Limpiar_Datos();
             Editar = false;
         }
         catch (Exception ex)
         {
             objme = new Form_Mensaje_E("Ha Ocurridó un error");
             objme.Show();
         }
     }
 }