Compare commits
3 Commits
06ada48bd4
...
cde1c2bcdf
| Author | SHA1 | Date | |
|---|---|---|---|
| cde1c2bcdf | |||
| 4612853672 | |||
| b966f4a66c |
@@ -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
|
||||
|
||||
+1
-1
@@ -44,7 +44,7 @@ services:
|
||||
PMA_HOST: db
|
||||
ports:
|
||||
# Accès local uniquement (pas d'exposition publique)
|
||||
- "127.0.0.1:8080:80"
|
||||
- "8080:80"
|
||||
depends_on:
|
||||
- db
|
||||
restart: unless-stopped
|
||||
|
||||
Reference in New Issue
Block a user