forked from adan-sanchez-luis/ejemplo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AgregarObra.java
388 lines (325 loc) · 15.4 KB
/
AgregarObra.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
import java.awt.*;
import javax.swing.*;
import java.awt.Image;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import javax.swing.border.Border;
import com.toedter.calendar.JCalendar;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.SimpleDateFormat;
import java.util.Date;
public class AgregarObra extends JFrame {
AgregarObra() {
setSize(1366, 768);
setTitle("Agregar obras");
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setVisible(true);
JPanel DatosObras = new JPanel();
DatosObras.setLayout(null);
DatosObras.setSize(1366, 384);
DatosObras.setBackground(new Color(0, 0, 0, 0));
JLabel anuncio = new JLabel("Agregar datos de la obra:");
anuncio.setForeground(Color.white);
Font fuente = new Font("Arial", Font.BOLD, 16);
anuncio.setFont(fuente);
anuncio.setBounds(550, 0, 300, 70);
DatosObras.add(anuncio);
JLabel empresa = new JLabel("Nombre de la empresa:");
empresa.setForeground(Color.white);
Font fuenteEmpresa = new Font("Arial", Font.BOLD, 14);
empresa.setFont(fuenteEmpresa);
empresa.setBounds(0, 0, 300, 150);
DatosObras.add(empresa);
JTextField empresatxt = new JTextField("");
empresatxt.setForeground(Color.black);
empresatxt.setBorder(null);
empresatxt.setBounds(170, 63, 200, 30);
DatosObras.add(empresatxt);
////////////
JLabel nombreResponsable = new JLabel("Nombre del responsable de la obra:");
nombreResponsable.setForeground(Color.black);
Font fuenteResponsable = new Font("Arial", Font.BOLD, 14);
nombreResponsable.setFont(fuenteResponsable);
nombreResponsable.setBounds(0, 0, 280, 230);
DatosObras.add(nombreResponsable);
JLabel nombresResponsable = new JLabel("Nombres:");
nombresResponsable.setForeground(Color.white);
Font fuenteResponsables = new Font("Arial", Font.BOLD, 14);
nombresResponsable.setFont(fuenteResponsables);
nombresResponsable.setBounds(0, 30, 280, 230);
DatosObras.add(nombresResponsable);
JTextField NombreResponsabletxt = new JTextField("");
NombreResponsabletxt.setForeground(Color.black);
NombreResponsabletxt.setBounds(69, 135, 120, 30);
NombreResponsabletxt.setBorder(null);
DatosObras.add(NombreResponsabletxt);
JLabel ApellidoResponsablePaterno = new JLabel("Apellido paterno:");
ApellidoResponsablePaterno.setForeground(Color.white);
Font fuenteResponsablesP = new Font("Arial", Font.BOLD, 14);
ApellidoResponsablePaterno.setFont(fuenteResponsablesP);
ApellidoResponsablePaterno.setBounds(200, 30, 350, 230);
DatosObras.add(ApellidoResponsablePaterno);
JTextField ApellidoResponsablePaternotxt = new JTextField("");
ApellidoResponsablePaternotxt.setForeground(Color.black);
ApellidoResponsablePaternotxt.setBounds(322, 135, 120, 30);
ApellidoResponsablePaternotxt.setBorder(null);
DatosObras.add(ApellidoResponsablePaternotxt);
JLabel ApellidoResponsableMaterno = new JLabel("Apellido materno:");
ApellidoResponsableMaterno.setForeground(Color.white);
Font fuenteResponsablesMaterno = new Font("Arial", Font.BOLD, 14);
ApellidoResponsableMaterno.setFont(fuenteResponsables);
ApellidoResponsableMaterno.setBounds(0, 70, 280, 230);
DatosObras.add(ApellidoResponsableMaterno);
JTextField ApellidoResponsableMaternotxt = new JTextField("");
ApellidoResponsableMaternotxt.setForeground(Color.black);
ApellidoResponsableMaternotxt.setBounds(128, 175, 120, 30);
ApellidoResponsableMaternotxt.setBorder(null);
DatosObras.add(ApellidoResponsableMaternotxt);
//////////////////////////
JLabel Telefono = new JLabel("Télefono del responsable:");
Telefono.setForeground(Color.white);
Font fuenteTelefono = new Font("Arial", Font.BOLD, 14);
Telefono.setFont(fuenteTelefono);
Telefono.setBounds(510, 0, 300, 150);
DatosObras.add(Telefono);
JTextField Telefonotxt = new JTextField("");
Telefonotxt.setForeground(Color.black);
Telefonotxt.setBounds(700, 62, 110, 30);
Telefonotxt.setBorder(null);
DatosObras.add(Telefonotxt);
JLabel Correo = new JLabel("Correo electrónico del responsable:");
Correo.setForeground(Color.white);
Font fuenteCorreo = new Font("Arial", Font.BOLD, 14);
Correo.setFont(fuenteCorreo);
Correo.setBounds(840, 0, 300, 150);
DatosObras.add(Correo);
JTextField Correotxt = new JTextField("");
Correotxt.setForeground(Color.black);
Correotxt.setBounds(1100, 62, 210, 30);
Correotxt.setBorder(null);
DatosObras.add(Correotxt);
JLabel Monto = new JLabel("Monto de la obra: $");
Monto.setForeground(Color.white);
Font fuenteMonto = new Font("Arial", Font.BOLD, 14);
Monto.setFont(fuenteMonto);
Monto.setBounds(512, 40, 300, 150);
DatosObras.add(Monto);
JTextField Montotxt = new JTextField("");
Montotxt.setForeground(Color.black);
Montotxt.setBounds(650, 100, 70, 30);
Montotxt.setBorder(null);
DatosObras.add(Montotxt);
JLabel FechaInicio = new JLabel("Fecha de inicio de la obra:");
FechaInicio.setForeground(Color.white);
Font fuenteFechaI = new Font("Arial", Font.BOLD, 14);
FechaInicio.setFont(fuenteFechaI);
FechaInicio.setBounds(0, 70, 300, 300);
DatosObras.add(FechaInicio);
JCalendar FechaI = new JCalendar();
FechaI.setForeground(Color.black);
FechaI.setBorder(null);
FechaI.setBounds(0, 230, 200, 170);
DatosObras.add(FechaI);
JLabel FechaFinal = new JLabel("Fecha final de la obra:");
FechaFinal.setForeground(Color.white);
Font fuenteFechaF = new Font("Arial", Font.BOLD, 14);
FechaFinal.setFont(fuenteFechaF);
FechaFinal.setBounds(250, 70, 300, 300);
DatosObras.add(FechaFinal);
JCalendar FechaF = new JCalendar();
FechaF.setForeground(Color.black);
FechaF.setBorder(null);
FechaF.setBounds(250, 230, 200, 170);
DatosObras.add(FechaF);
JLabel Domicilio = new JLabel("Datos del domicilio de la obra:");
Domicilio.setForeground(Color.BLACK);
Font fuenteDomicilio = new Font("Arial", Font.BOLD, 14);
Domicilio.setFont(fuenteDomicilio);
Domicilio.setBounds(514, 5, 300, 300);
DatosObras.add(Domicilio);
JLabel Calle = new JLabel("Calle:");
Calle.setForeground(Color.white);
Font fontCalle = new Font("Arial", Font.BOLD, 14);
Calle.setFont(fontCalle);
Calle.setBounds(514, 65, 300, 300);
DatosObras.add(Calle);
JTextField Calletxt = new JTextField("");
Calletxt.setForeground(Color.black);
Calletxt.setBounds(560, 200, 170, 30);
Calletxt.setBorder(null);
DatosObras.add(Calletxt);
JLabel Numero = new JLabel("Número:");
Numero.setForeground(Color.white);
Font fontNumero = new Font("Arial", Font.BOLD, 14);
Numero.setFont(fontNumero);
Numero.setBounds(790, 65, 300, 300);
DatosObras.add(Numero);
JTextField Numtxt = new JTextField("");
Numtxt.setForeground(Color.black);
Numtxt.setBounds(855, 200, 40, 30);
Numtxt.setBorder(null);
DatosObras.add(Numtxt);
JLabel colonia = new JLabel("Colonia:");
colonia.setForeground(Color.white);
Font fontColonia = new Font("Arial", Font.BOLD, 14);
colonia.setFont(fontColonia);
colonia.setBounds(980, 65, 300, 300);
DatosObras.add(colonia);
JTextField Coltxt = new JTextField();
Coltxt.setForeground(Color.black);
Coltxt.setBounds(1040, 200, 200, 30);
Coltxt.setBorder(null);
DatosObras.add(Coltxt);
JLabel Municipio = new JLabel("Municipio:");
Municipio.setForeground(Color.white);
Font fontMunicipio = new Font("Arial", Font.BOLD, 14);
Municipio.setFont(fontMunicipio);
Municipio.setBounds(514, 150, 100, 300);
DatosObras.add(Municipio);
//JComboBox Municipiotxt = new JComboBox();
JTextField Municipiotxt = new JTextField();
Municipiotxt.setForeground(Color.black);
Municipiotxt.setBounds(590, 287, 170, 30);
Municipiotxt.setBorder(null);
DatosObras.add(Municipiotxt);
JLabel Estado = new JLabel("Estado:");
Estado.setForeground(Color.white);
Font fontEstado = new Font("Arial", Font.BOLD, 14);
Estado.setFont(fontEstado);
Estado.setBounds(790, 150, 100, 300);
DatosObras.add(Estado);
JTextField Estadotxt = new JTextField();
Estadotxt.setForeground(Color.black);
Estadotxt.setBounds(850, 287, 170, 30);
Estadotxt.setBorder(null);
DatosObras.add(Estadotxt);
///Agregado
JLabel NombreObra = new JLabel("Nombre de la obra:");
NombreObra.setForeground(Color.white);
Font fontNObra = new Font("Arial", Font.BOLD, 14);
NombreObra.setFont(fontNObra);
NombreObra.setBounds(1030, 150, 300, 300);
DatosObras.add(NombreObra);
JTextField NombreObrartxt = new JTextField();
NombreObrartxt.setForeground(Color.black);
NombreObrartxt.setBounds(1170, 288, 150, 30);
NombreObrartxt.setBorder(null);
DatosObras.add(NombreObrartxt);
//////////////////////// Termina panel uno empieza panel 2: Datos Maquinaria
JPanel DatosMaquinaria = new JPanel();
DatosMaquinaria.setLayout(null);
DatosMaquinaria.setSize(1366, 384);
DatosMaquinaria.setBounds(0, 384, 1366, 384);
DatosMaquinaria.setBackground(Color.black);
///En este panel se deben poner la imagenes
JPanel Imagen = new JPanel();
Imagen.setLayout(null);
Imagen.setBounds(983, 60, 303, 234);
Imagen.setBackground(Color.decode("#049cff"));
DatosMaquinaria.add(Imagen);
JLabel anuncioMaquinaria = new JLabel("Agregar datos de la maquinaria:");
anuncioMaquinaria.setForeground(Color.white);
Font fuenteMaquinaria = new Font("Arial", Font.BOLD, 16);
anuncioMaquinaria.setFont(fuenteMaquinaria);
anuncioMaquinaria.setBounds(550, 0, 300, 70);
DatosMaquinaria.add(anuncioMaquinaria);
JLabel TipoMaquinaria = new JLabel("Tipo de maquinaria:");
TipoMaquinaria.setForeground(Color.white);
Font fuenteMaquina = new Font("Arial", Font.BOLD, 14);
TipoMaquinaria.setFont(fuenteMaquina);
TipoMaquinaria.setBounds(0, 0, 300, 150);
DatosMaquinaria.add(TipoMaquinaria);
JComboBox TipoMC = new JComboBox();
TipoMC.setForeground(Color.black);
TipoMC.setBorder(null);
TipoMC.setBounds(139, 63, 200, 30);
DatosMaquinaria.add(TipoMC);
JLabel ModeloMaquinaria = new JLabel("Modelo de la maquinaria:");
ModeloMaquinaria.setForeground(Color.white);
Font fuenteModeloM = new Font("Arial", Font.BOLD, 14);
ModeloMaquinaria.setFont(fuenteModeloM);
ModeloMaquinaria.setBounds(410, 0, 300, 150);
DatosMaquinaria.add(ModeloMaquinaria);
JComboBox MaquinariaC = new JComboBox();
MaquinariaC.setForeground(Color.black);
MaquinariaC.setBounds(587, 62, 110, 30);
MaquinariaC.setBorder(null);
DatosMaquinaria.add(MaquinariaC);
JLabel CantidadMaquinas = new JLabel("Cantidad de máquinas para obra:");
CantidadMaquinas.setForeground(Color.white);
Font fuenteCantidadMaquinas = new Font("Arial", Font.BOLD, 14);
CantidadMaquinas.setFont(fuenteCantidadMaquinas);
CantidadMaquinas.setBounds(0, 130, 300, 150);
DatosMaquinaria.add(CantidadMaquinas);
JSpinner CantidadSpiner = new JSpinner();
CantidadSpiner.setForeground(Color.black);
CantidadSpiner.setBounds(240, 195, 50, 30);
CantidadSpiner.setBorder(null);
DatosMaquinaria.add(CantidadSpiner);
JButton AgregarInformación = new JButton("Guardar información");
AgregarInformación.setBackground(Color.black);
AgregarInformación.setBounds(550, 250, 200, 50);
AgregarInformación.setBorder(new ComponenteBotonRedondo(40));
AgregarInformación.setForeground(Color.decode("#049cff"));
DatosMaquinaria.add(AgregarInformación);
AgregarInformación.addActionListener(new ActionListener() {
SimpleDateFormat ff = new SimpleDateFormat("YYYY/MM/dd");
@Override
public void actionPerformed(ActionEvent ae) {
String empresa=empresatxt.getText();
String nombreCli=NombreResponsabletxt.getText();
String apellidoP=ApellidoResponsablePaternotxt.getText();
String apellidoM=ApellidoResponsableMaternotxt.getText();
int telefono=AgregarObra.esNum(Telefonotxt.getText());
String correo=Correotxt.getText();
double monto=AgregarObra.esDouble(Montotxt.getText());
String dateIni=ff.format(FechaI.getDate());
String dateFin=ff.format(FechaF.getDate());
System.out.println(dateIni);
System.out.println(dateFin);
String calle=Calletxt.getText();
int numero=AgregarObra.esNum(Numtxt.getText());
String colonia=Coltxt.getText();
String municipio=Municipiotxt.getText();
String estado=Estadotxt.getText();
String nombreObra=NombreObrartxt.getText();
String tipo=(String)TipoMC.getSelectedItem();
String modelo=(String) MaquinariaC.getSelectedItem();
int cantidad=(int)CantidadSpiner.getValue();
}
});
ImageIcon background_image = new ImageIcon("C:\\Users\\Adan Sanchez\\Documents\\NetBeansProjects\\Fun_Ing_Soft\\src\\neo4.jpg");
Image img = background_image.getImage();
Image temp_img = img.getScaledInstance(1366, 768, Image.SCALE_SMOOTH);
background_image = new ImageIcon(temp_img);
JLabel background = new JLabel("", background_image, JLabel.CENTER);
background.add(DatosObras);
background.add(DatosMaquinaria);
add(background);
setVisible(true);
}
private static int esNum(String cadena) {
try {
int a = Integer.parseInt(cadena);
return a;
} catch (Exception e) {
return 0;
}
}
private static double esDouble(String cadena) {
try {
double a=Double.parseDouble(cadena);
return a;
} catch (Exception e) {
return 0;
}
}
public static void main(String[] args) {
new AgregarObra();
}
}