Пример #1
0
 public static int eliminarCuentaContable(CapaEntidad.cuentacontable p)
 {
     int i = 0;
     try
     {
         CapaEntidad.con.updateSQL("update CUENTACONTABLE set stat = '0' where idcuentacontable = '" + p.ID1 + "'");
         i = 1;
     }
     catch (Exception e)
     {
         i = 0;
     }
     return i;
 }
Пример #2
0
 public static int actualizarCuentaContable(CapaEntidad.cuentacontable p)
 {
     int i = 0;
     try
     {
         CapaEntidad.con.updateSQL("update CUENTACONTABLE set nombre = '" + p.Nombre + "', estadofinanciero = '" + p.Estadofinanciero + "', clasificacion = '" + p.Clasificacion + "' where idcuentacontable = '" + p.ID1 + "'");
         i = 1;
     }
     catch (Exception e)
     {
         i = 0;
     }
     return i;
 }
Пример #3
0
 public static int agregarCuentaContable(CapaEntidad.cuentacontable p)
 {
     int i = 0;
     try
     {
         CapaEntidad.con.insertSQL("INSERT INTO CUENTACONTABLE VALUES('" + p.Nombre + "','" + p.Estadofinanciero + "','" + p.Clasificacion + "','" + p.Status + "')");
         i = 1;
     }
     catch (Exception e)
     {
         i = 0;
     }
     return i;
 }
Пример #4
0
 private void btnGuardar_Click(object sender, EventArgs e)
 {
     if (estado == "insertar")
     {
         CapaEntidad.cuentacontable p = new CapaEntidad.cuentacontable();
         p.Nombre           = txtNombre.Text;
         p.Estadofinanciero = cmbEstadoFinanciero.Text;
         p.Clasificacion    = cmbClasificacion.Text;
         p.Status           = "1";
         CapaNegocio cn = new CapaNegocio();
         cn.insertCuentaContable(p);
         limpiar();
         btnNuevo.Enabled  = true;
         btnEditar.Enabled = btnEliminar.Enabled = btnGuardar.Enabled = btnCancelar.Enabled = txtNombre.Enabled = txtNombre.Enabled = cmbEstadoFinanciero.Enabled = cmbClasificacion.Enabled = false;
     }
     else if (estado == "editar")
     {
         CapaEntidad.cuentacontable p = new CapaEntidad.cuentacontable();
         p.ID1              = id;
         p.Nombre           = txtNombre.Text;
         p.Estadofinanciero = cmbEstadoFinanciero.Text;
         p.Clasificacion    = cmbClasificacion.Text;
         CapaNegocio cn = new CapaNegocio();
         p.Status = "1";
         cn.actualizarCuentaContable(p);
         btnEditar.Enabled  = btnEliminar.Enabled = btnNuevo.Enabled = true;
         btnGuardar.Enabled = btnCancelar.Enabled = txtNombre.Enabled = txtNombre.Enabled = cmbEstadoFinanciero.Enabled = cmbClasificacion.Enabled = false;
     }
     else if (estado == "eliminar")
     {
         if (MessageBox.Show("Desea eliminar el registro", "Eliminacion", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
         {
             CapaEntidad.cuentacontable p = new CapaEntidad.cuentacontable();
             p.ID1 = id;
             CapaNegocio cn = new CapaNegocio();
             cn.eliminarCuentaContable(p);
             limpiar();
             btnNuevo.Enabled  = true;
             btnEditar.Enabled = btnEliminar.Enabled = btnGuardar.Enabled = btnCancelar.Enabled = txtNombre.Enabled = txtNombre.Enabled = cmbEstadoFinanciero.Enabled = cmbClasificacion.Enabled = false;
         }
     }
 }
Пример #5
0
        public void eliminarCuentaContable(CapaEntidad.cuentacontable p)
        {
            if (string.IsNullOrWhiteSpace(p.ID1))
            {
                MessageBox.Show("Hay Uno o mas Campos Vacios!", "Campos Vacios!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            else
            {
                int resultado = CapaDatos.eliminarCuentaContable(p);

                if (resultado > 0)
                {
                    MessageBox.Show("Poliza Eliminada Con Exito!!", "Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                else
                {
                    MessageBox.Show("No se pudo eliminar la Poliza", "Fallo!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
        }
Пример #6
0
        public void actualizarCuentaContable(CapaEntidad.cuentacontable p)
        {
            if (string.IsNullOrWhiteSpace(p.Nombre) || string.IsNullOrWhiteSpace(p.Estadofinanciero) || string.IsNullOrWhiteSpace(p.Clasificacion))
            {
                MessageBox.Show("Hay Uno o mas Campos Vacios!", "Campos Vacios!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            else
            {
                int resultado = CapaDatos.actualizarCuentaContable(p);

                if (resultado > 0)
                {
                    MessageBox.Show("Cuenta contable Editada Con Exito!!", "Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                else
                {
                    MessageBox.Show("No se pudo editar la cuenta contable", "Fallo!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
        }