-
Notifications
You must be signed in to change notification settings - Fork 1
/
frmInfoCliente.cs
297 lines (264 loc) · 9.63 KB
/
frmInfoCliente.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
using OrderPizza.DAO;
using OrderPizza.Model;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace OrderPizza
{
public partial class frmInfoCliente : Form
{
private ClienteDAO dao = new ClienteDAO();
private List<Cliente> clientes;
private ObservableCollection<Produto> carrinho;
private double valorTotal = 0;
int X = 0;
int Y = 0;
public frmInfoCliente(ObservableCollection<Produto> _carrinho)
{
InitializeComponent();
this.carrinho = _carrinho;
this.lbResultado.Hide();
lblTroco.Hide();
lblValorTroco.Hide();
this.txbDinheiro.LostFocus += TxbDinheiro_LostFocus;
this.txbCartao.LostFocus += TxbCartao_LostFocus;
foreach (var item in carrinho)
{
valorTotal += item.preco;
}
lblValor.Text = valorTotal.ToString("C2");
}
private void txbTelefone_TextChanged(object sender, EventArgs e)
{
var txt = txbTelefone.Text;
if (txt.Length == 9)
{
lbResultado.Items.Clear();
this.clientes = getClient(txt);
}
}
private List<Cliente> getClient(string number)
{
var cliente = this.dao.getCliente(number);
lbResultado.Show();
if (cliente.Count == 0)
{
lbResultado.Items.Add("Nenhum cliente encontrado com esse numero.");
lbResultado.Items.Add("");
lbResultado.Items.Add("Preencha o restante das informações do cliente para ser cadastrdo ao finalizar.");
}
else
{
cliente.ForEach(item =>
{
lbResultado.Items.Add(item.endereco + " - " + item.telefone + " - " + item.nome);
});
}
return cliente;
}
private void lbResultado_SelectedIndexChanged(object sender, EventArgs e)
{
var index = 0;
if (lbResultado.SelectedIndex < 0)
{
lbResultado.SelectedIndex = 0;
}
index = lbResultado.SelectedIndex;
txbEndereco.Text = this.clientes[index]?.endereco;
txbTelefone.Text = this.clientes[index]?.telefone;
txbNome.Text = this.clientes[index]?.nome;
}
private void frmInfoCliente_FormClosing(object sender, FormClosingEventArgs e)
{
Application.Exit();
}
private void btnFinalizar_Click(object sender, EventArgs e)
{
if (validaCampos())
{
if (this.clientes.Count == 0)
{
var newClient = new Cliente
{
telefone = txbTelefone.Text,
endereco = txbEndereco.Text,
nome = txbNome.Text
};
dao.insertCliente(newClient);
}
registraPedido();
subtrairEstoque();
MessageBox.Show("Pedido finalizado!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information);
new frmCardapio().Show();
this.Dispose();
}
}
private void subtrairEstoque()
{
var estoqueDAO = new EstoqueDAO();
var prods = carrinho.ToList();
estoqueDAO.SelectProdQtdIngredientes(prods);
}
private void registraPedido()
{
var pagamento = "";
if (!string.IsNullOrEmpty(txbDinheiro.Text))
{
pagamento += "dinheiro: " + txbDinheiro.Text;
}
if (!string.IsNullOrWhiteSpace(txbCartao.Text))
{
pagamento += "cartão: " + txbCartao.Text;
}
if (!string.IsNullOrWhiteSpace(txbCartao.Text) && !string.IsNullOrWhiteSpace(txbDinheiro.Text))
{
pagamento = "dinheiro: " + txbDinheiro.Text + ", cartão: " + txbCartao.Text;
}
var pedidoDAO = new PedidoDAO();
var pedido = new Pedido
{
formaPagamento = pagamento,
valor = valorTotal,
idFuncionario = Funcionario.id,
produtos = carrinho.ToList()
};
pedidoDAO.insertPedido(pedido, txbNome.Text);
// registra na tabela de relatorio dentro de PedidoDAO
// subtrair no estoque
}
private bool validaCampos()
{
if (string.IsNullOrEmpty(txbTelefone.Text))
{
MessageBox.Show("Campo *telefone obrigatório", "Erro!",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
txbTelefone.Focus();
return false;
}
if (txbTelefone.Text.Length > 11)
{
MessageBox.Show("Campo *telefone não pode ter mais que 11 digitos", "Erro!",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
txbTelefone.Focus();
return false;
}
if (string.IsNullOrEmpty(txbEndereco.Text))
{
MessageBox.Show("Campo *endereco obrigatório");
txbEndereco.Focus();
return false;
}
if (string.IsNullOrEmpty(txbDinheiro.Text) && string.IsNullOrEmpty(txbCartao.Text))
{
MessageBox.Show("Informe uma forma de pagamento");
txbDinheiro.Focus();
return false;
}
if ((Convert.ToDouble(txbDinheiro.Text) + Convert.ToDouble(txbCartao.Text)) < Convert.ToDouble(valorTotal.ToString("N2")))
{
MessageBox.Show("O valor informado nas formas de pagamento é inferiror ao valor total");
txbDinheiro.Focus();
return false;
}
return true;
}
private void btnMinimizar_Click(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
}
private void lbValorTotal_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void btnFechar_Click_1(object sender, EventArgs e)
{
Application.Exit();
}
private void txbDinheiro_MouseClick(object sender, MouseEventArgs e)
{
if (txbDinheiro.Text == "0")
{
txbDinheiro.Text = string.Empty;
}
}
private void TxbDinheiro_LostFocus(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(txbDinheiro.Text))
{
txbDinheiro.Text = "0";
}
if (Convert.ToDouble(txbDinheiro.Text) + Convert.ToDouble(txbCartao.Text) > valorTotal)
{
var troco = (Convert.ToDouble(txbDinheiro.Text) + Convert.ToDouble(txbCartao.Text)) - (Convert.ToDouble(valorTotal.ToString("N2")));
lblValorTroco.Text = troco.ToString("C2");
lblTroco.Show();
lblValorTroco.Show();
}
else
{
lblTroco.Hide();
lblValorTroco.Hide();
}
}
private void txbCartao_MouseClick(object sender, MouseEventArgs e)
{
if (txbCartao.Text == "0")
{
txbCartao.Text = string.Empty;
}
}
private void TxbCartao_LostFocus(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(txbCartao.Text))
{
txbCartao.Text = "0";
}
if (Convert.ToDouble(txbDinheiro.Text) + Convert.ToDouble(txbCartao.Text) > valorTotal)
{
var troco = (Convert.ToDouble(txbDinheiro.Text) + Convert.ToDouble(txbCartao.Text)) - (Convert.ToDouble(valorTotal.ToString("N2")));
lblValorTroco.Text = troco.ToString("C2");
lblTroco.Show();
lblValorTroco.Show();
}
else
{
lblTroco.Hide();
lblValorTroco.Hide();
}
}
private void txbTelefone_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && (e.KeyChar != ','))
{
e.Handled = true;
MessageBox.Show("Este campo só aceita números, por favor verifique oque esta sendo digitado", "Aviso"
, MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
if ((e.KeyChar == ',') && ((sender as TextBox).Text.IndexOf('.') > -1))
{
e.Handled = true;
MessageBox.Show("este campo aceita somente uma virgula");
}
}
private void frmInfoCliente_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button != MouseButtons.Left) return;
X = this.Left - MousePosition.X;
Y = this.Top - MousePosition.Y;
}
private void frmInfoCliente_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button != MouseButtons.Left) return;
this.Left = X + MousePosition.X;
this.Top = Y + MousePosition.Y;
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
new frmCardapio().Show();
}
}
}