Các nội dung cơ bản của trang thanh toán thành công
Trang thanh toán thành công là trang thông báo tới người dùng bao gồm những thông tin như: Mã đơn hàng, Thông tin giao hàng, Phương thức thanh toán, Chi tiết về đơn hàng, Số tiền của đơn hàng đã thanh toán thành công.
Copy {% extends layout_layout %}
{% block meta %}
{{ headTitle('Thanh toán thành công').setSeparator(' - ').setAutoEscape(false)|raw }}
<meta name="keywords" content="Thanh toán thành công">
<meta name="description" content="Thanh toán thành công">
<link rel="canonical" href="{{ getCurrentUrl(true) }}" />
<meta property="og:url" content="{{ getCurrentUrl(true) }}">
<meta property="og:image" content="https://dummyimage.com/300x200/000/fff">
<meta property="og:type" content="website">
<meta property="og:title" content="Thanh toán thành công">
{% endblock %}
Copy {{ order.customerEmail }}
Copy {{ order.customerAddress }}
Copy {{ order.Option('cityName') }}
Copy {{ orderPayment(order.paymentMethod) }}
Copy {% if (order.products) %}
{% for p in order.products %}
{% set discount = p.priceAfterDiscount(p.quantity) %}
<tr class="cpl-item">
<td class="prd-thumb">
<div class="prd-thumbnail">
<img src="{{ p.product.thumbnailUri }}" alt="{{ p.product.name }}">
<span class="prd-quantity">{{ p.quantity }}</span>
</div>
</td>
<td class="prd-des">
<p class="prd-name">{{ p.product.name }}</p>
</td>
<td class="prd-price">
{{ p.product.price | number_format(0) }}đ
</td>
</tr>
{% endfor %}
{% endif %}
Copy {{ order.customerShipFee | number_format(0) }}
Copy {{ order.calculateTotalMoney | number_format(0) }}