@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.
@@ -121,7 +121,7 @@ const gtm = {
121
121
  street: [addressLine1, addressLine2].filter(a => !!a).join(' '),
122
122
  city,
123
123
  region: state,
124
- postal_code: +postcode,
124
+ postal_code: `${+postcode}`,
125
125
  country: COUNTRIES_CODES[country] || country
126
126
  };
127
127
  }
@@ -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="needToPickupWithoutErrors ? null : order.shippingAddress"
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
- 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.
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>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.392",
3
+ "version": "0.0.394",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {