private async void cargarPresentaciones(int idProducto, int tipo) { List <Presentacion> presentaciones = await presentacionModel.presentacionVentas(idProducto); currentPresentacion = presentaciones[0]; cbxDescripcion.Text = currentPresentacion.descripcion; txtCantidad.Text = "1"; txtDescuento.Text = string.Format(CultureInfo.GetCultureInfo("en-US"), formato, 0); calcularPrecioUnitario(tipo); calcularTotal(); }
private async void cargarPresentaciones(int idProducto, int tipo) { try { List <Presentacion> listPresentacionaux = await presentacionModel.presentacionVentas(idProducto); currentPresentacion = listPresentacionaux[0]; cbxDescripcion.Text = currentPresentacion.descripcion; } catch (Exception ex) { MessageBox.Show("Error: " + ex.Message, "Cargar Presentaciones", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private async void cargarPresentaciones() { if (cbxCodigoProducto.SelectedIndex == -1 || cbxDescripcion.SelectedIndex == -1) { return; /// validacion } /// Cargar las precentaciones presentaciones = await presentacionModel.presentacionVentas(Convert.ToInt32(cbxCodigoProducto.SelectedValue)); presentacionBindingSource.DataSource = presentaciones; cbxPresentacion.SelectedIndex = -1; /// calculos calcularPrecioUnitario(); calcularTotal(); }
private async void cargarPresentaciones(int idProducto, int tipo) { try { List <Presentacion> presentaciones = await presentacionModel.presentacionVentas(idProducto); } catch (Exception ex) { MessageBox.Show("Error: " + ex.Message, "cargar Presentacion", MessageBoxButtons.OK, MessageBoxIcon.Warning); } currentPresentacion = presentaciones[0]; cbxDescripcion.Text = currentPresentacion.descripcion; txtCantidad.Text = "1"; txtDescuento.Text = string.Format(CultureInfo.GetCultureInfo("en-US"), formato, 0); calcularPrecioUnitario(tipo); calcularTotal(); }