-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPedido.java
97 lines (75 loc) · 1.8 KB
/
Pedido.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
package tp;
public class Pedido {
private int id;
private Fecha fecha;
private int cantSolicitada;
private Envio envio;
private Enfermedad enfermedad;
private Pais paisDestino;
public Pedido (int id, int cantSolicitada, Enfermedad enfermedad, Pais paisDestino)
{
this.id = id;
this.fecha = Fecha.hoy();
//PARA PRUEBAS SE CREO LA SIGUIENTE LINEA PARA CREAR ENVIOS MAYORES A LOS ULTIMOS 3 ANIOS
//this.fecha = new Fecha(01,01,2016);
this.cantSolicitada = cantSolicitada;
this.enfermedad = enfermedad;
this.paisDestino = paisDestino;
}
public boolean sos(int valor)
{
return id == valor;
}
public void setCantSolicitada(int val)
{
cantSolicitada = val;
}
public int darID()
{
return this.id;
}
public boolean check3anios()
{
Fecha hoy = fecha.hoy();
int tresAnios = hoy.getAn() - 3;
return ( this.fecha.getAn() >= tresAnios );
}
public Pais getPaisDestino()
{
return paisDestino;
}
public void setPaisDestino(Pais p)
{
paisDestino = p;
System.out.println("Se actualizo el Pais de Destino. El nuevo es: "+ p.darNombre());
}
public int getCantSolicitada()
{
return cantSolicitada;
}
public void darFecha()
{
System.out.print(fecha.getDia()+"/"+fecha.getMes()+"/"+fecha.getAn());
}
public void agregarEnvio(Envio env)
{
envio = env;
}
public boolean tieneEnvio()
{
return envio!=null;
}
public CajaTipo getCajaTipo()
{
return this.enfermedad.getCajaTipo();
}
public void modificarEnfermedad(Enfermedad e)
{
this.enfermedad = e;
System.out.println("Se actualizo la Enfermedad del Pedido. La nueva Enfermedad es: "+e.darID()+" - " +e.darNombre());
}
public Enfermedad getEnfermedad()
{
return enfermedad;
}
}