Best detection on the name validation

This commit is contained in:
Mylloon 2021-11-28 12:03:15 +01:00
parent 0d752f0c9b
commit 7288e2e0dc

View file

@ -340,7 +340,13 @@ class GesMag:
ok = False
# Pas de coloration orange si le type est mauvais parce que on ne peut pas changé la couleur de fond d'une ComboBox
# vérification pour le nom
if Stock().elementStockExistant(nom.get()) == True:
def ___nomValide(nom: str) -> bool:
if len(nom) <= 0:
return False
if Stock().stockExistant(nom) == True:
return False
return True
if ___nomValide(nom.get()) == False:
ok = False
mauvaisChamps.append(nom)
# vérification pour la quantité