private void btnGuardar_Click(object sender, EventArgs e) { try { string rpta = ""; if (this.txtIdcliente.Text == string.Empty || this.txtIgv.Text == string.Empty) { MensajeError("Falta ingresar algunos datos, serán remarcados"); errorIcono.SetError(txtIdcliente, "Ingrese un Valor"); errorIcono.SetError(txtIgv, "Ingrese un Valor"); } else { if (this.IsNuevo) { rpta = VentaBL.Insertar(Convert.ToInt32(this.txtIdventa.Text), Convert.ToInt32(this.txtIdcliente.Text), Idtrabajador, this.dtFecha.Value, this.cbTipo_Pago.Text, ncf, ncrefis, this.txtAuttarjeta.Text, Convert.ToDecimal(this.txtIgv.Text), 1, dtDetalle); } if (rpta.Equals("OK")) { if (this.IsNuevo) { this.MensajeOk("Se Insertó de forma correcta el registro"); this.FacturaConsumidorFinal(); totalPagado = 0; } } else { this.MensajeError(rpta); } this.IsNuevo = false; this.Botones(); this.Limpiar(); this.LimpiarDetalle(); this.Mostrar(); } } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }