cart billing integration
This commit is contained in:
@@ -1124,6 +1124,7 @@ td.product,
|
|||||||
> tr {
|
> tr {
|
||||||
> td {
|
> td {
|
||||||
&.price,
|
&.price,
|
||||||
|
&.unitprice,
|
||||||
&.qty,
|
&.qty,
|
||||||
&.subprice { padding: 35px 10px; }
|
&.subprice { padding: 35px 10px; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,6 +49,10 @@
|
|||||||
<span class="hidden-xs">Unit Price</span>
|
<span class="hidden-xs">Unit Price</span>
|
||||||
<span class="visible-xs">Price</span>
|
<span class="visible-xs">Price</span>
|
||||||
</th>
|
</th>
|
||||||
|
<th class="qty">
|
||||||
|
<span class="hidden-xs">Quantity</span>
|
||||||
|
<span class="visible-xs">Quantity</span>
|
||||||
|
</th>
|
||||||
<th class="subprice">
|
<th class="subprice">
|
||||||
<span class="hidden-xs">Total <abbr title="Tax Inclusive">TTC</abbr></span>
|
<span class="hidden-xs">Total <abbr title="Tax Inclusive">TTC</abbr></span>
|
||||||
<span class="visible-xs">Total</span>
|
<span class="visible-xs">Total</span>
|
||||||
@@ -102,6 +106,9 @@
|
|||||||
<div class="special-price"><span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></div>
|
<div class="special-price"><span class="price">{currency attr="symbol"} {$TAXED_PRICE}</span></div>
|
||||||
{/if}
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
|
<td class="qty">
|
||||||
|
<span class="price">{$QUANTITY}</span>
|
||||||
|
</td>
|
||||||
<td class="subprice">
|
<td class="subprice">
|
||||||
<span class="price">{currency attr="symbol"} {$real_price * $QUANTITY}</span>
|
<span class="price">{currency attr="symbol"} {$real_price * $QUANTITY}</span>
|
||||||
</td>
|
</td>
|
||||||
@@ -112,7 +119,7 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr >
|
<tr >
|
||||||
<td rowspan="3" colspan="2" class="empty"> </td>
|
<td rowspan="3" colspan="3" class="empty"> </td>
|
||||||
<th class="shipping">Shipping Tax</th>
|
<th class="shipping">Shipping Tax</th>
|
||||||
<td class="shipping">
|
<td class="shipping">
|
||||||
<div class="shipping-price">
|
<div class="shipping-price">
|
||||||
@@ -135,7 +142,7 @@
|
|||||||
<th class="total">Total <abbr title="Tax Inclusive">TTC</abbr></th>
|
<th class="total">Total <abbr title="Tax Inclusive">TTC</abbr></th>
|
||||||
<td class="total">
|
<td class="total">
|
||||||
<div class="total-price">
|
<div class="total-price">
|
||||||
<span class="price">$200.00</span>
|
<span class="price">{currency attr="symbol"} {cart attr="total_taxed_price"}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user