Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -128,9 +128,9 @@ def gestion_ordres():
|
||||
|
||||
# Prix Net unitaire
|
||||
if sens_ordre == "vente":
|
||||
prix_net = prix_brut - frais_total
|
||||
prix_net = prix_brut - (prix_brut * frais_total / 100)
|
||||
else:
|
||||
prix_net = prix_brut + frais_total
|
||||
prix_net = prix_brut + (prix_brut * frais_total / 100)
|
||||
|
||||
# Engagements ligne
|
||||
eng_brut = quantite * prix_brut
|
||||
|
||||
Reference in New Issue
Block a user