-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuiCadastroCliente.java
413 lines (300 loc) · 12.5 KB
/
GuiCadastroCliente.java
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package markup;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.*;
/**
*
* @author robssoares
*/
public class GuiCadastroCliente extends JFrame {
/**
*
*/
private static final long serialVersionUID = 1L;
JLabel jlIdCliente, jlCpf, jlNome, jlDtNascto, jlTelefone, jlNrCartao, jlDtDesbloqueioUra, jlIdMarkupEmpresas;
JButton btGravar, btAlterar, btExcluir, btNovo, btLocalizar, btCancelar, btSair;
JComboBox cbEmpresas;
static JTextField tfIdCliente, tfCpf, tfNome, tfDtNascto, tfTelefone, tfNrCartao, tfDtDesbloqueioUra, tfIdMarkupEmpresas; ;
private ClienteDAO clienteDAO;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd/MM/yyyy");
public GuiCadastroCliente(){
inicializarComponentes();
definirEventos();
}
public void inicializarComponentes(){
jlIdCliente = new JLabel("Codigo: ");
jlNome = new JLabel("Cliente: ");
jlCpf= new JLabel("Cpf: ");
jlDtNascto = new JLabel("DtNascto:");
jlTelefone = new JLabel("Telefone:");
jlNrCartao = new JLabel ("NrCartão:");
jlDtDesbloqueioUra = new JLabel("Data Desbloqueio Ura:");
jlIdMarkupEmpresas = new JLabel("ID Empresa:");
tfIdCliente = new JTextField(10);
tfNome = new JTextField(60);
tfCpf = new JTextField(15);
tfDtNascto = new JTextField(15);
tfTelefone = new JTextField(15);
tfNrCartao = new JTextField(15);
tfDtDesbloqueioUra = new JTextField(15);
tfIdMarkupEmpresas = new JTextField(5);
cbEmpresas = new JComboBox();
btGravar = new JButton();
btGravar.setText("Gravar");
btAlterar = new JButton();
btAlterar.setText("Alterar");
btExcluir = new JButton();
btExcluir.setText("Excluir");
btNovo = new JButton();
btNovo.setText("Novo");
btLocalizar = new JButton();
btLocalizar.setText("Localizar");
btCancelar = new JButton();
btCancelar.setText("Cancelar");
btSair = new JButton();
btSair.setText("Sair");
Container pane = getContentPane();
pane.setLayout(new BorderLayout(20,20)); // espaçamento entre as áreas
pane.add(getHeader(), BorderLayout.NORTH);
pane.add(getFields(), BorderLayout.CENTER);
pane.add(getButtonPanel(),BorderLayout.SOUTH ) ;
clienteDAO = new ClienteDAO();
if (!clienteDAO.bd.getConnection()) {
JOptionPane.showMessageDialog(null,"Falha na conexao, Sistema será fechado !");
System.exit(0);
}
}
protected JComponent getHeader() {
JLabel label = new JLabel("Cadastro de Clientes", JLabel.CENTER);
label.setFont(new Font("Courier", Font.BOLD, 24));
return label;
}
protected JComponent getButtonPanel() {
JPanel inner = new JPanel();
inner.setLayout(new GridLayout(1, 7, 5, 0));
inner.add(btNovo);
inner.add(btLocalizar);
inner.add(btGravar);
inner.add(btAlterar);
inner.add(btExcluir);
inner.add(btCancelar);
inner.add(btSair);
return inner;
}
protected JComponent getFields() {
JPanel inner = new JPanel();
inner.setLayout(new java.awt.GridBagLayout());
GridBagConstraints c = new GridBagConstraints();
// id + nome
c.insets = new Insets(4,4,4,4);
c.fill = GridBagConstraints.HORIZONTAL;
c.anchor = GridBagConstraints.CENTER;
c.gridwidth = 1;
inner.add((jlIdCliente),c);
c.weightx = 1;
c.gridwidth = 1;
c.weightx = 0.2;
inner.add((tfIdCliente),c);
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlNome),c);
c.weightx = 1;
c.gridwidth = GridBagConstraints.REMAINDER; // preenche o resto da linha
inner.add((tfNome),c);
// cpf + dtnascto + telefone
c.fill = GridBagConstraints.BOTH;
c.insets = new Insets(4,4,4,4);
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.NORTHWEST;
c.gridy = 1; // muda linha
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlCpf),c);
c.weightx = 1;
c.gridwidth = 1;
c.fill = GridBagConstraints.BOTH;
inner.add((tfCpf),c);
c.fill = GridBagConstraints.NONE;
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlDtNascto),c);
c.weightx = 1;
c.fill = GridBagConstraints.BOTH;
c.gridwidth = 1;//GridBagConstraints.REMAINDER;
inner.add((tfDtNascto),c);
c.fill = GridBagConstraints.NONE;
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlTelefone),c);
c.weightx = 1;
c.fill = GridBagConstraints.BOTH;
c.gridwidth = GridBagConstraints.REMAINDER;
inner.add((tfTelefone),c);
// idEmpresa + nrCartao + dtDesbloqueioURa
c.fill = GridBagConstraints.BOTH;
c.insets = new Insets(4,4,4,4);
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.NORTHWEST;
c.gridy = 2; // muda linha
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlIdMarkupEmpresas),c);
c.weightx = 1;
c.gridwidth = 1;
c.fill = GridBagConstraints.BOTH;
inner.add((tfIdMarkupEmpresas),c);
//combobox
//
c.fill = GridBagConstraints.NONE;
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlNrCartao),c);
c.weightx = 1;
c.fill = GridBagConstraints.BOTH;
c.gridwidth = 1;//GridBagConstraints.REMAINDER;
inner.add((tfNrCartao),c);
c.fill = GridBagConstraints.NONE;
c.weightx = 0;
c.gridwidth = 1;
inner.add((jlDtDesbloqueioUra),c);
c.weightx = 1;
c.fill = GridBagConstraints.BOTH;
c.gridwidth = GridBagConstraints.REMAINDER;
inner.add((tfDtDesbloqueioUra),c);
return inner;
}
public void setBotoes(boolean bNovo, boolean bLocalizar, boolean bGravar,
boolean bAlterar, boolean bExcluir, boolean bCancelar ) {
btNovo.setEnabled(bNovo);
btLocalizar.setEnabled(bLocalizar);
btGravar.setEnabled(bGravar);
btAlterar.setEnabled(bAlterar);
btExcluir.setEnabled(bExcluir);
btCancelar.setEnabled(bCancelar);
}
public void limpaCampos() {
tfIdCliente.setText("");
tfNome.setText("");
tfCpf.setText("");
tfDtNascto.setText("");
tfTelefone.setText("");
tfNrCartao.setText("");
tfDtDesbloqueioUra.setText("");
tfIdMarkupEmpresas.setText("");
setBotoes(true, true, false, false, false, false);
}
public void definirEventos(){
btSair.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
clienteDAO.bd.close();
System.exit(0);
}
});
btNovo.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
limpaCampos();
setBotoes(false, false, true, false, false, true);
}
});
btCancelar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
limpaCampos();
}
});
btGravar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
if (tfCpf.getText().equals("") || tfNome.getText().equals("") || tfNrCartao.getText().equals("")) {
JOptionPane.showMessageDialog(null, "Não pode haver campos em branco !");
tfIdCliente.requestFocus();
return;
}
clienteDAO.cliente.setCpf(tfCpf.getText());
clienteDAO.cliente.setNome(tfNome.getText());
Date dataUtil = null;
try {
dataUtil = simpleDateFormat.parse(tfDtNascto.getText()) ;
} catch (ParseException ex) {
ex.printStackTrace();
}
java.sql.Date dataSql = new java.sql.Date(dataUtil.getTime());
clienteDAO.cliente.setDtNascto(dataSql);
clienteDAO.cliente.setTelefone(tfTelefone.getText());
clienteDAO.cliente.setNrCartao(tfNrCartao.getText());
clienteDAO.cliente.setIdmarkup_empresas(Integer.parseInt( tfIdMarkupEmpresas.getText() ));
JOptionPane.showMessageDialog(null, clienteDAO.atualizar(ClienteDAO.INCLUSAO));
limpaCampos();
}
});
btAlterar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
clienteDAO.cliente.setIdmarkup_clientes(Integer.parseInt(tfIdCliente.getText() ));
clienteDAO.cliente.setCpf(tfCpf.getText());
clienteDAO.cliente.setNome(tfNome.getText());
clienteDAO.cliente.setTelefone(tfTelefone.getText());
clienteDAO.cliente.setNome(tfNrCartao.getText());
clienteDAO.cliente.setIdmarkup_empresas(Integer.parseInt(tfIdMarkupEmpresas.getText() ));
JOptionPane.showMessageDialog(null, clienteDAO.atualizar(ClienteDAO.ALTERACAO));
limpaCampos();
}
});
btExcluir.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
clienteDAO.cliente.setIdmarkup_clientes((Integer.parseInt(tfIdCliente.getText() )));
clienteDAO.localizar();
int n = JOptionPane.showConfirmDialog(null, clienteDAO.cliente.getNome(),
"Excluir o Cliente ? ", JOptionPane.YES_NO_OPTION);
if (n== JOptionPane.YES_NO_OPTION) {
JOptionPane.showMessageDialog(null, clienteDAO.atualizar(ClienteDAO.EXCLUSAO));
limpaCampos();
}
}
});
btLocalizar.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
atualizaCampos();
setBotoes(true, true, true, true, true, true);
}
});
}
public void atualizaCampos(){
clienteDAO.cliente.setIdmarkup_clientes(Integer.parseInt(tfIdCliente.getText()));
if (clienteDAO.localizar()) {
// tfIdCliente.setText(String.valueOf(clienteDAO.cliente.getIdmarkup_clientes()));
tfNome.setText(clienteDAO.cliente.getNome());
//Converter Data para String formatado em DD/MM/YYYY
//tfDtNascto.setText(clienteDAO.cliente.getDtNascto().toString());
//String dtTemp = simpleDateFormat.format(clienteDAO.cliente.getDtNascto());
//tfDtNascto.setText(dtTemp);
tfCpf.setText(clienteDAO.cliente.getCpf());
tfTelefone.setText(clienteDAO.cliente.getTelefone());
tfNrCartao.setText(clienteDAO.cliente.getNrCartao());
//Converter Data para String formatado em DD/MM/YYYY
//dtTemp = "";
//dtTemp = simpleDateFormat.format(clienteDAO.cliente.getDtDesbloqueioUra());
//tfDtDesbloqueioUra.setText(dtTemp);
tfIdMarkupEmpresas.setText(String.valueOf(clienteDAO.cliente.getIdmarkup_empresas()));
setBotoes(true, true, false, false, false, false);
}
else {
JOptionPane.showMessageDialog(null,"Cliente não encontrado!");
limpaCampos();
}
}
public static void main(String[] args) {
// TODO code application logic here
GuiCadastroCliente janela = new GuiCadastroCliente();
janela.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
janela.setVisible(true);
janela.setSize(800, 600);
janela.setLocation(75, 75);
}
}