modif classe entreprise

This commit is contained in:
morgann.david 2024-09-12 09:41:17 +02:00
parent 935512aa7b
commit 8543fbf45b

View File

@ -44,7 +44,7 @@ public class Entreprise {
public Commande rechercherCommande(int noCom){
Commande uneCommande = null;
for(Commande laCommande : lesCommandes){
if(laCommande.noCom == noCom){
if(laCommande.getNoCom() == noCom){
uneCommande = laCommande;
break;
}