-
Notifications
You must be signed in to change notification settings - Fork 0
/
Encomenda.java
158 lines (131 loc) · 5.04 KB
/
Encomenda.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
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.UUID;
public class Encomenda implements Serializable {
private String id;
private List<Artigo> artigos;
public static final double TSU = 0.25; //TAXA DE SATISFAÇÃO USADOS
public static final double TSN = 0.50; //TAXA DE SATISFACAO NOVOS
private double preco_final;
private String estado;
private LocalDateTime data;
//private double taxa_exp;
public Encomenda() {
this.id = UUID.randomUUID().toString();
this.artigos = new ArrayList<Artigo>();
this.preco_final = 0.0;
this.estado = "";
this.data = LocalDateTime.now();
}
public Encomenda(List<Artigo> a, double p,String e, LocalDateTime d) {
this.id = UUID.randomUUID().toString();
this.artigos = a;
this.preco_final = p;
this.estado = e;
this.data = d;
}
public Encomenda(Encomenda e) {
this.id = e.getId();
this.artigos = e.getArtigos();
this.preco_final=e.getPrecof();
this.estado=e.getEstado();
this.data=e.getData();
}
//SETS E GETS
public String getId() {return this.id;}
public void setId(String id) {this.id = id;}
public List<Artigo> getArtigos() {return this.artigos;}
public void setArtigos(List<Artigo> f) {this.artigos = f;}
public double getPrecof() {return this.preco_final;}
public void setPrecof(double p) {this.preco_final = p;}
public String getEstado() {return this.estado;}
public void setEstado(String e) {this.estado = e;}
public LocalDateTime getData() {return this.data;}
public void setData(LocalDateTime d) { this.data = d;}
//ADICIONA UM ARTIGO
public void addArtigo(Artigo p) {this.artigos.add(p.clone());}
//APAGA UM ARTIGO
public void deleteArtigo(Artigo p) {this.artigos.remove(p);}
//INDICA OS NUMEROS DE ARTIGOS NUMA ENCOMENDA
public int nrArtigos() {return this.artigos.size();}
//INDICA OS NUMEROS DE ARTIGOS PREMIUMS OU NAO
public int getNrArtigosPorCategoria(boolean categoria) {
int conta = 0;
for (Artigo artigo : this.artigos) {
if (artigo.getCategoria() == categoria) {
conta++;
}
}
return conta;
}
public double precoFINAL() {
double precoinic = calcularPrecoEnc();
double precoFINAL = 0.0;
for(Artigo a: getArtigos()){
precoFINAL = precoinic + a.getTransportadora().calculaprecoexp(getNrArtigosPorCategoria(false), false) + a.getTransportadora().calculaprecoexp(getNrArtigosPorCategoria(true), true);
}
setPrecof(precoFINAL);
return precoFINAL;
}
// Método para verificar se é possivel devolver uma encomenda
public boolean devolve() {
LocalDateTime now = LocalDateTime.now();
LocalDateTime twoDaysAgo = now.minusHours(48);
return data.isAfter(twoDaysAgo) && data.isBefore(now);
}
public double calcularPrecoEnc() {
double preco = 0.0;
int novos = 0;
int usados = 0;
for (Artigo artigo : this.artigos) {
preco += artigo.calculaPreco();
if (artigo.getDonos() == 1) novos++;
else usados++;
}
preco += novos*TSN + usados*TSU;
return preco;
}
// Método para verificar se é possivel devolver uma encomenda
public boolean devolve(DataUtilizador dataUtilizador) {
LocalDateTime now = dataUtilizador.now();
LocalDateTime twoDaysAgo = now.minusHours(48);
return data.isAfter(twoDaysAgo) && data.isBefore(now);
}
//CLONE ENCOMENDA
public Encomenda clone() {return new Encomenda(this);}
// Método para exibir informações da encomenda
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("ID: ").append(this.id)
.append("\nArtigos: ");
if (this.artigos != null) {
for (Artigo artigo : artigos) {
sb.append("\n").append(artigo);
}
sb.append("\nPreço Final: ").append(this.preco_final)
.append("\nEstado: ").append(this.estado)
.append("\nData: ").append(this.data);
}
else {
sb.append("\nNenhum artigo encontrado.").append("\nPreço Final: 0")
.append("\nEstado: Não definido");
}
return sb.toString();
}
@Override
public boolean equals(Object o)
{
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Encomenda encomenda = (Encomenda) o;
return Double.compare(encomenda.preco_final, preco_final) == 0 && Objects.equals(id, encomenda.id) && Objects.equals(artigos, encomenda.artigos) && Objects.equals(estado, encomenda.estado) && Objects.equals(data, encomenda.data);
}
@Override
public int hashCode()
{
return Objects.hash(id, artigos, preco_final, estado, data);
}
}