private void salvar_TelaRegistrarEntrada_botao_Click(object sender, EventArgs e) { if (entrada.Checked == false && saida.Checked == false) { MessageBox.Show("Por favor, selecione ao menos um tipo de movimentação"); } else { string TP1 = "NULO"; string TP2 = "NULO"; DateTime dt1 = datade.Value.Date; DateTime dt2 = dataate.Value.Date; if (entrada.Checked == true) { TP1 = entrada.Text.ToString(); } if (saida.Checked == true) { TP2 = saida.Text.ToString(); } CaixaNegocio CAIXA = new CaixaNegocio(); listBoxcaixa.Items.Clear(); listBoxcaixa.Items.Add("MOVIMENTO - DATA - VALOR - MOTIVO"); CAIXA.montaextrato(TP1, TP2, dt1, dt2).ForEach(delegate (string nome) { listBoxcaixa.Items.Add(nome); }); } }
private void comboBoxigreja_SelectedIndexChanged(object sender, EventArgs e) { CaixaNegocio caixa = new CaixaNegocio(); IgrejaNegocio igreja = new IgrejaNegocio(); EntradaNegocio entrada = new EntradaNegocio(); SaidaNegocio saida = new SaidaNegocio(); textBoxcaixa.Text = caixa.Buscarvalorcorrente(igreja.Buscar(comboBoxigreja.Text.ToString()).Cod_igreja1).ToString(); textBoxentrada.Text = entrada.Buscarultimanetrada(igreja.Buscar(comboBoxigreja.Text.ToString()).Cod_igreja1).ToString(); textBoxsaida.Text = saida.Buscarultimasaida(igreja.Buscar(comboBoxigreja.Text.ToString()).Cod_igreja1).ToString(); }
private void salvar_TelaRegistrarEntrada_botao_Click(object sender, EventArgs e) { if (tipo_TelaRegistrarEntrada_textbox.Text == "" || valor_TelaRegistrarEntrada_textbox.Text =="") { MessageBox.Show("Por favor, insira TIPO E VALOR"); } else { IgrejaNegocio igreja = new IgrejaNegocio(); EntradaNegocio entrada = new EntradaNegocio(); CaixaNegocio caixa = new CaixaNegocio(); entrada.Insert(entrada.fromaentrada(tipo_TelaRegistrarEntrada_textbox.Text, float.Parse(valor_TelaRegistrarEntrada_textbox.Text), DateTime.Today.Date, igreja.Buscar(igreja_TelaRegistrarEntrada_Textbox.Text).Cod_igreja1)); caixa.Insert_entrada(igreja.Buscar(igreja_TelaRegistrarEntrada_Textbox.Text).Cod_igreja1,float.Parse(valor_TelaRegistrarEntrada_textbox.Text),caixa.Buscarvalorcorrente(igreja.Buscar(igreja_TelaRegistrarEntrada_Textbox.Text).Cod_igreja1),DateTime.Today.Date); limpacampos(); MessageBox.Show("Entrada Inserida"); } }
private void salvar_TelaRegistrarSaida_botao_Click(object sender, EventArgs e) { if (fornecedor_TelaRegistrarSaida_Textbox.Text == "" || igreja_TelaRegistrarSaida_Textbox.Text == "" || valor_TelaRegistrarSaida_textbox.Text == "" ||tiposaidacombobox.Text == "") { MessageBox.Show("Por favor, preencha todos os dados!"); } else { IgrejaNegocio igreja = new IgrejaNegocio(); FornecedorNegocio fornec = new FornecedorNegocio(); SaidaNegocio saida = new SaidaNegocio(); CaixaNegocio caixa = new CaixaNegocio(); saida.Insert(saida.montarsaida(fornec.Buscar(fornecedor_TelaRegistrarSaida_Textbox.Text.ToString()).Cod_Fornecedor1, igreja.Buscar(igreja_TelaRegistrarSaida_Textbox.Text.ToString()).Cod_igreja1, float.Parse(valor_TelaRegistrarSaida_textbox.Text.ToString()), tiposaidacombobox.Text.ToString(), DateTime.Today.Date)); caixa.Insert_saida(igreja.Buscar(igreja_TelaRegistrarSaida_Textbox.Text).Cod_igreja1, float.Parse(valor_TelaRegistrarSaida_textbox.Text),caixa.Buscarvalorcorrente(igreja.Buscar(igreja_TelaRegistrarSaida_Textbox.Text).Cod_igreja1), DateTime.Today.Date); limparcampos(); MessageBox.Show("Saída Inserida com sucesso!"); } }