Update the order formatter to show the currency, hryvnia.
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-06-22 14:16:41 +03:00
parent 9bf2d8d41b
commit fa81921fad
+4 -4
View File
@@ -11,8 +11,8 @@ class OrderFormatter():
return f"Ваше замовлення має id: {id}.\n" \ return f"Ваше замовлення має id: {id}.\n" \
f"Вид доставки: {order_type}.\n" \ f"Вид доставки: {order_type}.\n" \
f"Доставка до: {order_address}.\n" \ f"Доставка до: {order_address}.\n" \
f"Ціна товарів: {item_price}.\n" \ f"Ціна товарів: {item_price} ₴.\n" \
f"Ціна пакування: {package_price}.\n" \ f"Ціна пакування: {package_price} ₴.\n" \
f"Ціна доставки: {delivery_price}.\n\n" \ f"Ціна доставки: {delivery_price} ₴.\n\n" \
f"Остаточна ціна: {full_price}." f"Остаточна ціна: {full_price} ₴."