private void btnRealizarSaida_Click(object sender, EventArgs e) { if (valorCaixa > 0) { FrmSaidaValor frmSaidaValor = new FrmSaidaValor(); frmSaidaValor.ShowDialog(); Carregar(); } }
private void saidaDeCaixaToolStripMenuItem_Click(object sender, EventArgs e) { modelFechamento.Vendedor = Properties.SettingsLogado.Default.Nome; modelFechamento.Data = DateTime.Now.ToString(); if (controllerFechamento.VerificarFechamento(modelFechamento)) { MessageBox.Show("Fechamento já registrado!", "Alerta!", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { FrmSaidaValor frmSaidaValor = new FrmSaidaValor(); frmSaidaValor.ShowDialog(); } }