Commit 280d3810 by Yvon Kerdoncuff

make status in purchase orders export match odoo status, including new lacagette workflow status

parent 369da024
Pipeline #4159 failed with stage
in 0 seconds
......@@ -427,7 +427,11 @@ class ExportOrders(View):
if order['state'] == "purchase":
state = "Commande fournisseur"
elif order['state'] == "done":
state = "Terminé"
state = "Bloqué"
elif order['state'] == 'lacagette_reception_done':
state = "A valider compta"
elif order['state'] == 'lacagette_compta_ok':
state = "Facture pointée"
else:
state = order['state']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment