private void BtnGuardarVenta_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(CbxTipoComprobante.Text)) { MessageBox.Show("Seleccione Tipo de Comprobante", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); CbxTipoComprobante.Focus(); } else if (string.IsNullOrEmpty(TxtSerie.Text)) { MessageBox.Show("Digite Serie del Documento", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtSerie.Focus(); } else if (string.IsNullOrEmpty(TxtNumero.Text)) { MessageBox.Show("Digite Número del Documento", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNumero.Focus(); } else if (string.IsNullOrEmpty(TxtFechaEmision.Text)) { MessageBox.Show("Ingrese Fecha", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtFechaEmision.Focus(); } else if (string.IsNullOrEmpty(TxtNumeroDocumento.Text)) { MessageBox.Show("Ingrese un Cliente", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNumeroDocumento.Focus(); } else if (string.IsNullOrEmpty(TxtNombres.Text)) { MessageBox.Show("Cliente Incorrecto", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNombres.Focus(); } else if (MLVDetalle.Items.Count == 0) { MessageBox.Show("El detalle no puede estar vacío, agrege items", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtProducto.Focus(); } else { GuardarVenta(); } }
private void LimpiarTextbox() { TxtCompExtImport.Text = "0.00"; TxtCompExtInter.Text = "0.00"; TxtCompExtLocales.Text = "0.00"; TxtCompGraLocales.Text = "0.00"; TxtCompGrInternacionales.Text = "0.00"; TxtCompGraImportaciones.Text = "0.00"; TxtCreditoFiscal.Text = "0.00"; TxtTotalCompras.Text = "0.00"; TxtIvaUnoPorcientoRetenido.Text = "0.00"; TxtRet_Suj_Exc_Cal_Contri.Text = "0.00"; TxtComprasExcluidas.Text = "0.00"; TxtRetencionATerceros.Text = "0.00"; TxtConsTrans.Text = "0.00"; TxtFovial.Text = "0.00"; TxtImpuEspe.Text = "0.00"; TxtNumDoc.Text = ""; TxtNumRegistro.Text = ""; TxtIdExcl.Text = ""; TxtNomProv.Text = ""; TxtFechaEmision.Focus(); }