feat: fix attrbute update

This commit is contained in:
Alice 2022-03-03 18:02:53 +01:00
parent 4ec36168a0
commit 917b67484c

View file

@ -128,19 +128,21 @@ class FilmInterface():
elif nomAttr == "durée":
self.filmCharge.__setattr__(nomAttr, f.input_duree())
elif nomAttr == "couleur":
self.filmCharge.__setattr__(nomAttr, f.input_color())
newValue = f.input_color()
elif nomAttr == "date":
self.filmCharge.__setattr__(nomAttr, f.input_date())
newValue = f.input_date()
else:
newValue = input(
"La valeur actuelle du champ %s est %s.\nVeuillez entrer la nouvelle valeur pour ce champ (et -1 si vous ne souhaitez finalement pas modifier le champ)\n" % (
nomAttr, self.filmCharge.__getattr__(nomAttr)))
if newValue != "-1":
iStill = self.filmCharge.__getattr__(nomAttr)
self.filmCharge.__setattr__(nomAttr, newValue)
if nomAttr == "idN":
iStill = self.filmCharge.__getattr__(nomAttr)
self.filmCharge.__setattr__(nomAttr, newValue)
self.filmCharge = f(iStill)
else:
self.filmCharge.__setattr__(nomAttr, newValue)
else:
print("\nVous n'avez finalement pas modifié cet attribut.")
else: