@lancom/shared 0.0.392 → 0.0.394
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/assets/js/utils/gtm.js
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<h5 class="lc_h3 lc_uppercase lc_bold mt-10 mb-15">Billing Address</h5>
|
|
29
29
|
<address-form
|
|
30
30
|
:address="order.billingAddress"
|
|
31
|
-
:copy-from="
|
|
31
|
+
:copy-from="order.shippingAddress"
|
|
32
32
|
name-prefix="Delivery "
|
|
33
33
|
:without-additional-info="true" />
|
|
34
34
|
</div>
|
|
@@ -13,7 +13,12 @@
|
|
|
13
13
|
Order {{ orderData.code }}
|
|
14
14
|
</div>
|
|
15
15
|
<div class="OrderSuccess__card-info">
|
|
16
|
-
|
|
16
|
+
<span v-if="orderData.paymentMethod === 'deposit'">
|
|
17
|
+
Thanks for your order! Your order has been successfully received as a bank deposit order. You will receive an order confirmation email shortly with a <b>tax invoice and our bank details</b>. Please make payment for your order to be processed
|
|
18
|
+
</span>
|
|
19
|
+
<span v-else>
|
|
20
|
+
Thanks for your order! Your order has been successfully processed using <b>{{ orderData.googleCharge ? 'Google Pay' : orderData.paymentMethod }} {{ cardInfo ? `(${cardInfo})` : '' }}</b>. You will receive an order confirmation email shortly.
|
|
21
|
+
</span>
|
|
17
22
|
<b></b>
|
|
18
23
|
</div>
|
|
19
24
|
<div>
|