private void lblDelivery_Click(object sender, EventArgs e) { if (Entidad.ListaPrecioDeliveryId == null) { Presentacion.Core.Notificacion.NotificacionIncorrecta.MensajeCuidado("Debe configurar las listas", "No puede ejecutar delivery sin tener configurada la lista"); return; } if (!Entidad.CajaAbierta) { Presentacion.Core.Notificacion.NotificacionIncorrecta.MensajeCuidado("Necesita abrir la caja", "Debe tener caja abierta para facturar"); return; } if (Entidad.UsuarioId == 0) { Presentacion.Core.Notificacion.NotificacionIncorrecta.MensajeCuidado("Debe loguearse", "Debe estar logueado con una cuenta de usuario!"); return; } var prov = new DeliveryMenu(); prov.ShowDialog(); lblEnviosHoy.Refresh(); lblProductosReponer.Refresh(); lblVentasHoy.Refresh(); }
private void deliveryToolStripMenuItem_Click(object sender, System.EventArgs e) { if (Entidad.ListaPrecioDeliveryId == null) { MessageBox.Show("No puede ejecutar delivery sin tener configurada la lista", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); return; } if (!Entidad.CajaAbierta) { MessageBox.Show("Debe tener caja abierta para facturar", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); return; } var prov = new DeliveryMenu(); prov.ShowDialog(); controlPresentacion1.lblEnviosHoy.Refresh(); controlPresentacion1.lblVentasHoy.Refresh(); }