Best detection on the name validation
This commit is contained in:
parent
0d752f0c9b
commit
7288e2e0dc
1 changed files with 7 additions and 1 deletions
8
main.py
8
main.py
|
@ -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é
|
||||
|
|
Reference in a new issue