Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ <h3>Billing Address</h3>
</table>

<p class="total">Total Amount: <span
th:text="${#numbers.formatDecimal(order.totalAmount, 1, 2) + ' ' + order.currency}">$99.99</span></p>
th:text="${#numbers.formatDecimal(order.totalPrice, 1, 2) + ' ' + order.currency}">$99.99</span></p>
</div>

<a th:href="${dashboardUrl}" class="action-button">View Order in Dashboard</a>
Expand Down
4 changes: 1 addition & 3 deletions src/main/resources/templates/order-confirmation-email.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ <h3>Billing Address</h3>
</table>

<p class="total">Total Amount: <span
th:text="${#numbers.formatDecimal(order.totalAmount, 1, 2) + ' ' + order.currency}">$99.99</span></p>
th:text="${#numbers.formatDecimal(order.totalPrice, 1, 2) + ' ' + order.currency}">$99.99</span></p>
</div>

<p th:if="${order.status == 'PENDING'}">
Expand All @@ -129,7 +129,5 @@ <h3>Billing Address</h3>
</p>

<p>If you have any questions about your order, please contact our customer service.</p>

<p>Best regards,<br/>Commercify Team</p>
</body>
</html>
Loading