-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmManterProjetos.cs
189 lines (149 loc) · 5.82 KB
/
FrmManterProjetos.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WaterSaving
{
public partial class FrmManterProjetos : Form
{
public EOperacao operacao;
public int codigoProjeto = 0;
BindingSource bsource = new BindingSource();
DataSet dsDados = new DataSet();
public FrmManterProjetos()
{
InitializeComponent();
CarregarProjetos();
CarregarCategorias();
}
public void CarregarProjetos()
{
FormatarGridView.Formatar(dgvProjetos);
ProjetosCTL projetosCTL = new ProjetosCTL();
dsDados = projetosCTL.ConsultarProjetos(0);
bsource.DataSource = dsDados.Tables["Projetos"];
dgvProjetos.DataSource = bsource;
}
private void CarregarCategorias()
{
CategoriasCTL categoriasCTL = new CategoriasCTL();
categoriasCTL.CarregarCategorias(ref cbxCategoria);
}
private void btnSair_Click(object sender, EventArgs e)
{
Close();
}
private void btnNovo_Click(object sender, EventArgs e)
{
LimparCampos.Limpar(this);
operacao = EOperacao.Incluir;
codigoProjeto = 0;
HabilitarDesabilitar(true);
txtData.Text = DateTime.Now.Date.ToString("dd/MM/yyyy");
}
public void HabilitarDesabilitar(bool status)
{
btnNovo.Enabled = !status;
btnAlterar.Enabled = !status;
btnExcluir.Enabled = !status;
btnSalvar.Enabled = status;
btnCancelar.Enabled = status;
btnSair.Enabled = !status;
txtData.Enabled = status;
txtNomeProjeto.Enabled = status;
cbxCategoria.Enabled = status;
dgvProjetos.Enabled = !status;
if (status)
{
txtNomeProjeto.Focus();
}
}
private void btnAlterar_Click(object sender, EventArgs e)
{
operacao = EOperacao.Alterar;
HabilitarDesabilitar(true);
}
private void btnExcluir_Click(object sender, EventArgs e)
{
operacao = EOperacao.Excluir;
if (MessageBox.Show("Deseja Excluir o Projeto, as contas de consumo e os cálculo associados ?", "Exclusão", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
ProjetosDOM projetosDOM = new ProjetosDOM();
projetosDOM.CodProjeto = codigoProjeto;
ProjetosCTL projetosCTL = new ProjetosCTL();
projetosCTL.ManterProjetos(operacao, projetosDOM);
}
CarregarProjetos();
operacao = EOperacao.Inicial;
}
private void btnSalvar_Click(object sender, EventArgs e)
{
try
{
if (txtNomeProjeto.Text.Equals(string.Empty))
{
MessageBox.Show("Favor informar o nome do projeto");
return;
}
ProjetosDOM projetosDOM = new ProjetosDOM();
projetosDOM.CodProjeto = codigoProjeto;
projetosDOM.DataProjeto = Conversor.ConverterParaDateTime(txtData.Text);
projetosDOM.NomeProjeto = txtNomeProjeto.Text;
projetosDOM.Categoria = Conversor.ConverterParaInteiro(cbxCategoria.SelectedValue.ToString());
ProjetosCTL projetosCTL = new ProjetosCTL();
projetosCTL.ManterProjetos(operacao, projetosDOM);
CarregarProjetos();
HabilitarDesabilitar(false);
}
catch (Exception ex)
{
MessageBox.Show("Erro ao salvar os dados." + ex.Message.ToString());
}
}
private void btnCancelar_Click(object sender, EventArgs e)
{
operacao = EOperacao.Inicial;
CarregarProjetos();
HabilitarDesabilitar(false);
}
public void PosicionarRegistro()
{
if (dgvProjetos.Rows.Count > 0)
{
if (dgvProjetos.CurrentRow.Cells[0].Value != null)
codigoProjeto = Convert.ToInt32(dgvProjetos.CurrentRow.Cells[0].Value.ToString());
txtData.DataBindings.Clear();
txtData.DataBindings.Add("Text", bsource, "DataProjeto", true );
txtNomeProjeto.DataBindings.Clear();
txtNomeProjeto.DataBindings.Add("Text", bsource, "NomeProjeto");
cbxCategoria.DataBindings.Clear();
cbxCategoria.DataBindings.Add("SelectedValue", bsource, "Categoria");
bsource.Position = dgvProjetos.CurrentRow.Index;
this.BindingContext[dsDados.Tables["projetos"]].Position = dgvProjetos.CurrentRow.Index;
}
else
LimparCampos.Limpar(this);
}
private void dgvTipoTelhado_KeyDown(object sender, KeyEventArgs e)
{
PosicionarRegistro();
}
private void dgvTipoTelhado_MouseDown(object sender, MouseEventArgs e)
{
PosicionarRegistro();
}
private void dgvTipoTelhado_SelectionChanged(object sender, EventArgs e)
{
PosicionarRegistro();
}
private void FrmManterProjetos_Load(object sender, EventArgs e)
{
HabilitarDesabilitar(false);
CarregarProjetos();
}
}
}