private void clienteToolStripMenuItem_Click(object sender, EventArgs e) { ClienteInfo f = new ClienteInfo(); f.Text = "Proveedor"; f.lblNombre.Text = "Proveedor"; f.txbIDMov.Text = dtgMovimiento.CurrentRow.Cells["idmovimiento"].Value.ToString(); f.txbIDCliente.Text = dtgMovimiento.CurrentRow.Cells["IDPERSONA"].Value.ToString(); f.txbCliente.Text = dtgMovimiento.CurrentRow.Cells["cliente"].Value.ToString(); f.dtpFecha.Text = dtgMovimiento.CurrentRow.Cells["fecha"].Value.ToString(); f.cbbEstado.Text = dtgMovimiento.CurrentRow.Cells["estado"].Value.ToString(); f.cbbFactura.Text = dtgMovimiento.CurrentRow.Cells["tipodocumento"].Value.ToString(); f.txbNFactura.Text = dtgMovimiento.CurrentRow.Cells["numdocumento"].Value.ToString(); f.cbbCondPago.Text = dtgMovimiento.CurrentRow.Cells["condpago"].Value.ToString(); f.cbbTransaccion.Text = dtgMovimiento.CurrentRow.Cells["Transaccion"].Value.ToString(); f.cbbTransaccion.Enabled = false; f.cbbFactura.Enabled = false; f.cbbFactura.SelectedIndex = 1; f.cbbEstado.Enabled = false; f.lblSubtotal.Text = dtgMovimiento.CurrentRow.Cells["subtotal"].Value.ToString(); f.lblIVA.Text = dtgMovimiento.CurrentRow.Cells["ivatotal"].Value.ToString(); f.lblTotal.Text = dtgMovimiento.CurrentRow.Cells["total"].Value.ToString(); ClienteInfo.tipoDoc = dtgMovimiento.CurrentRow.Cells["tipodocumento"].Value.ToString(); ClienteInfo.subtotal = Convert.ToDouble(dtgMovimiento.CurrentRow.Cells["subtotal"].Value); ClienteInfo.iva = Convert.ToDouble(dtgMovimiento.CurrentRow.Cells["ivatotal"].Value); ClienteInfo.total = Convert.ToDouble(dtgMovimiento.CurrentRow.Cells["total"].Value); f.ShowDialog(); Cargar(); ClienteInfo.tipoDoc = ""; ClienteInfo.subtotal = 0.00; ClienteInfo.iva = 0.00; ClienteInfo.total = 0.00; }
private void clienteToolStripMenuItem_Click(object sender, EventArgs e) { if (!dtgMovimiento.CurrentRow.Cells["estado"].Value.ToString().Equals("Anulado")) { try { ClienteInfo f = new ClienteInfo(); f.txbIDMov.Text = dtgMovimiento.CurrentRow.Cells["idmovimiento"].Value.ToString(); f.txbIDCliente.Text = dtgMovimiento.CurrentRow.Cells["IDPERSONA"].Value.ToString(); f.txbCliente.Text = dtgMovimiento.CurrentRow.Cells["cliente"].Value.ToString(); f.dtpFecha.Text = dtgMovimiento.CurrentRow.Cells["fecha"].Value.ToString(); f.cbbEstado.Text = dtgMovimiento.CurrentRow.Cells["estado"].Value.ToString(); f.cbbFactura.Text = dtgMovimiento.CurrentRow.Cells["tipocomprobante"].Value.ToString(); f.txbNFactura.Text = dtgMovimiento.CurrentRow.Cells["numcomprobante"].Value.ToString(); f.cbbTransaccion.Text = dtgMovimiento.CurrentRow.Cells["Transaccion"].Value.ToString();; f.lblSubtotal.Text = dtgMovimiento.CurrentRow.Cells["subtotal"].Value.ToString(); f.lblIVA.Text = dtgMovimiento.CurrentRow.Cells["ivatotal"].Value.ToString(); f.lblTotal.Text = dtgMovimiento.CurrentRow.Cells["total"].Value.ToString(); ClienteInfo.tipoDoc = dtgMovimiento.CurrentRow.Cells["tipocomprobante"].Value.ToString(); ClienteInfo.subtotal = Convert.ToDouble(dtgMovimiento.CurrentRow.Cells["subtotal"].Value); ClienteInfo.iva = Convert.ToDouble(dtgMovimiento.CurrentRow.Cells["ivatotal"].Value); ClienteInfo.total = Convert.ToDouble(dtgMovimiento.CurrentRow.Cells["total"].Value); if (dtgMovimiento.CurrentRow.Cells["condpago"].Value.ToString().Equals("TARJETA DE CREDITO")) { f.cbbCondPago.SelectedIndex = 1; f.lblBanco.Text = dtgMovimiento.CurrentRow.Cells["banco"].Value.ToString(); f.lblPropietario.Text = dtgMovimiento.CurrentRow.Cells["propietariocuenta"].Value.ToString(); f.lblCuenta.Text = dtgMovimiento.CurrentRow.Cells["ncuenta"].Value.ToString(); } else if (dtgMovimiento.CurrentRow.Cells["condpago"].Value.ToString().Equals("EFECTIVO")) { f.cbbCondPago.SelectedIndex = 0; } f.ShowDialog(); Cargar(); FiltrarPorFecha(); ClienteInfo.tipoDoc = ""; ClienteInfo.subtotal = 0.00; ClienteInfo.iva = 0.00; ClienteInfo.total = 0.00; } catch { } } else { MessageBox.Show("No es posible editar valores de este documento ya que fue anulado", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void btnAgregar_Click(object sender, EventArgs e) { try { ClienteInfo f = new ClienteInfo(); ClienteInfo.tipoDoc = ""; ClienteInfo.subtotal = 0.00; ClienteInfo.iva = 0.00; ClienteInfo.total = 0.00; f.ShowDialog(); Cargar(); FiltrarPorFecha(); } catch { } }
private void btnAgregar_Click(object sender, EventArgs e) { ClienteInfo f = new ClienteInfo(); f.Text = "Proveedor"; f.lblNombre.Text = "Proveedor"; f.cbbTransaccion.Enabled = false; f.btnDefault.Enabled = false; f.btnDefault.Visible = false; f.cbbTransaccion.SelectedIndex = 2; f.cbbFactura.SelectedIndex = 1; f.cbbFactura.Enabled = false; f.cbbEstado.SelectedIndex = 1; f.cbbEstado.Enabled = false; ClienteInfo.tipoDoc = ""; ClienteInfo.subtotal = 0.00; ClienteInfo.iva = 0.00; ClienteInfo.total = 0.00; f.ShowDialog(); Cargar(); }