Commit a94be03b authored by Romain Courteaud's avatar Romain Courteaud

No payment is expected if total price is 0

parent 4fa4531e
......@@ -70,6 +70,8 @@ else:\n
\n
if paid:\n
result = "Paid"\n
elif context.getTotalPrice() == 0:\n
result = "Free!"\n
else:\n
result = "Waiting for payment"\n
\n
......
338
\ No newline at end of file
339
\ No newline at end of file
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