wickes-css2 2.109.0-develop.4 → 2.109.0-develop.5

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.
@@ -91,20 +91,20 @@
91
91
  <div class="order-item__price">
92
92
  <div class="order-item__price-title">Item price:</div>
93
93
  <div class="order-item__price-value">
94
- {{#ifvalue displayBasePrice value='0'}}
94
+ {{#ifvalue price value='0'}}
95
95
  <span class="order-item__value">FREE</span>
96
96
  {{else}}
97
97
  {{#if switch-vat}}
98
98
  <div class="including-vat">
99
- <span class="order-item__value">£{{displayBasePrice}}</span>
99
+ <span class="order-item__value">£{{price}}</span>
100
100
  <div class="price-vat">Inc.VAT</div>
101
101
  </div>
102
102
  <div class="excluding-vat d-none">
103
- <span class="order-item__value">£{{displayBasePriceExclusiveVat}}</span>
103
+ <span class="order-item__value">£{{priceExcVat}}</span>
104
104
  <div class="price-vat">Exc.VAT</div>
105
105
  </div>
106
106
  {{else}}
107
- <span class="order-item__value">£{{displayBasePrice}}</span>
107
+ <span class="order-item__value">£{{price}}</span>
108
108
  {{/if}}
109
109
  {{/ifvalue}}
110
110
  </div>
@@ -136,15 +136,15 @@
136
136
  {{else}}
137
137
  {{#if switch-vat}}
138
138
  <div class="including-vat">
139
- <span class="order-item__value">£{{displayItemTotalWithoutDiscount}}</span>
139
+ <span class="order-item__value">£{{total}}</span>
140
140
  <div class="price-vat">Inc.VAT</div>
141
141
  </div>
142
142
  <div class="excluding-vat d-none">
143
- <span class="order-item__value">£{{displayItemTotalWithoutDiscountExclusiveVat}}</span>
143
+ <span class="order-item__value">£{{totalExcVat}}</span>
144
144
  <div class="price-vat">Exc.VAT</div>
145
145
  </div>
146
146
  {{else}}
147
- <span class="order-item__value">£{{displayItemTotalWithoutDiscount}}</span>
147
+ <span class="order-item__value">£{{total}}</span>
148
148
  {{/if}}
149
149
  {{/ifvalue}}
150
150
  </div>
@@ -2,16 +2,16 @@
2
2
  <div class="p-promotion__icon">
3
3
  <i class="icon fas fa-gift"></i>
4
4
  </div>
5
- {{#ifCond switch-vat '&&' displayDescriptionExclusiveVat}}
5
+ {{#ifCond switch-vat '&&' descriptionExcVat}}
6
6
  <div class="p-promotion__description including-vat">
7
- {{displayDescription}}
7
+ {{description}}
8
8
  </div>
9
9
  <div class="p-promotion__description excluding-vat d-none">
10
- {{displayDescriptionExclusiveVat}}
10
+ {{descriptionExcVat}}
11
11
  </div>
12
12
  {{else}}
13
13
  <div class="p-promotion__description">
14
- {{displayDescription}}
14
+ {{description}}
15
15
  </div>
16
16
  {{/ifCond}}
17
17
  <div class="p-promotion__close">
@@ -9,15 +9,11 @@
9
9
  "potentialOrderPromotions": [
10
10
  {
11
11
  "description": "Spend over £200 on Bathroom Lighting and save £10.0",
12
- "descriptionExcVat": "Spend over £150 on Bathroom Lighting and save £10.0",
13
- "displayDescription": "Spend over £200 on Bathroom Lighting and save £10.0",
14
- "displayDescriptionExclusiveVat": "Spend over £150 on Bathroom Lighting and save £10.0"
12
+ "descriptionExcVat": "Spend over £150 on Bathroom Lighting and save £10.0"
15
13
  },
16
14
  {
17
15
  "description": "Spend over 2500 pound and get £2500 discount",
18
- "descriptionExcVat": "Spend over 2000 pound and get £2000 discount",
19
- "displayDescription": "Spend over 2500 pound and get £2500 discount",
20
- "displayDescriptionExclusiveVat": "Spend over 2000 pound and get £2000 discount"
16
+ "descriptionExcVat": "Spend over 2000 pound and get £2000 discount"
21
17
  }
22
18
  ],
23
19
  "checkout": {
@@ -93,10 +89,6 @@
93
89
  "quantity": 2,
94
90
  "total": "32",
95
91
  "totalExcVat": "30",
96
- "displayBasePrice": "16",
97
- "displayBasePriceExclusiveVat": "15",
98
- "displayItemTotalWithoutDiscount": "32",
99
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
100
92
  "offers": [
101
93
  "Buy 2 for 3 — Add 1 to qualify",
102
94
  "Buy 2 for 3 — Add 1 to qualify"
@@ -356,10 +348,6 @@
356
348
  "quantity": 123,
357
349
  "total": "19776",
358
350
  "totalExcVat": "19000",
359
- "displayBasePrice": "16",
360
- "displayBasePriceExclusiveVat": "15",
361
- "displayItemTotalWithoutDiscount": "19776",
362
- "displayItemTotalWithoutDiscountExclusiveVat": "19000",
363
351
  "message": "Purchased 12 times since your last visit 1 day ago",
364
352
  "click-and-collect": {
365
353
  "otherStores": [
@@ -595,10 +583,6 @@
595
583
  "quantity": 2,
596
584
  "total": "32",
597
585
  "totalExcVat": "30",
598
- "displayBasePrice": "16",
599
- "displayBasePriceExclusiveVat": "15",
600
- "displayItemTotalWithoutDiscount": "32",
601
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
602
586
  "click-and-collect": {
603
587
  "otherStores": [
604
588
  {
@@ -831,10 +815,6 @@
831
815
  "priceExcVat": "15",
832
816
  "total": "32",
833
817
  "totalExcVat": "30",
834
- "displayBasePrice": "16",
835
- "displayBasePriceExclusiveVat": "15",
836
- "displayItemTotalWithoutDiscount": "32",
837
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
838
818
  "quantity": 1,
839
819
  "totalMobile": "16",
840
820
  "click-and-collect": {
@@ -1076,10 +1056,6 @@
1076
1056
  "quantity": 2,
1077
1057
  "total": "32",
1078
1058
  "totalExcVat": "30",
1079
- "displayBasePrice": "16",
1080
- "displayBasePriceExclusiveVat": "15",
1081
- "displayItemTotalWithoutDiscount": "32",
1082
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
1083
1059
  "offers": [
1084
1060
  "Buy 2 for 3 — Add 1 to qualify",
1085
1061
  "Buy 2 for 3 — Add 1 to qualify"
@@ -1103,10 +1079,6 @@
1103
1079
  "quantity": 123,
1104
1080
  "total": "19776",
1105
1081
  "totalExcVat": "19000",
1106
- "displayBasePrice": "16",
1107
- "displayBasePriceExclusiveVat": "15",
1108
- "displayItemTotalWithoutDiscount": "19776",
1109
- "displayItemTotalWithoutDiscountExclusiveVat": "19000",
1110
1082
  "message": "Purchased 12 times since your last visit 1 day ago",
1111
1083
  "address": "Watford",
1112
1084
  "updateable": true
@@ -1122,10 +1094,6 @@
1122
1094
  "quantity": 2,
1123
1095
  "total": "32",
1124
1096
  "totalExcVat": "30",
1125
- "displayBasePrice": "16",
1126
- "displayBasePriceExclusiveVat": "15",
1127
- "displayItemTotalWithoutDiscount": "32",
1128
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
1129
1097
  "updateable": true
1130
1098
 
1131
1099
  },
@@ -1137,10 +1105,6 @@
1137
1105
  "priceExcVat": "15",
1138
1106
  "total": "32",
1139
1107
  "totalExcVat": "30",
1140
- "displayBasePrice": "16",
1141
- "displayBasePriceExclusiveVat": "15",
1142
- "displayItemTotalWithoutDiscount": "32",
1143
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
1144
1108
  "code": "1231210",
1145
1109
  "quantity": 1,
1146
1110
  "totalMobile": "16",
@@ -1154,10 +1118,6 @@
1154
1118
  "priceExcVat": "0",
1155
1119
  "total": "0",
1156
1120
  "totalExcVat": "0",
1157
- "displayBasePrice": "0",
1158
- "displayBasePriceExclusiveVat": "0",
1159
- "displayItemTotalWithoutDiscount": "0",
1160
- "displayItemTotalWithoutDiscountExclusiveVat": "0",
1161
1121
  "updateable": false,
1162
1122
  "code": "1231211",
1163
1123
  "quantity": 1,
@@ -1179,10 +1139,6 @@
1179
1139
  "quantity": 1,
1180
1140
  "total": "968",
1181
1141
  "totalExcVat": "960",
1182
- "displayBasePrice": "968",
1183
- "displayBasePriceExclusiveVat": "960",
1184
- "displayItemTotalWithoutDiscount": "968",
1185
- "displayItemTotalWithoutDiscountExclusiveVat": "960",
1186
1142
  "deliveryStock": true,
1187
1143
  "onlyDeliveryType": true
1188
1144
  }
@@ -8,14 +8,10 @@
8
8
  },
9
9
  "potentialOrderPromotions": [
10
10
  {
11
- "description": "Spend over £200 on Bathroom Lighting and save £10.0",
12
- "displayDescription": "Spend over £200 on Bathroom Lighting and save £10.0",
13
- "displayDescriptionExclusiveVat": "Spend over £150 on Bathroom Lighting and save £10.0"
11
+ "description": "Spend over £200 on Bathroom Lighting and save £10.0"
14
12
  },
15
13
  {
16
- "description": "Spend over 2500 pound and get £2500 discount",
17
- "displayDescription": "Spend over 2500 pound and get £2500 discount",
18
- "displayDescriptionExclusiveVat": "Spend over 2000 pound and get £2000 discount"
14
+ "description": "Spend over 2500 pound and get £2500 discount"
19
15
  }
20
16
  ],
21
17
  "checkout": {
@@ -84,10 +80,6 @@
84
80
  "price": "16",
85
81
  "quantity": 2,
86
82
  "total": "32",
87
- "displayBasePrice": "16",
88
- "displayBasePriceExclusiveVat": "15",
89
- "displayItemTotalWithoutDiscount": "32",
90
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
91
83
  "offers": [
92
84
  "Buy 2 for 3 — Add 1 to qualify",
93
85
  "Buy 2 for 3 — Add 1 to qualify"
@@ -347,10 +339,6 @@
347
339
  "price": "16",
348
340
  "quantity": 2,
349
341
  "total": "32",
350
- "displayBasePrice": "16",
351
- "displayBasePriceExclusiveVat": "15",
352
- "displayItemTotalWithoutDiscount": "32",
353
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
354
342
  "offers": [
355
343
  "Buy 2 for 3 — Add 1 to qualify",
356
344
  "Buy 2 for 3 — Add 1 to qualify"
@@ -616,10 +604,6 @@
616
604
  "price": "16",
617
605
  "quantity": 2,
618
606
  "total": "32",
619
- "displayBasePrice": "16",
620
- "displayBasePriceExclusiveVat": "15",
621
- "displayItemTotalWithoutDiscount": "32",
622
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
623
607
  "offers": [
624
608
  "Buy 2 for 3 — Add 1 to qualify",
625
609
  "Buy 2 for 3 — Add 1 to qualify"
@@ -644,10 +628,6 @@
644
628
  "price": "16",
645
629
  "quantity": 3,
646
630
  "total": "32",
647
- "displayBasePrice": "16",
648
- "displayBasePriceExclusiveVat": "15",
649
- "displayItemTotalWithoutDiscount": "32",
650
- "displayItemTotalWithoutDiscountExclusiveVat": "30",
651
631
  "energyEfficiencyInfo": {
652
632
  "ratingValue": "D",
653
633
  "oldRatingType": false,
@@ -661,10 +641,6 @@
661
641
  "image": "./img/tile-buying-guide.jpg",
662
642
  "title": "6 Wickes General Purpose Claw test",
663
643
  "price": "16",
664
- "displayBasePrice": "16",
665
- "displayBasePriceExclusiveVat": "15",
666
- "displayItemTotalWithoutDiscount": "16",
667
- "displayItemTotalWithoutDiscountExclusiveVat": "15",
668
644
  "code": "123143",
669
645
  "quantity": 1,
670
646
  "totalMobile": "16",