wickes-css2 2.111.0-develop.2 → 2.111.0-why-not-add.2

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.
Files changed (177) hide show
  1. package/Readme.md +1 -1
  2. package/build/css/category-main.css +1 -1
  3. package/build/css/components/global-search.css +1 -1
  4. package/build/css/homepage-main.css +1 -1
  5. package/build/css/kitchen-plp-main.css +1 -1
  6. package/build/css/main.css +1 -1
  7. package/build/css/my-account-main-v2.css +1 -1
  8. package/build/css/my-account-main.css +1 -1
  9. package/build/css/pages/page_personal-details.css +1 -1
  10. package/build/css/pages/page_product-details-v2.css +1 -1
  11. package/build/css/pdp-main-before-combine.css +1 -1
  12. package/build/css/pdp-main-critical.css +1 -1
  13. package/build/css/pdp-main-non-critical.css +1 -1
  14. package/build/css/pdp-main.css +1 -1
  15. package/build/css/plp-main.css +1 -1
  16. package/build/css/store-locator-main.css +1 -1
  17. package/build/js/account-hub.min.js +1 -1
  18. package/build/js/basket.min.js +2 -2
  19. package/build/js/bloomreach-widget.min.js +1 -0
  20. package/build/js/bundle.min.js +1 -1
  21. package/build/js/checkout.min.js +2 -2
  22. package/build/js/emulation.min.js +3001 -280
  23. package/build/js/general.bundle.min.js +1 -1
  24. package/build/js/gift-cards.min.js +1 -1
  25. package/build/js/merged-checkout.min.js +2 -2
  26. package/build/js/mini-basket-slider.min.js +1 -1
  27. package/build/js/page/basket-v2.js +18 -11
  28. package/build/js/page/bloomreach-widget.js +1187 -0
  29. package/build/js/page/components/discounts.js +8 -15
  30. package/build/js/page/components/mini-basket-slider.js +24 -18
  31. package/build/js/page/components/voucher.js +2 -56
  32. package/build/js/page/utils/create-count-stepper.js +30 -9
  33. package/build/js/page/utils/create-loading-button.js +37 -0
  34. package/build/js/page/utils/create-toast.js +79 -0
  35. package/build/js/page/utils/custom-dropdown.js +80 -0
  36. package/build/js/pdp-count-stepper.min.js +1 -1
  37. package/build/js/pdp.bundle.min.js +1 -1
  38. package/build/js/plp.bundle.min.js +1 -1
  39. package/build/js/project-list.min.js +1 -1
  40. package/build/js/saving-shopping-list.min.js +1 -1
  41. package/package.json +1 -1
  42. package/src/components/base/button.hbs +23 -5
  43. package/src/components/bloomreach/complete-card-dropdown.hbs +47 -0
  44. package/src/components/bloomreach/complete-card-skeleton.hbs +19 -0
  45. package/src/components/bloomreach/complete-card.hbs +138 -0
  46. package/src/components/bloomreach/complete-divider.hbs +3 -0
  47. package/src/components/bloomreach/complete-summary-skeleton.hbs +12 -0
  48. package/src/components/bloomreach/complete-summary.hbs +43 -0
  49. package/src/components/bloomreach/complete-wrapper.hbs +1 -0
  50. package/src/components/bloomreach/complete-your-project.hbs +21 -0
  51. package/src/components/cart-voucher.hbs +4 -4
  52. package/src/components/gift-cards.hbs +1 -1
  53. package/src/components/mini-basket/mini-basket-order-item.hbs +4 -4
  54. package/src/components/wismo-payment.hbs +7 -50
  55. package/src/data/data_delivery-address-v2.json +6 -6
  56. package/src/data/data_discounts.json +6 -6
  57. package/src/data/data_shopping-cart-v2.json +11 -32
  58. package/src/data/data_shopping-cart-with-energy.json +12 -12
  59. package/src/data/data_wismo.json +1 -2
  60. package/src/elements/checkbox.hbs +8 -1
  61. package/src/js/components/general/cart-slider.js +19 -6
  62. package/src/js/components/general/switchVat.js +7 -9
  63. package/src/js/emulation/basket-data.js +1 -11
  64. package/src/js/emulation/bloomreach-widget-calculations.js +132 -0
  65. package/src/js/emulation/bloomreach-widget-loading.js +11 -0
  66. package/src/js/emulation/checkout-data.js +0 -3
  67. package/src/js/emulation/mini-basket-data.js +0 -68
  68. package/src/js/emulation/mock.js +3098 -1
  69. package/src/js/emulation/notify-me.js +1 -1
  70. package/src/js/page/basket-v2.js +18 -11
  71. package/src/js/page/bloomreach-widget.js +1187 -0
  72. package/src/js/page/components/discounts.js +8 -15
  73. package/src/js/page/components/mini-basket-slider.js +24 -18
  74. package/src/js/page/components/voucher.js +2 -56
  75. package/src/js/page/utils/create-count-stepper.js +30 -9
  76. package/src/js/page/utils/create-loading-button.js +37 -0
  77. package/src/js/page/utils/create-toast.js +79 -0
  78. package/src/js/page/utils/custom-dropdown.js +80 -0
  79. package/src/layouts/checkout.hbs +0 -1
  80. package/src/page_basket-energy-efficiency.html +0 -4
  81. package/src/page_checkout_confirmation-new-marketing-consent-error.html +0 -7
  82. package/src/page_checkout_confirmation-new-marketing-consent.html +0 -4
  83. package/src/page_checkout_delivery-address-v2.html +0 -4
  84. package/src/page_checkout_delivery-details-v2-asm.html +1 -7
  85. package/src/page_checkout_delivery-details-v2-calendar-message.html +0 -4
  86. package/src/page_checkout_delivery-details-v2-oos.html +0 -4
  87. package/src/page_checkout_delivery-details-v2-wisdom-not-available.html +0 -4
  88. package/src/page_checkout_delivery-details-v2-wisdom.html +0 -4
  89. package/src/page_checkout_delivery-details-with-loader-v2.html +0 -4
  90. package/src/page_checkout_delivery-details_guest-new.html +0 -4
  91. package/src/page_checkout_delivery_address-asm-new.html +0 -4
  92. package/src/page_checkout_merge-basket-v2.html +3 -6
  93. package/src/page_checkout_merge-basket-vat-v2.html +1 -6
  94. package/src/page_checkout_merge-basket-with-energy.html +0 -4
  95. package/src/page_checkout_next-day-delivery-details.html +0 -4
  96. package/src/page_checkout_payment-details-v2-asm.html +0 -4
  97. package/src/page_checkout_payment-details-v2.html +0 -4
  98. package/src/page_checkout_payment-details_guest-click-collect-icon.html +0 -4
  99. package/src/page_checkout_payment-details_guest-with-checkout-journey.html +0 -7
  100. package/src/page_checkout_payment-details_login-with-checkout-journey.html +0 -7
  101. package/src/page_checkout_payment-details_with-card-loader.html +0 -4
  102. package/src/page_checkout_payment-details_with-loader-v2.html +0 -4
  103. package/src/page_checkout_rapid-delivery-details.html +0 -4
  104. package/src/page_empty-basket-instore.html +0 -4
  105. package/src/page_homepage-with-global-search-v2-vat.html +0 -1
  106. package/src/page_instore_progress_bar.html +0 -4
  107. package/src/page_product-details-banner.html +0 -1
  108. package/src/page_product-details-big-wins-disabled-delivery.html +0 -1
  109. package/src/page_product-details-big-wins-non-registered.html +0 -1
  110. package/src/page_product-details-big-wins-out-nearest.html +0 -1
  111. package/src/page_product-details-big-wins-unhappy.html +0 -1
  112. package/src/page_product-details-big-wins.html +0 -1
  113. package/src/page_product-details-billie.html +0 -1
  114. package/src/page_product-details-bloomreach.html +130 -0
  115. package/src/page_product-details-calculator.html +0 -1
  116. package/src/page_product-details-cashback-v2.html +0 -1
  117. package/src/page_product-details-clearpay.html +0 -1
  118. package/src/page_product-details-cnc-error-notification.html +0 -1
  119. package/src/page_product-details-cnc-success-notification-vat.html +0 -1
  120. package/src/page_product-details-cnc-success-notification.html +0 -1
  121. package/src/page_product-details-default-store.html +0 -1
  122. package/src/page_product-details-energy-efficiency.html +0 -1
  123. package/src/page_product-details-flooring-with-pr-placeholder.html +0 -1
  124. package/src/page_product-details-flooring.html +0 -1
  125. package/src/page_product-details-gallery-actual.html +0 -1
  126. package/src/page_product-details-mfe-calculator.html +0 -1
  127. package/src/page_product-details-minimum-v2.html +0 -1
  128. package/src/page_product-details-mtm-doors.html +0 -1
  129. package/src/page_product-details-only-clearpay.html +0 -1
  130. package/src/page_product-details-paint-mixing.html +0 -1
  131. package/src/page_product-details-saved-pl.html +0 -1
  132. package/src/page_product-details-tile-steps-klarna-widget-with-method-ids.html +0 -1
  133. package/src/page_product-details-tile-steps-logout.html +0 -1
  134. package/src/page_product-details-tile-steps-no-new-project-list.html +0 -1
  135. package/src/page_product-details-tile-steps-with-klarna.html +0 -1
  136. package/src/page_product-details-tile-steps.html +0 -1
  137. package/src/page_product-details-v2.html +0 -1
  138. package/src/page_product-details-vat.html +0 -1
  139. package/src/page_product-details-wisdom-mcfc-registered.html +0 -1
  140. package/src/page_product-details-wisdom-mcfc.html +0 -1
  141. package/src/page_product-details-wisdom-oos-registered.html +0 -1
  142. package/src/page_product-details-wisdom-oos.html +0 -1
  143. package/src/page_product-details-wisdom-registered.html +0 -1
  144. package/src/page_product-details-wisdom.html +0 -1
  145. package/src/page_product-details-with-favourite.html +0 -1
  146. package/src/page_product-details-with-global-search-v2.html +7 -2
  147. package/src/page_product-details_no-previous-default.html +0 -1
  148. package/src/page_shopping-cart-registered-v2.html +0 -4
  149. package/src/page_shopping-cart-v2-vat.html +0 -6
  150. package/src/page_shopping-cart-v2.html +2 -5
  151. package/src/page_shopping-cart-v3-instore.html +0 -4
  152. package/src/page_track-my-order-result.html +1 -0
  153. package/src/partials/scripts.hbs +1 -0
  154. package/src/scss/common/_common.scss +1 -0
  155. package/src/scss/common/_elements.scss +13 -1
  156. package/src/scss/common/_loading-button.scss +49 -0
  157. package/src/scss/components/_notifications.scss +86 -5
  158. package/src/scss/components/bloomreach/_bloomreach.scss +3 -0
  159. package/src/scss/components/bloomreach/_complete-card-dropdown.scss +174 -0
  160. package/src/scss/components/bloomreach/_complete-card.scss +408 -0
  161. package/src/scss/components/bloomreach/_complete-your-project.scss +207 -0
  162. package/src/scss/components/global-search.scss +0 -11
  163. package/src/scss/globals/_global-components.scss +0 -1
  164. package/src/scss/helpers/_variables.scss +1 -0
  165. package/src/scss/main.scss +0 -2
  166. package/src/scss/pages/page_product-details-v2.scss +45 -2
  167. package/src/scss/pdp-main-critical.scss +0 -1
  168. package/src/scss/pdp-main.scss +1 -1
  169. package/src/sitemap.html +6 -0
  170. package/src/components/checkout-voucher-remove-modal.hbs +0 -16
  171. package/src/components/tradepro-discount-banner.hbs +0 -8
  172. package/src/js/components/general/tradepro-discount-banner.js +0 -69
  173. package/src/js/emulation/tradepro-discount-banner-emulation.js +0 -13
  174. package/src/scss/components/_checkout-voucher-remove-modal.scss +0 -108
  175. package/src/scss/components/_pdp-action-v2-critical.scss +0 -27
  176. package/src/scss/components/_pdp-action-v2.scss +0 -27
  177. package/src/scss/components/_tradepro-discount-banner.scss +0 -78
@@ -8,7 +8,3104 @@ Wick.FEMock = {
8
8
  })
9
9
  );
10
10
  },
11
-
11
+ dataBloomreach: {
12
+ completeYourProject3Recomendations: [
13
+ {
14
+ baseProduct: {
15
+ code: '191018',
16
+ name: 'Aqua Flush Bathroom Ceiling Light',
17
+ url: '/Aqua-Flush-Bathroom-Ceiling-Light/p/191018',
18
+ potentialPromotions: [
19
+ {
20
+ code: 'Q1-2026-PLH-345178-10for10',
21
+ promotionType: 'Rule Based Promotion',
22
+ endDate: '2026-07-29T23:59:59.000+0000',
23
+ description:
24
+ '10 for £10 <p>Offer price equivalent to £1.00 per item</p>',
25
+ couldFireMessages: [],
26
+ firedMessages: [],
27
+ priority: 2000,
28
+ customAttributes: {
29
+ overlayText: '15% off',
30
+ displayOverlayText: '15% off',
31
+ displayOverlayTextExclusiveVat: '15% off',
32
+ overlayTextColor: 'gray',
33
+ overlayBackgroundColor: 'yellow',
34
+ showOverlayTextOnPlp: true,
35
+ },
36
+ },
37
+ {
38
+ code: 'Q1-2026-New-WK-2',
39
+ promotionType: 'Rule Based Promotion',
40
+ endDate: '2026-06-29T23:59:59.000+0000',
41
+ couldFireMessages: [],
42
+ firedMessages: [],
43
+ priority: 800,
44
+ customAttributes: {
45
+ overlayText: 'New',
46
+ displayOverlayText: 'New',
47
+ displayOverlayTextExclusiveVat: 'New',
48
+ overlayTextColor: 'white',
49
+ overlayBackgroundColor: 'green',
50
+ showOverlayTextOnPlp: true,
51
+ },
52
+ },
53
+ ],
54
+ description: '',
55
+ purchasable: true,
56
+ stock: {
57
+ stockLevelStatus: {
58
+ code: 'inStock',
59
+ type: 'StockLevelStatus',
60
+ },
61
+ makeUnavailable: false,
62
+ originalStockLevelStatus: {
63
+ code: 'inStock',
64
+ type: 'StockLevelStatus',
65
+ },
66
+ exists: false,
67
+ },
68
+ availableForPickup: true,
69
+ summary: '',
70
+ price: {
71
+ currencyIso: 'GBP',
72
+ currencySymbol: '£',
73
+ formattedPriceWithoutCurrencySymbol: '16',
74
+ formattedValue: '£16',
75
+ infoUom: 'L',
76
+ infoUomDescription: 'L',
77
+ infoUomPrice: 6.4,
78
+ priceType: 'BUY',
79
+ value: 16,
80
+ valueInPence: 1600,
81
+ vatRatePercentage: 20,
82
+ wasPrice: 24,
83
+ },
84
+ images: [
85
+ {
86
+ imageType: 'PRIMARY',
87
+ format: 'product',
88
+ url: 'https://placehold.co/154x154?text=initial-product',
89
+ altText: 'Aqua Flush Bathroom Ceiling Light',
90
+ },
91
+ ],
92
+ categories: [
93
+ {
94
+ code: '1000071',
95
+ name: 'Flush Lights',
96
+ url: '/Products/Electrical+Lighting/Interior-Lights/Flush-Lights/c/1000071',
97
+ sequence: 0,
98
+ },
99
+ {
100
+ code: '1000072',
101
+ name: 'Ceiling Lights',
102
+ url: '/Products/Electrical+Lighting/Interior-Lights/Ceiling-Lights/c/1000072',
103
+ sequence: 0,
104
+ },
105
+ {
106
+ code: '1000077',
107
+ name: 'Bathroom Lights',
108
+ url: '/Products/Electrical+Lighting/Interior-Lights/Bathroom-Lights/c/1000077',
109
+ sequence: 0,
110
+ },
111
+ {
112
+ code: '1001070',
113
+ name: 'Bathroom Lighting',
114
+ url: '/Products/Bathrooms/Bathroom-Decor/Bathroom-Lighting/c/1001070',
115
+ sequence: 0,
116
+ },
117
+ {
118
+ code: 'qa-test-category-4',
119
+ name: 'Listing',
120
+ url: '/Products/Test-Product-Category/Sub-Category-Drills/Listing/c/qa-test-category-4',
121
+ sequence: 0,
122
+ },
123
+ ],
124
+ classifications: [
125
+ {
126
+ code: '1002286',
127
+ name: 'Flush Ceiling & Wall Lights',
128
+ features: [
129
+ {
130
+ code: 'GroupMasterClassification/1.0/1002286.1000187',
131
+ name: 'Colour',
132
+ range: false,
133
+ comparable: true,
134
+ featureValues: [
135
+ {
136
+ value: 'White',
137
+ },
138
+ ],
139
+ },
140
+ {
141
+ code: 'GroupMasterClassification/1.0/1002286.1000923',
142
+ name: 'Pack Quantity',
143
+ range: false,
144
+ comparable: true,
145
+ featureValues: [
146
+ {
147
+ value: '1 Pk.',
148
+ },
149
+ ],
150
+ },
151
+ {
152
+ code: 'GroupMasterClassification/1.0/1002286.1001953',
153
+ name: 'Height',
154
+ range: false,
155
+ comparable: true,
156
+ featureUnit: {
157
+ symbol: 'mm',
158
+ name: 'mm',
159
+ unitType: 'Dimension',
160
+ },
161
+ featureValues: [
162
+ {
163
+ value: '120',
164
+ },
165
+ ],
166
+ },
167
+ {
168
+ code: 'GroupMasterClassification/1.0/1002286.1001974',
169
+ name: 'Voltage',
170
+ range: false,
171
+ comparable: true,
172
+ featureValues: [
173
+ {
174
+ value: '230 V',
175
+ },
176
+ ],
177
+ },
178
+ {
179
+ code: 'GroupMasterClassification/1.0/1002286.1003737',
180
+ name: 'Mount Type',
181
+ range: false,
182
+ comparable: true,
183
+ featureValues: [
184
+ {
185
+ value: 'Ceiling',
186
+ },
187
+ ],
188
+ },
189
+ {
190
+ code: 'GroupMasterClassification/1.0/1002286.1003742',
191
+ name: 'Fixture Type',
192
+ range: false,
193
+ comparable: true,
194
+ featureValues: [
195
+ {
196
+ value: 'Flush',
197
+ },
198
+ ],
199
+ },
200
+ {
201
+ code: 'GroupMasterClassification/1.0/1002286.1003744',
202
+ name: 'Room',
203
+ range: false,
204
+ comparable: true,
205
+ featureValues: [
206
+ {
207
+ value: 'Bathroom',
208
+ },
209
+ ],
210
+ },
211
+ {
212
+ code: 'GroupMasterClassification/1.0/1002286.1003750',
213
+ name: 'Maximum Wattage',
214
+ range: false,
215
+ comparable: true,
216
+ featureValues: [
217
+ {
218
+ value: '60 W',
219
+ },
220
+ ],
221
+ },
222
+ {
223
+ code: 'GroupMasterClassification/1.0/1002286.1003759',
224
+ name: 'Bulb Fitting',
225
+ range: false,
226
+ comparable: true,
227
+ featureValues: [
228
+ {
229
+ value: 'Edison Screw (ES)',
230
+ },
231
+ ],
232
+ },
233
+ {
234
+ code: 'GroupMasterClassification/1.0/1002286.1003763',
235
+ name: 'Lighting Series',
236
+ range: false,
237
+ comparable: true,
238
+ featureValues: [
239
+ {
240
+ value: 'Aqua',
241
+ },
242
+ ],
243
+ },
244
+ ],
245
+ },
246
+ {
247
+ code: '2',
248
+ name: 'UK Legal',
249
+ features: [
250
+ {
251
+ code: 'CommonSupplierWebClassification/1.0/2.4',
252
+ name: 'Age Restriction',
253
+ range: false,
254
+ comparable: true,
255
+ featureValues: [
256
+ {
257
+ value: 'No',
258
+ },
259
+ ],
260
+ },
261
+ ],
262
+ },
263
+ ],
264
+ variantOptions: [
265
+ {
266
+ code: '100320',
267
+ stock: {
268
+ stockLevelStatus: {
269
+ code: 'inStock',
270
+ type: 'StockLevelStatus',
271
+ },
272
+ stockLevel: -1,
273
+ makeUnavailable: false,
274
+ exists: false,
275
+ },
276
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
277
+ variantOptionQualifiers: [
278
+ {
279
+ qualifier: 'size',
280
+ name: 'Size',
281
+ value: '8 size long very long text important!',
282
+ },
283
+ ],
284
+ availabilityRestriction: 'NO_RESTRICTIONS',
285
+ },
286
+ {
287
+ code: '100321',
288
+ stock: {
289
+ stockLevelStatus: {
290
+ code: 'inStock',
291
+ type: 'StockLevelStatus',
292
+ },
293
+ stockLevel: -1,
294
+ makeUnavailable: false,
295
+ exists: false,
296
+ },
297
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
298
+ variantOptionQualifiers: [
299
+ {
300
+ qualifier: 'size',
301
+ name: 'Size',
302
+ value: '9',
303
+ },
304
+ ],
305
+ availabilityRestriction: 'NO_RESTRICTIONS',
306
+ },
307
+ ],
308
+ baseOptions: [],
309
+ volumePrices: [],
310
+ configurable: false,
311
+ imageSetId: 'P2876_191018_IS',
312
+ fulfilmentType: 'STANDARD',
313
+ featuresAndBenefits: [
314
+ 'Suitable for use in bathroom Zone 2 and Outside Zones',
315
+ 'IP44 rated - splash proof',
316
+ 'Light bulb not included. Recommend 1 x ES energy efficient bulb',
317
+ 'Dimmable except when using energy efficient light bulbs',
318
+ 'When fitting in a bathroom a 30mA RCD must be used',
319
+ ],
320
+ noScriptProductImageUrl:
321
+ '/medias/P2876-191018-00-PP-515Wx515H?context=bWFzdGVyfHBpbU1lZGlhfDEyNDg3fGltYWdlL2pwZWd8cGltTWVkaWEvaGY1L2hmZS84Nzk2NDQ0NTU3MzQyLmpwZ3wxYjJiODgwZjdlMDU2ZTNjZmUyOWZjMWI4NjgzMGRiYzQyNGVmNjVhNTVlMDQzOTkwMGQ2OTU3MWVhOTI1MmVk&defaultImage=wickes/2018-Wickes-Missing-Product-650x650',
322
+ sellOnly: false,
323
+ externalAverageRating: 5,
324
+ externalReviewCount: 80,
325
+ priceInclusiveVat: {
326
+ currencyIso: 'GBP',
327
+ value: 18,
328
+ priceType: 'BUY',
329
+ formattedValue: '£18',
330
+ formattedPriceWithoutCurrencySymbol: '18',
331
+ currencySymbol: '£',
332
+ infoUom: 'length',
333
+ infoUomDescription: 'length',
334
+ infoUomPrice: 10,
335
+ vatRatePercentage: 20,
336
+ valueInPence: 1800,
337
+ },
338
+ priceExclusiveVat: {
339
+ currencyIso: 'GBP',
340
+ value: 15,
341
+ priceType: 'BUY',
342
+ formattedValue: '£15',
343
+ formattedPriceWithoutCurrencySymbol: '15',
344
+ currencySymbol: '£',
345
+ infoUom: 'length',
346
+ infoUomDescription: 'length',
347
+ infoUomPrice: 8.33,
348
+ valueInPence: 1500,
349
+ wasPrice: 20,
350
+ },
351
+ downStreamData: {
352
+ fulfillmentType: 'STANDARD',
353
+ },
354
+ categoryPath: 'Products/Electrical & Lighting/Interior Lights/Flush Lights',
355
+ hasDataSheets: false,
356
+ coshhSheetList: [],
357
+ dopSheetList: [],
358
+ epdSheetList: [],
359
+ gilSheetList: [],
360
+ techSheetList: [],
361
+ fulfillmentAttributes: {
362
+ type: 'STANDARD',
363
+ leadTimeDays: 1,
364
+ bigAndBulky: false,
365
+ supplierDelivered: false,
366
+ vision: false,
367
+ assumedAlwaysInStock: false,
368
+ webOnly: false,
369
+ },
370
+ productType: 'MasterProductModel',
371
+ gpid: '1000477958',
372
+ isBaseProduct: false,
373
+ scene7FlyoutViewerISCommand: '',
374
+ promoDescription: '5.51 GBP discount for cart for 250064, 191018',
375
+ availableForShoppingList: true,
376
+ installationDetails: {
377
+ packCoverage: 0,
378
+ pricePerPack: 18,
379
+ pricePerSQM: {
380
+ currencyIso: 'GBP',
381
+ value: 0,
382
+ priceType: 'BUY',
383
+ formattedValue: '£0',
384
+ formattedPriceWithoutCurrencySymbol: '0',
385
+ currencySymbol: '£',
386
+ valueInPence: 0,
387
+ },
388
+ pricePerSQMExcVat: {
389
+ currencyIso: 'GBP',
390
+ value: 0,
391
+ priceType: 'BUY',
392
+ formattedValue: '£0',
393
+ formattedPriceWithoutCurrencySymbol: '0',
394
+ currencySymbol: '£',
395
+ valueInPence: 0,
396
+ },
397
+ },
398
+ tileCalculationAvailable: false,
399
+ flooringCalculationAvailable: false,
400
+ installationProduct: false,
401
+ availabilityRestriction: 'NO_RESTRICTIONS',
402
+ availableForBigWinsCncOnly: false,
403
+ availableForBigWinsStockOnly: false,
404
+ galleryIdentifiers: ['products/wickes/P2876_191018_00'],
405
+ volumePricesExclusiveVat: [],
406
+ isAddedToFavourites: false,
407
+ displayPrice: {
408
+ currencyIso: 'GBP',
409
+ value: 18,
410
+ priceType: 'BUY',
411
+ formattedValue: '£18',
412
+ formattedPriceWithoutCurrencySymbol: '18',
413
+ currencySymbol: '£',
414
+ infoUom: 'length',
415
+ infoUomDescription: 'length',
416
+ infoUomPrice: 10,
417
+ vatRatePercentage: 20,
418
+ valueInPence: 1800,
419
+ wasPrice: 24,
420
+ },
421
+ displayPriceExclusiveVat: {
422
+ currencyIso: 'GBP',
423
+ value: 15,
424
+ priceType: 'BUY',
425
+ formattedValue: '£15',
426
+ formattedPriceWithoutCurrencySymbol: '15',
427
+ currencySymbol: '£',
428
+ infoUom: 'length',
429
+ infoUomDescription: 'length',
430
+ infoUomPrice: 8.33,
431
+ valueInPence: 1500,
432
+ },
433
+ displayPromoDescription: '5.51 GBP discount for cart for 250064, 191018',
434
+ displayPromoDescriptionExclusiveVat:
435
+ '5.51 GBP discount for cart for 250064, 191018',
436
+ displayVolumePrices: [],
437
+ displayVolumePricesExclusiveVat: [],
438
+ },
439
+ variantProducts: [
440
+ {
441
+ code: '100320',
442
+ images: [
443
+ {
444
+ imageType: 'PRIMARY',
445
+ format: 'product',
446
+ url: 'https://placehold.co/154x154?text=variant-product-1',
447
+ },
448
+ ],
449
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 8',
450
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
451
+ description:
452
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
453
+ purchasable: true,
454
+ stock: {
455
+ stockLevelStatus: {
456
+ code: 'inStock',
457
+ type: 'StockLevelStatus',
458
+ },
459
+ makeUnavailable: false,
460
+ originalStockLevelStatus: {
461
+ code: 'outOfStock',
462
+ type: 'StockLevelStatus',
463
+ },
464
+ exists: false,
465
+ },
466
+ availableForPickup: true,
467
+ summary: '',
468
+ price: {
469
+ currencyIso: 'GBP',
470
+ value: 34,
471
+ priceType: 'BUY',
472
+ formattedValue: '£34',
473
+ formattedPriceWithoutCurrencySymbol: '34',
474
+ currencySymbol: '£',
475
+ vatRatePercentage: 20,
476
+ valueInPence: 3400,
477
+ },
478
+ baseProduct: '9000275478',
479
+ categories: [
480
+ {
481
+ code: '1000431',
482
+ name: 'Footwear',
483
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
484
+ sequence: 0,
485
+ },
486
+ {
487
+ code: '1000444',
488
+ name: 'Scruffs',
489
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
490
+ sequence: 0,
491
+ },
492
+ {
493
+ code: '1000446',
494
+ name: 'Hardcore',
495
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
496
+ sequence: 0,
497
+ },
498
+ ],
499
+ classifications: [
500
+ {
501
+ code: '1000486',
502
+ name: 'Boots',
503
+ features: [
504
+ {
505
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
506
+ name: 'Size',
507
+ range: false,
508
+ comparable: true,
509
+ featureValues: [
510
+ {
511
+ value: '8 size long very long text important!',
512
+ },
513
+ ],
514
+ },
515
+ {
516
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
517
+ name: 'Material',
518
+ range: false,
519
+ comparable: true,
520
+ featureValues: [
521
+ {
522
+ value: 'Aluminium',
523
+ },
524
+ ],
525
+ },
526
+ ],
527
+ },
528
+ {
529
+ code: '2',
530
+ name: 'UK Legal',
531
+ features: [
532
+ {
533
+ code: 'CommonSupplierWebClassification/1.0/2.4',
534
+ name: 'Age Restriction',
535
+ range: false,
536
+ comparable: true,
537
+ featureValues: [
538
+ {
539
+ value: 'No',
540
+ },
541
+ ],
542
+ },
543
+ ],
544
+ },
545
+ ],
546
+ potentialPromotions: [],
547
+ variantOptions: [
548
+ {
549
+ code: '100320',
550
+ stock: {
551
+ stockLevelStatus: {
552
+ code: 'inStock',
553
+ type: 'StockLevelStatus',
554
+ },
555
+ stockLevel: -1,
556
+ makeUnavailable: false,
557
+ exists: false,
558
+ },
559
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
560
+ variantOptionQualifiers: [
561
+ {
562
+ qualifier: 'size',
563
+ name: 'Size',
564
+ value: '8 size long very long text important!',
565
+ },
566
+ ],
567
+ availabilityRestriction: 'NO_RESTRICTIONS',
568
+ },
569
+ {
570
+ code: '100321',
571
+ stock: {
572
+ stockLevelStatus: {
573
+ code: 'inStock',
574
+ type: 'StockLevelStatus',
575
+ },
576
+ stockLevel: -1,
577
+ makeUnavailable: false,
578
+ exists: false,
579
+ },
580
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
581
+ variantOptionQualifiers: [
582
+ {
583
+ qualifier: 'size',
584
+ name: 'Size',
585
+ value: '9',
586
+ },
587
+ ],
588
+ availabilityRestriction: 'NO_RESTRICTIONS',
589
+ },
590
+ ],
591
+ baseOptions: [],
592
+ volumePrices: [],
593
+ configurable: false,
594
+ imageSetId: 'missing-product',
595
+ fulfilmentType: 'IN_STORE_ONLY',
596
+ featuresAndBenefits: [
597
+ 'Steel toe cap',
598
+ 'Steel anti-penetration midsole',
599
+ 'Anti static',
600
+ 'Water resistant',
601
+ 'Mock fur lining',
602
+ 'Pull up loops',
603
+ 'Leather upper',
604
+ ],
605
+ noScriptProductImageUrl:
606
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
607
+ sellOnly: false,
608
+ externalAverageRating: 0,
609
+ externalReviewCount: 0,
610
+ priceInclusiveVat: {
611
+ currencyIso: 'GBP',
612
+ value: 34,
613
+ priceType: 'BUY',
614
+ formattedValue: '£34',
615
+ formattedPriceWithoutCurrencySymbol: '34',
616
+ currencySymbol: '£',
617
+ vatRatePercentage: 20,
618
+ valueInPence: 3400,
619
+ },
620
+ priceExclusiveVat: {
621
+ currencyIso: 'GBP',
622
+ value: 28.33,
623
+ priceType: 'BUY',
624
+ formattedValue: '£28.33',
625
+ formattedPriceWithoutCurrencySymbol: '28.33',
626
+ currencySymbol: '£',
627
+ valueInPence: 2833,
628
+ },
629
+ downStreamData: {
630
+ fulfillmentType: 'IN_STORE_ONLY',
631
+ },
632
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
633
+ hasDataSheets: false,
634
+ coshhSheetList: [],
635
+ dopSheetList: [],
636
+ epdSheetList: [],
637
+ gilSheetList: [],
638
+ techSheetList: [],
639
+ fulfillmentAttributes: {
640
+ type: 'IN_STORE_ONLY',
641
+ bigAndBulky: false,
642
+ supplierDelivered: false,
643
+ vision: false,
644
+ assumedAlwaysInStock: true,
645
+ webOnly: false,
646
+ },
647
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
648
+ productType: 'MasterProductModel',
649
+ variantAttributeName: 'Size',
650
+ gpid: '1100484266',
651
+ isBaseProduct: false,
652
+ scene7FlyoutViewerISCommand: '',
653
+ availableForShoppingList: false,
654
+ installationDetails: {
655
+ packCoverage: 0,
656
+ pricePerPack: 34,
657
+ pricePerSQM: {
658
+ currencyIso: 'GBP',
659
+ value: 0,
660
+ priceType: 'BUY',
661
+ formattedValue: '£0',
662
+ formattedPriceWithoutCurrencySymbol: '0',
663
+ currencySymbol: '£',
664
+ valueInPence: 0,
665
+ },
666
+ pricePerSQMExcVat: {
667
+ currencyIso: 'GBP',
668
+ value: 0,
669
+ priceType: 'BUY',
670
+ formattedValue: '£0',
671
+ formattedPriceWithoutCurrencySymbol: '0',
672
+ currencySymbol: '£',
673
+ valueInPence: 0,
674
+ },
675
+ },
676
+ tileCalculationAvailable: false,
677
+ flooringCalculationAvailable: false,
678
+ installationProduct: false,
679
+ availabilityRestriction: 'NO_RESTRICTIONS',
680
+ availableForBigWinsCncOnly: false,
681
+ availableForBigWinsStockOnly: false,
682
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
683
+ volumePricesExclusiveVat: [],
684
+ isAddedToFavourites: false,
685
+ displayPrice: {
686
+ currencyIso: 'GBP',
687
+ value: 34,
688
+ priceType: 'BUY',
689
+ formattedValue: '£34',
690
+ formattedPriceWithoutCurrencySymbol: '34',
691
+ currencySymbol: '£',
692
+ vatRatePercentage: 20,
693
+ valueInPence: 3400,
694
+ },
695
+ displayPriceExclusiveVat: {
696
+ currencyIso: 'GBP',
697
+ value: 28.33,
698
+ priceType: 'BUY',
699
+ formattedValue: '£28.33',
700
+ formattedPriceWithoutCurrencySymbol: '28.33',
701
+ currencySymbol: '£',
702
+ valueInPence: 2833,
703
+ },
704
+ displayVolumePrices: [],
705
+ displayVolumePricesExclusiveVat: [],
706
+ },
707
+ {
708
+ code: '100321',
709
+ images: [
710
+ {
711
+ imageType: 'PRIMARY',
712
+ format: 'product',
713
+ url: 'https://placehold.co/154x154?text=variant-product-2',
714
+ },
715
+ ],
716
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 9',
717
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
718
+ description:
719
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
720
+ purchasable: true,
721
+ stock: {
722
+ stockLevelStatus: {
723
+ code: 'inStock',
724
+ type: 'StockLevelStatus',
725
+ },
726
+ makeUnavailable: false,
727
+ originalStockLevelStatus: {
728
+ code: 'outOfStock',
729
+ type: 'StockLevelStatus',
730
+ },
731
+ exists: false,
732
+ },
733
+ availableForPickup: true,
734
+ summary: '',
735
+ price: {
736
+ currencyIso: 'GBP',
737
+ value: 38,
738
+ priceType: 'BUY',
739
+ formattedValue: '£38',
740
+ formattedPriceWithoutCurrencySymbol: '38',
741
+ currencySymbol: '£',
742
+ vatRatePercentage: 20,
743
+ valueInPence: 3400,
744
+ },
745
+ baseProduct: '9000275478',
746
+ categories: [
747
+ {
748
+ code: '1000431',
749
+ name: 'Footwear',
750
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
751
+ sequence: 0,
752
+ },
753
+ {
754
+ code: '1000444',
755
+ name: 'Scruffs',
756
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
757
+ sequence: 0,
758
+ },
759
+ {
760
+ code: '1000446',
761
+ name: 'Hardcore',
762
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
763
+ sequence: 0,
764
+ },
765
+ ],
766
+ classifications: [
767
+ {
768
+ code: '1000486',
769
+ name: 'Boots',
770
+ features: [
771
+ {
772
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
773
+ name: 'Size',
774
+ range: false,
775
+ comparable: true,
776
+ featureValues: [
777
+ {
778
+ value: '9',
779
+ },
780
+ ],
781
+ },
782
+ {
783
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
784
+ name: 'Material',
785
+ range: false,
786
+ comparable: true,
787
+ featureValues: [
788
+ {
789
+ value: 'Aluminium',
790
+ },
791
+ ],
792
+ },
793
+ ],
794
+ },
795
+ {
796
+ code: '2',
797
+ name: 'UK Legal',
798
+ features: [
799
+ {
800
+ code: 'CommonSupplierWebClassification/1.0/2.4',
801
+ name: 'Age Restriction',
802
+ range: false,
803
+ comparable: true,
804
+ featureValues: [
805
+ {
806
+ value: 'No',
807
+ },
808
+ ],
809
+ },
810
+ ],
811
+ },
812
+ ],
813
+ potentialPromotions: [],
814
+ variantOptions: [
815
+ {
816
+ code: '100320',
817
+ stock: {
818
+ stockLevelStatus: {
819
+ code: 'inStock',
820
+ type: 'StockLevelStatus',
821
+ },
822
+ stockLevel: -1,
823
+ makeUnavailable: false,
824
+ exists: false,
825
+ },
826
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
827
+ variantOptionQualifiers: [
828
+ {
829
+ qualifier: 'size',
830
+ name: 'Size',
831
+ value: '8 size long very long text important!',
832
+ },
833
+ ],
834
+ availabilityRestriction: 'NO_RESTRICTIONS',
835
+ },
836
+ {
837
+ code: '100321',
838
+ stock: {
839
+ stockLevelStatus: {
840
+ code: 'inStock',
841
+ type: 'StockLevelStatus',
842
+ },
843
+ stockLevel: -1,
844
+ makeUnavailable: false,
845
+ exists: false,
846
+ },
847
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
848
+ variantOptionQualifiers: [
849
+ {
850
+ qualifier: 'size',
851
+ name: 'Size',
852
+ value: '9',
853
+ },
854
+ ],
855
+ availabilityRestriction: 'NO_RESTRICTIONS',
856
+ },
857
+ ],
858
+ baseOptions: [],
859
+ volumePrices: [],
860
+ configurable: false,
861
+ imageSetId: 'missing-product',
862
+ fulfilmentType: 'IN_STORE_ONLY',
863
+ featuresAndBenefits: [
864
+ 'Steel toe cap',
865
+ 'Steel anti-penetration midsole',
866
+ 'Anti static',
867
+ 'Water resistant',
868
+ 'Mock fur lining',
869
+ 'Pull up loops',
870
+ 'Leather upper',
871
+ ],
872
+ noScriptProductImageUrl:
873
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
874
+ sellOnly: false,
875
+ externalAverageRating: 0,
876
+ externalReviewCount: 0,
877
+ priceInclusiveVat: {
878
+ currencyIso: 'GBP',
879
+ value: 34,
880
+ priceType: 'BUY',
881
+ formattedValue: '£34',
882
+ formattedPriceWithoutCurrencySymbol: '34',
883
+ currencySymbol: '£',
884
+ vatRatePercentage: 20,
885
+ valueInPence: 3400,
886
+ },
887
+ priceExclusiveVat: {
888
+ currencyIso: 'GBP',
889
+ value: 28.33,
890
+ priceType: 'BUY',
891
+ formattedValue: '£28.33',
892
+ formattedPriceWithoutCurrencySymbol: '28.33',
893
+ currencySymbol: '£',
894
+ valueInPence: 2833,
895
+ },
896
+ downStreamData: {
897
+ fulfillmentType: 'IN_STORE_ONLY',
898
+ },
899
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
900
+ hasDataSheets: false,
901
+ coshhSheetList: [],
902
+ dopSheetList: [],
903
+ epdSheetList: [],
904
+ gilSheetList: [],
905
+ techSheetList: [],
906
+ fulfillmentAttributes: {
907
+ type: 'IN_STORE_ONLY',
908
+ bigAndBulky: false,
909
+ supplierDelivered: false,
910
+ vision: false,
911
+ assumedAlwaysInStock: true,
912
+ webOnly: false,
913
+ },
914
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
915
+ productType: 'MasterProductModel',
916
+ variantAttributeName: 'Size',
917
+ gpid: '1100484267',
918
+ isBaseProduct: false,
919
+ scene7FlyoutViewerISCommand: '',
920
+ availableForShoppingList: false,
921
+ installationDetails: {
922
+ packCoverage: 0,
923
+ pricePerPack: 34,
924
+ pricePerSQM: {
925
+ currencyIso: 'GBP',
926
+ value: 0,
927
+ priceType: 'BUY',
928
+ formattedValue: '£0',
929
+ formattedPriceWithoutCurrencySymbol: '0',
930
+ currencySymbol: '£',
931
+ valueInPence: 0,
932
+ },
933
+ pricePerSQMExcVat: {
934
+ currencyIso: 'GBP',
935
+ value: 0,
936
+ priceType: 'BUY',
937
+ formattedValue: '£0',
938
+ formattedPriceWithoutCurrencySymbol: '0',
939
+ currencySymbol: '£',
940
+ valueInPence: 0,
941
+ },
942
+ },
943
+ tileCalculationAvailable: false,
944
+ flooringCalculationAvailable: false,
945
+ installationProduct: false,
946
+ availabilityRestriction: 'NO_RESTRICTIONS',
947
+ availableForBigWinsCncOnly: false,
948
+ availableForBigWinsStockOnly: false,
949
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
950
+ volumePricesExclusiveVat: [],
951
+ isAddedToFavourites: false,
952
+ displayPrice: {
953
+ currencyIso: 'GBP',
954
+ value: 34,
955
+ priceType: 'BUY',
956
+ formattedValue: '£34',
957
+ formattedPriceWithoutCurrencySymbol: '34',
958
+ currencySymbol: '£',
959
+ vatRatePercentage: 20,
960
+ valueInPence: 3400,
961
+ },
962
+ displayPriceExclusiveVat: {
963
+ currencyIso: 'GBP',
964
+ value: 28.33,
965
+ priceType: 'BUY',
966
+ formattedValue: '£28.33',
967
+ formattedPriceWithoutCurrencySymbol: '28.33',
968
+ currencySymbol: '£',
969
+ valueInPence: 2833,
970
+ },
971
+ displayVolumePrices: [],
972
+ displayVolumePricesExclusiveVat: [],
973
+ },
974
+ ],
975
+ },
976
+ {
977
+ baseProduct: {
978
+ code: '9000275478',
979
+ name: 'LPD Internal Mexicano Pair Clear Glazed Unfinished Oak Door - 1981mm',
980
+ url: '/LPD-Internal-Mexicano-Pair-Clear-Glazed-Unfinished-Oak-Door---1981mm/p/9000275478',
981
+ purchasable: true,
982
+ stock: {
983
+ makeUnavailable: false,
984
+ originalStockLevelStatus: {
985
+ code: 'out of stock',
986
+ type: 'StockLevelStatus',
987
+ },
988
+ exists: false,
989
+ },
990
+ availableForPickup: true,
991
+ price: {
992
+ currencyIso: 'GBP',
993
+ value: 34,
994
+ priceType: 'FROM',
995
+ formattedValue: '£34',
996
+ formattedPriceWithoutCurrencySymbol: '34',
997
+ currencySymbol: '£',
998
+ vatRatePercentage: 20,
999
+ valueInPence: 3400,
1000
+ },
1001
+ images: [
1002
+ {
1003
+ imageType: 'PRIMARY',
1004
+ format: 'product',
1005
+ url: 'https://placehold.co/154x154?text=bloomreach-product-1',
1006
+ },
1007
+ ],
1008
+ variantOptions: [
1009
+ {
1010
+ code: '100320',
1011
+ stock: {
1012
+ stockLevelStatus: {
1013
+ code: 'inStock',
1014
+ type: 'StockLevelStatus',
1015
+ },
1016
+ stockLevel: -1,
1017
+ makeUnavailable: false,
1018
+ exists: false,
1019
+ },
1020
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
1021
+ variantOptionQualifiers: [
1022
+ {
1023
+ qualifier: 'size',
1024
+ name: 'Size',
1025
+ value: '8 size long very long text important!',
1026
+ },
1027
+ ],
1028
+ availabilityRestriction: 'NO_RESTRICTIONS',
1029
+ },
1030
+ {
1031
+ code: '100321',
1032
+ stock: {
1033
+ stockLevelStatus: {
1034
+ code: 'inStock',
1035
+ type: 'StockLevelStatus',
1036
+ },
1037
+ stockLevel: -1,
1038
+ makeUnavailable: false,
1039
+ exists: false,
1040
+ },
1041
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
1042
+ variantOptionQualifiers: [
1043
+ {
1044
+ qualifier: 'size',
1045
+ name: 'Size',
1046
+ value: '9',
1047
+ },
1048
+ ],
1049
+ availabilityRestriction: 'NO_RESTRICTIONS',
1050
+ },
1051
+ ],
1052
+ fulfilmentType: 'IN_STORE_ONLY',
1053
+ externalAverageRating: 0,
1054
+ externalReviewCount: 0,
1055
+ priceExclusiveVat: {
1056
+ currencyIso: 'GBP',
1057
+ value: 395,
1058
+ priceType: 'FROM',
1059
+ formattedValue: '£395',
1060
+ formattedPriceWithoutCurrencySymbol: '395',
1061
+ currencySymbol: '£',
1062
+ valueInPence: 39500,
1063
+ },
1064
+ categoryPath: 'Products/Doors & Windows/Internal Doors/Oak Internal Doors',
1065
+ fulfillmentAttributes: {
1066
+ type: 'IN_STORE_ONLY',
1067
+ bigAndBulky: false,
1068
+ supplierDelivered: false,
1069
+ vision: false,
1070
+ assumedAlwaysInStock: true,
1071
+ webOnly: false,
1072
+ },
1073
+ variantAttributeName: 'Size',
1074
+ isBaseProduct: true,
1075
+ brandName: 'Lpd doors',
1076
+ availableForShoppingList: false,
1077
+ tileCalculationAvailable: false,
1078
+ flooringCalculationAvailable: false,
1079
+ installationProduct: false,
1080
+ availableForBigWinsCncOnly: false,
1081
+ availableForBigWinsStockOnly: false,
1082
+ isAddedToFavourites: false,
1083
+ displayPrice: {
1084
+ currencyIso: 'GBP',
1085
+ value: 34,
1086
+ priceType: 'FROM',
1087
+ formattedValue: '£34',
1088
+ formattedPriceWithoutCurrencySymbol: '34',
1089
+ currencySymbol: '£',
1090
+ vatRatePercentage: 20,
1091
+ valueInPence: 3400,
1092
+ },
1093
+ displayPriceExclusiveVat: {
1094
+ currencyIso: 'GBP',
1095
+ value: 395,
1096
+ priceType: 'FROM',
1097
+ formattedValue: '£395',
1098
+ formattedPriceWithoutCurrencySymbol: '395',
1099
+ currencySymbol: '£',
1100
+ valueInPence: 39500,
1101
+ },
1102
+ },
1103
+ variantProducts: [
1104
+ {
1105
+ code: '100320',
1106
+ images: [
1107
+ {
1108
+ imageType: 'PRIMARY',
1109
+ format: 'product',
1110
+ url: 'https://placehold.co/154x154?text=variant-product-1',
1111
+ },
1112
+ ],
1113
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 8',
1114
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
1115
+ description:
1116
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
1117
+ purchasable: true,
1118
+ stock: {
1119
+ stockLevelStatus: {
1120
+ code: 'inStock',
1121
+ type: 'StockLevelStatus',
1122
+ },
1123
+ makeUnavailable: false,
1124
+ originalStockLevelStatus: {
1125
+ code: 'outOfStock',
1126
+ type: 'StockLevelStatus',
1127
+ },
1128
+ exists: false,
1129
+ },
1130
+ availableForPickup: true,
1131
+ summary: '',
1132
+ price: {
1133
+ currencyIso: 'GBP',
1134
+ value: 34,
1135
+ priceType: 'BUY',
1136
+ formattedValue: '£34',
1137
+ formattedPriceWithoutCurrencySymbol: '34',
1138
+ currencySymbol: '£',
1139
+ vatRatePercentage: 20,
1140
+ valueInPence: 3400,
1141
+ },
1142
+ baseProduct: '9000275478',
1143
+ categories: [
1144
+ {
1145
+ code: '1000431',
1146
+ name: 'Footwear',
1147
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
1148
+ sequence: 0,
1149
+ },
1150
+ {
1151
+ code: '1000444',
1152
+ name: 'Scruffs',
1153
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
1154
+ sequence: 0,
1155
+ },
1156
+ {
1157
+ code: '1000446',
1158
+ name: 'Hardcore',
1159
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
1160
+ sequence: 0,
1161
+ },
1162
+ ],
1163
+ classifications: [
1164
+ {
1165
+ code: '1000486',
1166
+ name: 'Boots',
1167
+ features: [
1168
+ {
1169
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
1170
+ name: 'Size',
1171
+ range: false,
1172
+ comparable: true,
1173
+ featureValues: [
1174
+ {
1175
+ value: '8 size long very long text important!',
1176
+ },
1177
+ ],
1178
+ },
1179
+ {
1180
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
1181
+ name: 'Material',
1182
+ range: false,
1183
+ comparable: true,
1184
+ featureValues: [
1185
+ {
1186
+ value: 'Aluminium',
1187
+ },
1188
+ ],
1189
+ },
1190
+ ],
1191
+ },
1192
+ {
1193
+ code: '2',
1194
+ name: 'UK Legal',
1195
+ features: [
1196
+ {
1197
+ code: 'CommonSupplierWebClassification/1.0/2.4',
1198
+ name: 'Age Restriction',
1199
+ range: false,
1200
+ comparable: true,
1201
+ featureValues: [
1202
+ {
1203
+ value: 'No',
1204
+ },
1205
+ ],
1206
+ },
1207
+ ],
1208
+ },
1209
+ ],
1210
+ potentialPromotions: [],
1211
+ variantOptions: [
1212
+ {
1213
+ code: '100320',
1214
+ stock: {
1215
+ stockLevelStatus: {
1216
+ code: 'inStock',
1217
+ type: 'StockLevelStatus',
1218
+ },
1219
+ stockLevel: -1,
1220
+ makeUnavailable: false,
1221
+ exists: false,
1222
+ },
1223
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
1224
+ variantOptionQualifiers: [
1225
+ {
1226
+ qualifier: 'size',
1227
+ name: 'Size',
1228
+ value: '8 size long very long text important!',
1229
+ },
1230
+ ],
1231
+ availabilityRestriction: 'NO_RESTRICTIONS',
1232
+ },
1233
+ {
1234
+ code: '100321',
1235
+ stock: {
1236
+ stockLevelStatus: {
1237
+ code: 'inStock',
1238
+ type: 'StockLevelStatus',
1239
+ },
1240
+ stockLevel: -1,
1241
+ makeUnavailable: false,
1242
+ exists: false,
1243
+ },
1244
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
1245
+ variantOptionQualifiers: [
1246
+ {
1247
+ qualifier: 'size',
1248
+ name: 'Size',
1249
+ value: '9',
1250
+ },
1251
+ ],
1252
+ availabilityRestriction: 'NO_RESTRICTIONS',
1253
+ },
1254
+ ],
1255
+ baseOptions: [],
1256
+ volumePrices: [],
1257
+ configurable: false,
1258
+ imageSetId: 'missing-product',
1259
+ fulfilmentType: 'IN_STORE_ONLY',
1260
+ featuresAndBenefits: [
1261
+ 'Steel toe cap',
1262
+ 'Steel anti-penetration midsole',
1263
+ 'Anti static',
1264
+ 'Water resistant',
1265
+ 'Mock fur lining',
1266
+ 'Pull up loops',
1267
+ 'Leather upper',
1268
+ ],
1269
+ noScriptProductImageUrl:
1270
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
1271
+ sellOnly: false,
1272
+ externalAverageRating: 0,
1273
+ externalReviewCount: 0,
1274
+ priceInclusiveVat: {
1275
+ currencyIso: 'GBP',
1276
+ value: 34,
1277
+ priceType: 'BUY',
1278
+ formattedValue: '£34',
1279
+ formattedPriceWithoutCurrencySymbol: '34',
1280
+ currencySymbol: '£',
1281
+ vatRatePercentage: 20,
1282
+ valueInPence: 3400,
1283
+ },
1284
+ priceExclusiveVat: {
1285
+ currencyIso: 'GBP',
1286
+ value: 28.33,
1287
+ priceType: 'BUY',
1288
+ formattedValue: '£28.33',
1289
+ formattedPriceWithoutCurrencySymbol: '28.33',
1290
+ currencySymbol: '£',
1291
+ valueInPence: 2833,
1292
+ },
1293
+ downStreamData: {
1294
+ fulfillmentType: 'IN_STORE_ONLY',
1295
+ },
1296
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
1297
+ hasDataSheets: false,
1298
+ coshhSheetList: [],
1299
+ dopSheetList: [],
1300
+ epdSheetList: [],
1301
+ gilSheetList: [],
1302
+ techSheetList: [],
1303
+ fulfillmentAttributes: {
1304
+ type: 'IN_STORE_ONLY',
1305
+ bigAndBulky: false,
1306
+ supplierDelivered: false,
1307
+ vision: false,
1308
+ assumedAlwaysInStock: true,
1309
+ webOnly: false,
1310
+ },
1311
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
1312
+ productType: 'MasterProductModel',
1313
+ variantAttributeName: 'Size',
1314
+ gpid: '1100484266',
1315
+ isBaseProduct: false,
1316
+ scene7FlyoutViewerISCommand: '',
1317
+ availableForShoppingList: false,
1318
+ installationDetails: {
1319
+ packCoverage: 0,
1320
+ pricePerPack: 34,
1321
+ pricePerSQM: {
1322
+ currencyIso: 'GBP',
1323
+ value: 0,
1324
+ priceType: 'BUY',
1325
+ formattedValue: '£0',
1326
+ formattedPriceWithoutCurrencySymbol: '0',
1327
+ currencySymbol: '£',
1328
+ valueInPence: 0,
1329
+ },
1330
+ pricePerSQMExcVat: {
1331
+ currencyIso: 'GBP',
1332
+ value: 0,
1333
+ priceType: 'BUY',
1334
+ formattedValue: '£0',
1335
+ formattedPriceWithoutCurrencySymbol: '0',
1336
+ currencySymbol: '£',
1337
+ valueInPence: 0,
1338
+ },
1339
+ },
1340
+ tileCalculationAvailable: false,
1341
+ flooringCalculationAvailable: false,
1342
+ installationProduct: false,
1343
+ availabilityRestriction: 'NO_RESTRICTIONS',
1344
+ availableForBigWinsCncOnly: false,
1345
+ availableForBigWinsStockOnly: false,
1346
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
1347
+ volumePricesExclusiveVat: [],
1348
+ isAddedToFavourites: false,
1349
+ displayPrice: {
1350
+ currencyIso: 'GBP',
1351
+ value: 34,
1352
+ priceType: 'BUY',
1353
+ formattedValue: '£34',
1354
+ formattedPriceWithoutCurrencySymbol: '34',
1355
+ currencySymbol: '£',
1356
+ vatRatePercentage: 20,
1357
+ valueInPence: 3400,
1358
+ },
1359
+ displayPriceExclusiveVat: {
1360
+ currencyIso: 'GBP',
1361
+ value: 28.33,
1362
+ priceType: 'BUY',
1363
+ formattedValue: '£28.33',
1364
+ formattedPriceWithoutCurrencySymbol: '28.33',
1365
+ currencySymbol: '£',
1366
+ valueInPence: 2833,
1367
+ },
1368
+ displayVolumePrices: [],
1369
+ displayVolumePricesExclusiveVat: [],
1370
+ },
1371
+ {
1372
+ code: '100321',
1373
+ images: [
1374
+ {
1375
+ imageType: 'PRIMARY',
1376
+ format: 'product',
1377
+ url: 'https://placehold.co/154x154?text=variant-product-2',
1378
+ },
1379
+ ],
1380
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 9',
1381
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
1382
+ description:
1383
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
1384
+ purchasable: true,
1385
+ stock: {
1386
+ stockLevelStatus: {
1387
+ code: 'inStock',
1388
+ type: 'StockLevelStatus',
1389
+ },
1390
+ makeUnavailable: false,
1391
+ originalStockLevelStatus: {
1392
+ code: 'outOfStock',
1393
+ type: 'StockLevelStatus',
1394
+ },
1395
+ exists: false,
1396
+ },
1397
+ availableForPickup: true,
1398
+ summary: '',
1399
+ price: {
1400
+ currencyIso: 'GBP',
1401
+ value: 38,
1402
+ priceType: 'BUY',
1403
+ formattedValue: '£38',
1404
+ formattedPriceWithoutCurrencySymbol: '38',
1405
+ currencySymbol: '£',
1406
+ vatRatePercentage: 20,
1407
+ valueInPence: 3400,
1408
+ },
1409
+ baseProduct: '9000275478',
1410
+ categories: [
1411
+ {
1412
+ code: '1000431',
1413
+ name: 'Footwear',
1414
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
1415
+ sequence: 0,
1416
+ },
1417
+ {
1418
+ code: '1000444',
1419
+ name: 'Scruffs',
1420
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
1421
+ sequence: 0,
1422
+ },
1423
+ {
1424
+ code: '1000446',
1425
+ name: 'Hardcore',
1426
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
1427
+ sequence: 0,
1428
+ },
1429
+ ],
1430
+ classifications: [
1431
+ {
1432
+ code: '1000486',
1433
+ name: 'Boots',
1434
+ features: [
1435
+ {
1436
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
1437
+ name: 'Size',
1438
+ range: false,
1439
+ comparable: true,
1440
+ featureValues: [
1441
+ {
1442
+ value: '9',
1443
+ },
1444
+ ],
1445
+ },
1446
+ {
1447
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
1448
+ name: 'Material',
1449
+ range: false,
1450
+ comparable: true,
1451
+ featureValues: [
1452
+ {
1453
+ value: 'Aluminium',
1454
+ },
1455
+ ],
1456
+ },
1457
+ ],
1458
+ },
1459
+ {
1460
+ code: '2',
1461
+ name: 'UK Legal',
1462
+ features: [
1463
+ {
1464
+ code: 'CommonSupplierWebClassification/1.0/2.4',
1465
+ name: 'Age Restriction',
1466
+ range: false,
1467
+ comparable: true,
1468
+ featureValues: [
1469
+ {
1470
+ value: 'No',
1471
+ },
1472
+ ],
1473
+ },
1474
+ ],
1475
+ },
1476
+ ],
1477
+ potentialPromotions: [],
1478
+ variantOptions: [
1479
+ {
1480
+ code: '100320',
1481
+ stock: {
1482
+ stockLevelStatus: {
1483
+ code: 'inStock',
1484
+ type: 'StockLevelStatus',
1485
+ },
1486
+ stockLevel: -1,
1487
+ makeUnavailable: false,
1488
+ exists: false,
1489
+ },
1490
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
1491
+ variantOptionQualifiers: [
1492
+ {
1493
+ qualifier: 'size',
1494
+ name: 'Size',
1495
+ value: '8 size long very long text important!',
1496
+ },
1497
+ ],
1498
+ availabilityRestriction: 'NO_RESTRICTIONS',
1499
+ },
1500
+ {
1501
+ code: '100321',
1502
+ stock: {
1503
+ stockLevelStatus: {
1504
+ code: 'inStock',
1505
+ type: 'StockLevelStatus',
1506
+ },
1507
+ stockLevel: -1,
1508
+ makeUnavailable: false,
1509
+ exists: false,
1510
+ },
1511
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
1512
+ variantOptionQualifiers: [
1513
+ {
1514
+ qualifier: 'size',
1515
+ name: 'Size',
1516
+ value: '9',
1517
+ },
1518
+ ],
1519
+ availabilityRestriction: 'NO_RESTRICTIONS',
1520
+ },
1521
+ ],
1522
+ baseOptions: [],
1523
+ volumePrices: [],
1524
+ configurable: false,
1525
+ imageSetId: 'missing-product',
1526
+ fulfilmentType: 'IN_STORE_ONLY',
1527
+ featuresAndBenefits: [
1528
+ 'Steel toe cap',
1529
+ 'Steel anti-penetration midsole',
1530
+ 'Anti static',
1531
+ 'Water resistant',
1532
+ 'Mock fur lining',
1533
+ 'Pull up loops',
1534
+ 'Leather upper',
1535
+ ],
1536
+ noScriptProductImageUrl:
1537
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
1538
+ sellOnly: false,
1539
+ externalAverageRating: 0,
1540
+ externalReviewCount: 0,
1541
+ priceInclusiveVat: {
1542
+ currencyIso: 'GBP',
1543
+ value: 34,
1544
+ priceType: 'BUY',
1545
+ formattedValue: '£34',
1546
+ formattedPriceWithoutCurrencySymbol: '34',
1547
+ currencySymbol: '£',
1548
+ vatRatePercentage: 20,
1549
+ valueInPence: 3400,
1550
+ },
1551
+ priceExclusiveVat: {
1552
+ currencyIso: 'GBP',
1553
+ value: 28.33,
1554
+ priceType: 'BUY',
1555
+ formattedValue: '£28.33',
1556
+ formattedPriceWithoutCurrencySymbol: '28.33',
1557
+ currencySymbol: '£',
1558
+ valueInPence: 2833,
1559
+ },
1560
+ downStreamData: {
1561
+ fulfillmentType: 'IN_STORE_ONLY',
1562
+ },
1563
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
1564
+ hasDataSheets: false,
1565
+ coshhSheetList: [],
1566
+ dopSheetList: [],
1567
+ epdSheetList: [],
1568
+ gilSheetList: [],
1569
+ techSheetList: [],
1570
+ fulfillmentAttributes: {
1571
+ type: 'IN_STORE_ONLY',
1572
+ bigAndBulky: false,
1573
+ supplierDelivered: false,
1574
+ vision: false,
1575
+ assumedAlwaysInStock: true,
1576
+ webOnly: false,
1577
+ },
1578
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
1579
+ productType: 'MasterProductModel',
1580
+ variantAttributeName: 'Size',
1581
+ gpid: '1100484267',
1582
+ isBaseProduct: false,
1583
+ scene7FlyoutViewerISCommand: '',
1584
+ availableForShoppingList: false,
1585
+ installationDetails: {
1586
+ packCoverage: 0,
1587
+ pricePerPack: 34,
1588
+ pricePerSQM: {
1589
+ currencyIso: 'GBP',
1590
+ value: 0,
1591
+ priceType: 'BUY',
1592
+ formattedValue: '£0',
1593
+ formattedPriceWithoutCurrencySymbol: '0',
1594
+ currencySymbol: '£',
1595
+ valueInPence: 0,
1596
+ },
1597
+ pricePerSQMExcVat: {
1598
+ currencyIso: 'GBP',
1599
+ value: 0,
1600
+ priceType: 'BUY',
1601
+ formattedValue: '£0',
1602
+ formattedPriceWithoutCurrencySymbol: '0',
1603
+ currencySymbol: '£',
1604
+ valueInPence: 0,
1605
+ },
1606
+ },
1607
+ tileCalculationAvailable: false,
1608
+ flooringCalculationAvailable: false,
1609
+ installationProduct: false,
1610
+ availabilityRestriction: 'NO_RESTRICTIONS',
1611
+ availableForBigWinsCncOnly: false,
1612
+ availableForBigWinsStockOnly: false,
1613
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
1614
+ volumePricesExclusiveVat: [],
1615
+ isAddedToFavourites: false,
1616
+ displayPrice: {
1617
+ currencyIso: 'GBP',
1618
+ value: 34,
1619
+ priceType: 'BUY',
1620
+ formattedValue: '£34',
1621
+ formattedPriceWithoutCurrencySymbol: '34',
1622
+ currencySymbol: '£',
1623
+ vatRatePercentage: 20,
1624
+ valueInPence: 3400,
1625
+ },
1626
+ displayPriceExclusiveVat: {
1627
+ currencyIso: 'GBP',
1628
+ value: 28.33,
1629
+ priceType: 'BUY',
1630
+ formattedValue: '£28.33',
1631
+ formattedPriceWithoutCurrencySymbol: '28.33',
1632
+ currencySymbol: '£',
1633
+ valueInPence: 2833,
1634
+ },
1635
+ displayVolumePrices: [],
1636
+ displayVolumePricesExclusiveVat: [],
1637
+ },
1638
+ ],
1639
+ },
1640
+ {
1641
+ baseProduct: {
1642
+ code: '9000275478',
1643
+ name: 'LPD Internal Mexicano Pair Clear Glazed Unfinished Oak Door - 1981mm',
1644
+ url: '/LPD-Internal-Mexicano-Pair-Clear-Glazed-Unfinished-Oak-Door---1981mm/p/9000275478',
1645
+ purchasable: true,
1646
+ stock: {
1647
+ makeUnavailable: false,
1648
+ originalStockLevelStatus: {
1649
+ code: 'out of stock',
1650
+ type: 'StockLevelStatus',
1651
+ },
1652
+ exists: false,
1653
+ },
1654
+ availableForPickup: true,
1655
+ price: {
1656
+ currencyIso: 'GBP',
1657
+ value: 34,
1658
+ priceType: 'FROM',
1659
+ formattedValue: '£34',
1660
+ formattedPriceWithoutCurrencySymbol: '34',
1661
+ currencySymbol: '£',
1662
+ vatRatePercentage: 20,
1663
+ valueInPence: 3400,
1664
+ },
1665
+ images: [
1666
+ {
1667
+ imageType: 'PRIMARY',
1668
+ format: 'product',
1669
+ url: 'https://placehold.co/154x154?text=bloomreach-product-2',
1670
+ },
1671
+ ],
1672
+ variantOptions: [
1673
+ {
1674
+ code: '100320',
1675
+ stock: {
1676
+ stockLevelStatus: {
1677
+ code: 'inStock',
1678
+ type: 'StockLevelStatus',
1679
+ },
1680
+ stockLevel: -1,
1681
+ makeUnavailable: false,
1682
+ exists: false,
1683
+ },
1684
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
1685
+ variantOptionQualifiers: [
1686
+ {
1687
+ qualifier: 'size',
1688
+ name: 'Size',
1689
+ value: '8 size long very long text important!',
1690
+ },
1691
+ ],
1692
+ availabilityRestriction: 'NO_RESTRICTIONS',
1693
+ },
1694
+ {
1695
+ code: '100321',
1696
+ stock: {
1697
+ stockLevelStatus: {
1698
+ code: 'inStock',
1699
+ type: 'StockLevelStatus',
1700
+ },
1701
+ stockLevel: -1,
1702
+ makeUnavailable: false,
1703
+ exists: false,
1704
+ },
1705
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
1706
+ variantOptionQualifiers: [
1707
+ {
1708
+ qualifier: 'size',
1709
+ name: 'Size',
1710
+ value: '9',
1711
+ },
1712
+ ],
1713
+ availabilityRestriction: 'NO_RESTRICTIONS',
1714
+ },
1715
+ ],
1716
+ fulfilmentType: 'IN_STORE_ONLY',
1717
+ externalAverageRating: 0,
1718
+ externalReviewCount: 0,
1719
+ priceExclusiveVat: {
1720
+ currencyIso: 'GBP',
1721
+ value: 395,
1722
+ priceType: 'FROM',
1723
+ formattedValue: '£395',
1724
+ formattedPriceWithoutCurrencySymbol: '395',
1725
+ currencySymbol: '£',
1726
+ valueInPence: 39500,
1727
+ },
1728
+ categoryPath: 'Products/Doors & Windows/Internal Doors/Oak Internal Doors',
1729
+ fulfillmentAttributes: {
1730
+ type: 'IN_STORE_ONLY',
1731
+ bigAndBulky: false,
1732
+ supplierDelivered: false,
1733
+ vision: false,
1734
+ assumedAlwaysInStock: true,
1735
+ webOnly: false,
1736
+ },
1737
+ variantAttributeName: 'Size',
1738
+ isBaseProduct: true,
1739
+ brandName: 'Lpd doors',
1740
+ availableForShoppingList: false,
1741
+ tileCalculationAvailable: false,
1742
+ flooringCalculationAvailable: false,
1743
+ installationProduct: false,
1744
+ availableForBigWinsCncOnly: false,
1745
+ availableForBigWinsStockOnly: false,
1746
+ isAddedToFavourites: false,
1747
+ displayPrice: {
1748
+ currencyIso: 'GBP',
1749
+ value: 34,
1750
+ priceType: 'FROM',
1751
+ formattedValue: '£34',
1752
+ formattedPriceWithoutCurrencySymbol: '34',
1753
+ currencySymbol: '£',
1754
+ vatRatePercentage: 20,
1755
+ valueInPence: 3400,
1756
+ },
1757
+ displayPriceExclusiveVat: {
1758
+ currencyIso: 'GBP',
1759
+ value: 395,
1760
+ priceType: 'FROM',
1761
+ formattedValue: '£395',
1762
+ formattedPriceWithoutCurrencySymbol: '395',
1763
+ currencySymbol: '£',
1764
+ valueInPence: 39500,
1765
+ },
1766
+ },
1767
+ variantProducts: [
1768
+ {
1769
+ images: [
1770
+ {
1771
+ imageType: 'PRIMARY',
1772
+ format: 'product',
1773
+ url: 'https://placehold.co/154x154?text=variant-product-1',
1774
+ },
1775
+ ],
1776
+ code: '100320',
1777
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 8',
1778
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
1779
+ description:
1780
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
1781
+ purchasable: true,
1782
+ stock: {
1783
+ stockLevelStatus: {
1784
+ code: 'inStock',
1785
+ type: 'StockLevelStatus',
1786
+ },
1787
+ makeUnavailable: false,
1788
+ originalStockLevelStatus: {
1789
+ code: 'outOfStock',
1790
+ type: 'StockLevelStatus',
1791
+ },
1792
+ exists: false,
1793
+ },
1794
+ availableForPickup: true,
1795
+ summary: '',
1796
+ price: {
1797
+ currencyIso: 'GBP',
1798
+ value: 34,
1799
+ priceType: 'BUY',
1800
+ formattedValue: '£34',
1801
+ formattedPriceWithoutCurrencySymbol: '34',
1802
+ currencySymbol: '£',
1803
+ vatRatePercentage: 20,
1804
+ valueInPence: 3400,
1805
+ },
1806
+ baseProduct: '9000275478',
1807
+ categories: [
1808
+ {
1809
+ code: '1000431',
1810
+ name: 'Footwear',
1811
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
1812
+ sequence: 0,
1813
+ },
1814
+ {
1815
+ code: '1000444',
1816
+ name: 'Scruffs',
1817
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
1818
+ sequence: 0,
1819
+ },
1820
+ {
1821
+ code: '1000446',
1822
+ name: 'Hardcore',
1823
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
1824
+ sequence: 0,
1825
+ },
1826
+ ],
1827
+ classifications: [
1828
+ {
1829
+ code: '1000486',
1830
+ name: 'Boots',
1831
+ features: [
1832
+ {
1833
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
1834
+ name: 'Size',
1835
+ range: false,
1836
+ comparable: true,
1837
+ featureValues: [
1838
+ {
1839
+ value: '8 size long very long text important!',
1840
+ },
1841
+ ],
1842
+ },
1843
+ {
1844
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
1845
+ name: 'Material',
1846
+ range: false,
1847
+ comparable: true,
1848
+ featureValues: [
1849
+ {
1850
+ value: 'Aluminium',
1851
+ },
1852
+ ],
1853
+ },
1854
+ ],
1855
+ },
1856
+ {
1857
+ code: '2',
1858
+ name: 'UK Legal',
1859
+ features: [
1860
+ {
1861
+ code: 'CommonSupplierWebClassification/1.0/2.4',
1862
+ name: 'Age Restriction',
1863
+ range: false,
1864
+ comparable: true,
1865
+ featureValues: [
1866
+ {
1867
+ value: 'No',
1868
+ },
1869
+ ],
1870
+ },
1871
+ ],
1872
+ },
1873
+ ],
1874
+ potentialPromotions: [],
1875
+ variantOptions: [
1876
+ {
1877
+ code: '100320',
1878
+ stock: {
1879
+ stockLevelStatus: {
1880
+ code: 'inStock',
1881
+ type: 'StockLevelStatus',
1882
+ },
1883
+ stockLevel: -1,
1884
+ makeUnavailable: false,
1885
+ exists: false,
1886
+ },
1887
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
1888
+ variantOptionQualifiers: [
1889
+ {
1890
+ qualifier: 'size',
1891
+ name: 'Size',
1892
+ value: '8 size long very long text important!',
1893
+ },
1894
+ ],
1895
+ availabilityRestriction: 'NO_RESTRICTIONS',
1896
+ },
1897
+ {
1898
+ code: '100321',
1899
+ stock: {
1900
+ stockLevelStatus: {
1901
+ code: 'inStock',
1902
+ type: 'StockLevelStatus',
1903
+ },
1904
+ stockLevel: -1,
1905
+ makeUnavailable: false,
1906
+ exists: false,
1907
+ },
1908
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
1909
+ variantOptionQualifiers: [
1910
+ {
1911
+ qualifier: 'size',
1912
+ name: 'Size',
1913
+ value: '9',
1914
+ },
1915
+ ],
1916
+ availabilityRestriction: 'NO_RESTRICTIONS',
1917
+ },
1918
+ ],
1919
+ baseOptions: [],
1920
+ volumePrices: [],
1921
+ configurable: false,
1922
+ imageSetId: 'missing-product',
1923
+ fulfilmentType: 'IN_STORE_ONLY',
1924
+ featuresAndBenefits: [
1925
+ 'Steel toe cap',
1926
+ 'Steel anti-penetration midsole',
1927
+ 'Anti static',
1928
+ 'Water resistant',
1929
+ 'Mock fur lining',
1930
+ 'Pull up loops',
1931
+ 'Leather upper',
1932
+ ],
1933
+ noScriptProductImageUrl:
1934
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
1935
+ sellOnly: false,
1936
+ externalAverageRating: 0,
1937
+ externalReviewCount: 0,
1938
+ priceInclusiveVat: {
1939
+ currencyIso: 'GBP',
1940
+ value: 34,
1941
+ priceType: 'BUY',
1942
+ formattedValue: '£34',
1943
+ formattedPriceWithoutCurrencySymbol: '34',
1944
+ currencySymbol: '£',
1945
+ vatRatePercentage: 20,
1946
+ valueInPence: 3400,
1947
+ },
1948
+ priceExclusiveVat: {
1949
+ currencyIso: 'GBP',
1950
+ value: 28.33,
1951
+ priceType: 'BUY',
1952
+ formattedValue: '£28.33',
1953
+ formattedPriceWithoutCurrencySymbol: '28.33',
1954
+ currencySymbol: '£',
1955
+ valueInPence: 2833,
1956
+ },
1957
+ downStreamData: {
1958
+ fulfillmentType: 'IN_STORE_ONLY',
1959
+ },
1960
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
1961
+ hasDataSheets: false,
1962
+ coshhSheetList: [],
1963
+ dopSheetList: [],
1964
+ epdSheetList: [],
1965
+ gilSheetList: [],
1966
+ techSheetList: [],
1967
+ fulfillmentAttributes: {
1968
+ type: 'IN_STORE_ONLY',
1969
+ bigAndBulky: false,
1970
+ supplierDelivered: false,
1971
+ vision: false,
1972
+ assumedAlwaysInStock: true,
1973
+ webOnly: false,
1974
+ },
1975
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
1976
+ productType: 'MasterProductModel',
1977
+ variantAttributeName: 'Size',
1978
+ gpid: '1100484266',
1979
+ isBaseProduct: false,
1980
+ scene7FlyoutViewerISCommand: '',
1981
+ availableForShoppingList: false,
1982
+ installationDetails: {
1983
+ packCoverage: 0,
1984
+ pricePerPack: 34,
1985
+ pricePerSQM: {
1986
+ currencyIso: 'GBP',
1987
+ value: 0,
1988
+ priceType: 'BUY',
1989
+ formattedValue: '£0',
1990
+ formattedPriceWithoutCurrencySymbol: '0',
1991
+ currencySymbol: '£',
1992
+ valueInPence: 0,
1993
+ },
1994
+ pricePerSQMExcVat: {
1995
+ currencyIso: 'GBP',
1996
+ value: 0,
1997
+ priceType: 'BUY',
1998
+ formattedValue: '£0',
1999
+ formattedPriceWithoutCurrencySymbol: '0',
2000
+ currencySymbol: '£',
2001
+ valueInPence: 0,
2002
+ },
2003
+ },
2004
+ tileCalculationAvailable: false,
2005
+ flooringCalculationAvailable: false,
2006
+ installationProduct: false,
2007
+ availabilityRestriction: 'NO_RESTRICTIONS',
2008
+ availableForBigWinsCncOnly: false,
2009
+ availableForBigWinsStockOnly: false,
2010
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
2011
+ volumePricesExclusiveVat: [],
2012
+ isAddedToFavourites: false,
2013
+ displayPrice: {
2014
+ currencyIso: 'GBP',
2015
+ value: 34,
2016
+ priceType: 'BUY',
2017
+ formattedValue: '£34',
2018
+ formattedPriceWithoutCurrencySymbol: '34',
2019
+ currencySymbol: '£',
2020
+ vatRatePercentage: 20,
2021
+ valueInPence: 3400,
2022
+ },
2023
+ displayPriceExclusiveVat: {
2024
+ currencyIso: 'GBP',
2025
+ value: 28.33,
2026
+ priceType: 'BUY',
2027
+ formattedValue: '£28.33',
2028
+ formattedPriceWithoutCurrencySymbol: '28.33',
2029
+ currencySymbol: '£',
2030
+ valueInPence: 2833,
2031
+ },
2032
+ displayVolumePrices: [],
2033
+ displayVolumePricesExclusiveVat: [],
2034
+ },
2035
+ {
2036
+ images: [
2037
+ {
2038
+ imageType: 'PRIMARY',
2039
+ format: 'product',
2040
+ url: 'https://placehold.co/154x154?text=variant-product-2',
2041
+ },
2042
+ ],
2043
+ code: '100321',
2044
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 9',
2045
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
2046
+ description:
2047
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
2048
+ purchasable: true,
2049
+ stock: {
2050
+ stockLevelStatus: {
2051
+ code: 'inStock',
2052
+ type: 'StockLevelStatus',
2053
+ },
2054
+ makeUnavailable: false,
2055
+ originalStockLevelStatus: {
2056
+ code: 'outOfStock',
2057
+ type: 'StockLevelStatus',
2058
+ },
2059
+ exists: false,
2060
+ },
2061
+ availableForPickup: true,
2062
+ summary: '',
2063
+ price: {
2064
+ currencyIso: 'GBP',
2065
+ value: 38,
2066
+ priceType: 'BUY',
2067
+ formattedValue: '£38',
2068
+ formattedPriceWithoutCurrencySymbol: '38',
2069
+ currencySymbol: '£',
2070
+ vatRatePercentage: 20,
2071
+ valueInPence: 3400,
2072
+ },
2073
+ baseProduct: '9000275478',
2074
+ categories: [
2075
+ {
2076
+ code: '1000431',
2077
+ name: 'Footwear',
2078
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
2079
+ sequence: 0,
2080
+ },
2081
+ {
2082
+ code: '1000444',
2083
+ name: 'Scruffs',
2084
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
2085
+ sequence: 0,
2086
+ },
2087
+ {
2088
+ code: '1000446',
2089
+ name: 'Hardcore',
2090
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
2091
+ sequence: 0,
2092
+ },
2093
+ ],
2094
+ classifications: [
2095
+ {
2096
+ code: '1000486',
2097
+ name: 'Boots',
2098
+ features: [
2099
+ {
2100
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
2101
+ name: 'Size',
2102
+ range: false,
2103
+ comparable: true,
2104
+ featureValues: [
2105
+ {
2106
+ value: '9',
2107
+ },
2108
+ ],
2109
+ },
2110
+ {
2111
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
2112
+ name: 'Material',
2113
+ range: false,
2114
+ comparable: true,
2115
+ featureValues: [
2116
+ {
2117
+ value: 'Aluminium',
2118
+ },
2119
+ ],
2120
+ },
2121
+ ],
2122
+ },
2123
+ {
2124
+ code: '2',
2125
+ name: 'UK Legal',
2126
+ features: [
2127
+ {
2128
+ code: 'CommonSupplierWebClassification/1.0/2.4',
2129
+ name: 'Age Restriction',
2130
+ range: false,
2131
+ comparable: true,
2132
+ featureValues: [
2133
+ {
2134
+ value: 'No',
2135
+ },
2136
+ ],
2137
+ },
2138
+ ],
2139
+ },
2140
+ ],
2141
+ potentialPromotions: [],
2142
+ variantOptions: [
2143
+ {
2144
+ code: '100320',
2145
+ stock: {
2146
+ stockLevelStatus: {
2147
+ code: 'inStock',
2148
+ type: 'StockLevelStatus',
2149
+ },
2150
+ stockLevel: -1,
2151
+ makeUnavailable: false,
2152
+ exists: false,
2153
+ },
2154
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
2155
+ variantOptionQualifiers: [
2156
+ {
2157
+ qualifier: 'size',
2158
+ name: 'Size',
2159
+ value: '8 size long very long text important!',
2160
+ },
2161
+ ],
2162
+ availabilityRestriction: 'NO_RESTRICTIONS',
2163
+ },
2164
+ {
2165
+ code: '100321',
2166
+ stock: {
2167
+ stockLevelStatus: {
2168
+ code: 'inStock',
2169
+ type: 'StockLevelStatus',
2170
+ },
2171
+ stockLevel: -1,
2172
+ makeUnavailable: false,
2173
+ exists: false,
2174
+ },
2175
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
2176
+ variantOptionQualifiers: [
2177
+ {
2178
+ qualifier: 'size',
2179
+ name: 'Size',
2180
+ value: '9',
2181
+ },
2182
+ ],
2183
+ availabilityRestriction: 'NO_RESTRICTIONS',
2184
+ },
2185
+ ],
2186
+ baseOptions: [],
2187
+ volumePrices: [],
2188
+ configurable: false,
2189
+ imageSetId: 'missing-product',
2190
+ fulfilmentType: 'IN_STORE_ONLY',
2191
+ featuresAndBenefits: [
2192
+ 'Steel toe cap',
2193
+ 'Steel anti-penetration midsole',
2194
+ 'Anti static',
2195
+ 'Water resistant',
2196
+ 'Mock fur lining',
2197
+ 'Pull up loops',
2198
+ 'Leather upper',
2199
+ ],
2200
+ noScriptProductImageUrl:
2201
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
2202
+ sellOnly: false,
2203
+ externalAverageRating: 0,
2204
+ externalReviewCount: 0,
2205
+ priceInclusiveVat: {
2206
+ currencyIso: 'GBP',
2207
+ value: 34,
2208
+ priceType: 'BUY',
2209
+ formattedValue: '£34',
2210
+ formattedPriceWithoutCurrencySymbol: '34',
2211
+ currencySymbol: '£',
2212
+ vatRatePercentage: 20,
2213
+ valueInPence: 3400,
2214
+ },
2215
+ priceExclusiveVat: {
2216
+ currencyIso: 'GBP',
2217
+ value: 28.33,
2218
+ priceType: 'BUY',
2219
+ formattedValue: '£28.33',
2220
+ formattedPriceWithoutCurrencySymbol: '28.33',
2221
+ currencySymbol: '£',
2222
+ valueInPence: 2833,
2223
+ },
2224
+ downStreamData: {
2225
+ fulfillmentType: 'IN_STORE_ONLY',
2226
+ },
2227
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
2228
+ hasDataSheets: false,
2229
+ coshhSheetList: [],
2230
+ dopSheetList: [],
2231
+ epdSheetList: [],
2232
+ gilSheetList: [],
2233
+ techSheetList: [],
2234
+ fulfillmentAttributes: {
2235
+ type: 'IN_STORE_ONLY',
2236
+ bigAndBulky: false,
2237
+ supplierDelivered: false,
2238
+ vision: false,
2239
+ assumedAlwaysInStock: true,
2240
+ webOnly: false,
2241
+ },
2242
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
2243
+ productType: 'MasterProductModel',
2244
+ variantAttributeName: 'Size',
2245
+ gpid: '1100484267',
2246
+ isBaseProduct: false,
2247
+ scene7FlyoutViewerISCommand: '',
2248
+ availableForShoppingList: false,
2249
+ installationDetails: {
2250
+ packCoverage: 0,
2251
+ pricePerPack: 34,
2252
+ pricePerSQM: {
2253
+ currencyIso: 'GBP',
2254
+ value: 0,
2255
+ priceType: 'BUY',
2256
+ formattedValue: '£0',
2257
+ formattedPriceWithoutCurrencySymbol: '0',
2258
+ currencySymbol: '£',
2259
+ valueInPence: 0,
2260
+ },
2261
+ pricePerSQMExcVat: {
2262
+ currencyIso: 'GBP',
2263
+ value: 0,
2264
+ priceType: 'BUY',
2265
+ formattedValue: '£0',
2266
+ formattedPriceWithoutCurrencySymbol: '0',
2267
+ currencySymbol: '£',
2268
+ valueInPence: 0,
2269
+ },
2270
+ },
2271
+ tileCalculationAvailable: false,
2272
+ flooringCalculationAvailable: false,
2273
+ installationProduct: false,
2274
+ availabilityRestriction: 'NO_RESTRICTIONS',
2275
+ availableForBigWinsCncOnly: false,
2276
+ availableForBigWinsStockOnly: false,
2277
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
2278
+ volumePricesExclusiveVat: [],
2279
+ isAddedToFavourites: false,
2280
+ displayPrice: {
2281
+ currencyIso: 'GBP',
2282
+ value: 34,
2283
+ priceType: 'BUY',
2284
+ formattedValue: '£34',
2285
+ formattedPriceWithoutCurrencySymbol: '34',
2286
+ currencySymbol: '£',
2287
+ vatRatePercentage: 20,
2288
+ valueInPence: 3400,
2289
+ },
2290
+ displayPriceExclusiveVat: {
2291
+ currencyIso: 'GBP',
2292
+ value: 28.33,
2293
+ priceType: 'BUY',
2294
+ formattedValue: '£28.33',
2295
+ formattedPriceWithoutCurrencySymbol: '28.33',
2296
+ currencySymbol: '£',
2297
+ valueInPence: 2833,
2298
+ },
2299
+ displayVolumePrices: [],
2300
+ displayVolumePricesExclusiveVat: [],
2301
+ },
2302
+ ],
2303
+ },
2304
+ {
2305
+ baseProduct: {
2306
+ code: '9000275478',
2307
+ name: 'LPD Internal Mexicano Pair Clear Glazed Unfinished Oak Door - 1981mm',
2308
+ url: '/LPD-Internal-Mexicano-Pair-Clear-Glazed-Unfinished-Oak-Door---1981mm/p/9000275478',
2309
+ purchasable: true,
2310
+ stock: {
2311
+ makeUnavailable: false,
2312
+ originalStockLevelStatus: {
2313
+ code: 'out of stock',
2314
+ type: 'StockLevelStatus',
2315
+ },
2316
+ exists: false,
2317
+ },
2318
+ availableForPickup: true,
2319
+ price: {
2320
+ currencyIso: 'GBP',
2321
+ value: 34,
2322
+ priceType: 'FROM',
2323
+ formattedValue: '£34',
2324
+ formattedPriceWithoutCurrencySymbol: '34',
2325
+ currencySymbol: '£',
2326
+ vatRatePercentage: 20,
2327
+ valueInPence: 3400,
2328
+ },
2329
+ images: [
2330
+ {
2331
+ imageType: 'PRIMARY',
2332
+ format: 'product',
2333
+ url: 'https://placehold.co/154x154?text=bloomreach-product-3',
2334
+ },
2335
+ ],
2336
+ variantOptions: [
2337
+ {
2338
+ code: '100320',
2339
+ stock: {
2340
+ stockLevelStatus: {
2341
+ code: 'inStock',
2342
+ type: 'StockLevelStatus',
2343
+ },
2344
+ stockLevel: -1,
2345
+ makeUnavailable: false,
2346
+ exists: false,
2347
+ },
2348
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
2349
+ variantOptionQualifiers: [
2350
+ {
2351
+ qualifier: 'size',
2352
+ name: 'Size',
2353
+ value: '8 size long very long text important!',
2354
+ },
2355
+ ],
2356
+ availabilityRestriction: 'NO_RESTRICTIONS',
2357
+ },
2358
+ {
2359
+ code: '100321',
2360
+ stock: {
2361
+ stockLevelStatus: {
2362
+ code: 'inStock',
2363
+ type: 'StockLevelStatus',
2364
+ },
2365
+ stockLevel: -1,
2366
+ makeUnavailable: false,
2367
+ exists: false,
2368
+ },
2369
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
2370
+ variantOptionQualifiers: [
2371
+ {
2372
+ qualifier: 'size',
2373
+ name: 'Size',
2374
+ value: '9',
2375
+ },
2376
+ ],
2377
+ availabilityRestriction: 'NO_RESTRICTIONS',
2378
+ },
2379
+ ],
2380
+ fulfilmentType: 'IN_STORE_ONLY',
2381
+ externalAverageRating: 0,
2382
+ externalReviewCount: 0,
2383
+ priceExclusiveVat: {
2384
+ currencyIso: 'GBP',
2385
+ value: 395,
2386
+ priceType: 'FROM',
2387
+ formattedValue: '£395',
2388
+ formattedPriceWithoutCurrencySymbol: '395',
2389
+ currencySymbol: '£',
2390
+ valueInPence: 39500,
2391
+ },
2392
+ categoryPath: 'Products/Doors & Windows/Internal Doors/Oak Internal Doors',
2393
+ fulfillmentAttributes: {
2394
+ type: 'IN_STORE_ONLY',
2395
+ bigAndBulky: false,
2396
+ supplierDelivered: false,
2397
+ vision: false,
2398
+ assumedAlwaysInStock: true,
2399
+ webOnly: false,
2400
+ },
2401
+ variantAttributeName: 'Size',
2402
+ isBaseProduct: true,
2403
+ brandName: 'Lpd doors',
2404
+ availableForShoppingList: false,
2405
+ tileCalculationAvailable: false,
2406
+ flooringCalculationAvailable: false,
2407
+ installationProduct: false,
2408
+ availableForBigWinsCncOnly: false,
2409
+ availableForBigWinsStockOnly: false,
2410
+ isAddedToFavourites: false,
2411
+ displayPrice: {
2412
+ currencyIso: 'GBP',
2413
+ value: 34,
2414
+ priceType: 'FROM',
2415
+ formattedValue: '£34',
2416
+ formattedPriceWithoutCurrencySymbol: '34',
2417
+ currencySymbol: '£',
2418
+ vatRatePercentage: 20,
2419
+ valueInPence: 3400,
2420
+ },
2421
+ displayPriceExclusiveVat: {
2422
+ currencyIso: 'GBP',
2423
+ value: 395,
2424
+ priceType: 'FROM',
2425
+ formattedValue: '£395',
2426
+ formattedPriceWithoutCurrencySymbol: '395',
2427
+ currencySymbol: '£',
2428
+ valueInPence: 39500,
2429
+ },
2430
+ },
2431
+ variantProducts: [
2432
+ {
2433
+ images: [
2434
+ {
2435
+ imageType: 'PRIMARY',
2436
+ format: 'product',
2437
+ url: 'https://placehold.co/154x154?text=variant-product-1',
2438
+ },
2439
+ ],
2440
+ code: '100320',
2441
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 8',
2442
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
2443
+ description:
2444
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
2445
+ purchasable: true,
2446
+ stock: {
2447
+ stockLevelStatus: {
2448
+ code: 'inStock',
2449
+ type: 'StockLevelStatus',
2450
+ },
2451
+ makeUnavailable: false,
2452
+ originalStockLevelStatus: {
2453
+ code: 'outOfStock',
2454
+ type: 'StockLevelStatus',
2455
+ },
2456
+ exists: false,
2457
+ },
2458
+ availableForPickup: true,
2459
+ summary: '',
2460
+ price: {
2461
+ currencyIso: 'GBP',
2462
+ value: 34,
2463
+ priceType: 'BUY',
2464
+ formattedValue: '£34',
2465
+ formattedPriceWithoutCurrencySymbol: '34',
2466
+ currencySymbol: '£',
2467
+ vatRatePercentage: 20,
2468
+ valueInPence: 3400,
2469
+ },
2470
+ baseProduct: '9000275478',
2471
+ categories: [
2472
+ {
2473
+ code: '1000431',
2474
+ name: 'Footwear',
2475
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
2476
+ sequence: 0,
2477
+ },
2478
+ {
2479
+ code: '1000444',
2480
+ name: 'Scruffs',
2481
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
2482
+ sequence: 0,
2483
+ },
2484
+ {
2485
+ code: '1000446',
2486
+ name: 'Hardcore',
2487
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
2488
+ sequence: 0,
2489
+ },
2490
+ ],
2491
+ classifications: [
2492
+ {
2493
+ code: '1000486',
2494
+ name: 'Boots',
2495
+ features: [
2496
+ {
2497
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
2498
+ name: 'Size',
2499
+ range: false,
2500
+ comparable: true,
2501
+ featureValues: [
2502
+ {
2503
+ value: '8 size long very long text important!',
2504
+ },
2505
+ ],
2506
+ },
2507
+ {
2508
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
2509
+ name: 'Material',
2510
+ range: false,
2511
+ comparable: true,
2512
+ featureValues: [
2513
+ {
2514
+ value: 'Aluminium',
2515
+ },
2516
+ ],
2517
+ },
2518
+ ],
2519
+ },
2520
+ {
2521
+ code: '2',
2522
+ name: 'UK Legal',
2523
+ features: [
2524
+ {
2525
+ code: 'CommonSupplierWebClassification/1.0/2.4',
2526
+ name: 'Age Restriction',
2527
+ range: false,
2528
+ comparable: true,
2529
+ featureValues: [
2530
+ {
2531
+ value: 'No',
2532
+ },
2533
+ ],
2534
+ },
2535
+ ],
2536
+ },
2537
+ ],
2538
+ potentialPromotions: [],
2539
+ variantOptions: [
2540
+ {
2541
+ code: '100320',
2542
+ stock: {
2543
+ stockLevelStatus: {
2544
+ code: 'inStock',
2545
+ type: 'StockLevelStatus',
2546
+ },
2547
+ stockLevel: -1,
2548
+ makeUnavailable: false,
2549
+ exists: false,
2550
+ },
2551
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
2552
+ variantOptionQualifiers: [
2553
+ {
2554
+ qualifier: 'size',
2555
+ name: 'Size',
2556
+ value: '8 size long very long text important!',
2557
+ },
2558
+ ],
2559
+ availabilityRestriction: 'NO_RESTRICTIONS',
2560
+ },
2561
+ {
2562
+ code: '100321',
2563
+ stock: {
2564
+ stockLevelStatus: {
2565
+ code: 'inStock',
2566
+ type: 'StockLevelStatus',
2567
+ },
2568
+ stockLevel: -1,
2569
+ makeUnavailable: false,
2570
+ exists: false,
2571
+ },
2572
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
2573
+ variantOptionQualifiers: [
2574
+ {
2575
+ qualifier: 'size',
2576
+ name: 'Size',
2577
+ value: '9',
2578
+ },
2579
+ ],
2580
+ availabilityRestriction: 'NO_RESTRICTIONS',
2581
+ },
2582
+ ],
2583
+ baseOptions: [],
2584
+ volumePrices: [],
2585
+ configurable: false,
2586
+ imageSetId: 'missing-product',
2587
+ fulfilmentType: 'IN_STORE_ONLY',
2588
+ featuresAndBenefits: [
2589
+ 'Steel toe cap',
2590
+ 'Steel anti-penetration midsole',
2591
+ 'Anti static',
2592
+ 'Water resistant',
2593
+ 'Mock fur lining',
2594
+ 'Pull up loops',
2595
+ 'Leather upper',
2596
+ ],
2597
+ noScriptProductImageUrl:
2598
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
2599
+ sellOnly: false,
2600
+ externalAverageRating: 0,
2601
+ externalReviewCount: 0,
2602
+ priceInclusiveVat: {
2603
+ currencyIso: 'GBP',
2604
+ value: 34,
2605
+ priceType: 'BUY',
2606
+ formattedValue: '£34',
2607
+ formattedPriceWithoutCurrencySymbol: '34',
2608
+ currencySymbol: '£',
2609
+ vatRatePercentage: 20,
2610
+ valueInPence: 3400,
2611
+ },
2612
+ priceExclusiveVat: {
2613
+ currencyIso: 'GBP',
2614
+ value: 28.33,
2615
+ priceType: 'BUY',
2616
+ formattedValue: '£28.33',
2617
+ formattedPriceWithoutCurrencySymbol: '28.33',
2618
+ currencySymbol: '£',
2619
+ valueInPence: 2833,
2620
+ },
2621
+ downStreamData: {
2622
+ fulfillmentType: 'IN_STORE_ONLY',
2623
+ },
2624
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
2625
+ hasDataSheets: false,
2626
+ coshhSheetList: [],
2627
+ dopSheetList: [],
2628
+ epdSheetList: [],
2629
+ gilSheetList: [],
2630
+ techSheetList: [],
2631
+ fulfillmentAttributes: {
2632
+ type: 'IN_STORE_ONLY',
2633
+ bigAndBulky: false,
2634
+ supplierDelivered: false,
2635
+ vision: false,
2636
+ assumedAlwaysInStock: true,
2637
+ webOnly: false,
2638
+ },
2639
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
2640
+ productType: 'MasterProductModel',
2641
+ variantAttributeName: 'Size',
2642
+ gpid: '1100484266',
2643
+ isBaseProduct: false,
2644
+ scene7FlyoutViewerISCommand: '',
2645
+ availableForShoppingList: false,
2646
+ installationDetails: {
2647
+ packCoverage: 0,
2648
+ pricePerPack: 34,
2649
+ pricePerSQM: {
2650
+ currencyIso: 'GBP',
2651
+ value: 0,
2652
+ priceType: 'BUY',
2653
+ formattedValue: '£0',
2654
+ formattedPriceWithoutCurrencySymbol: '0',
2655
+ currencySymbol: '£',
2656
+ valueInPence: 0,
2657
+ },
2658
+ pricePerSQMExcVat: {
2659
+ currencyIso: 'GBP',
2660
+ value: 0,
2661
+ priceType: 'BUY',
2662
+ formattedValue: '£0',
2663
+ formattedPriceWithoutCurrencySymbol: '0',
2664
+ currencySymbol: '£',
2665
+ valueInPence: 0,
2666
+ },
2667
+ },
2668
+ tileCalculationAvailable: false,
2669
+ flooringCalculationAvailable: false,
2670
+ installationProduct: false,
2671
+ availabilityRestriction: 'NO_RESTRICTIONS',
2672
+ availableForBigWinsCncOnly: false,
2673
+ availableForBigWinsStockOnly: false,
2674
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
2675
+ volumePricesExclusiveVat: [],
2676
+ isAddedToFavourites: false,
2677
+ displayPrice: {
2678
+ currencyIso: 'GBP',
2679
+ value: 34,
2680
+ priceType: 'BUY',
2681
+ formattedValue: '£34',
2682
+ formattedPriceWithoutCurrencySymbol: '34',
2683
+ currencySymbol: '£',
2684
+ vatRatePercentage: 20,
2685
+ valueInPence: 3400,
2686
+ },
2687
+ displayPriceExclusiveVat: {
2688
+ currencyIso: 'GBP',
2689
+ value: 28.33,
2690
+ priceType: 'BUY',
2691
+ formattedValue: '£28.33',
2692
+ formattedPriceWithoutCurrencySymbol: '28.33',
2693
+ currencySymbol: '£',
2694
+ valueInPence: 2833,
2695
+ },
2696
+ displayVolumePrices: [],
2697
+ displayVolumePricesExclusiveVat: [],
2698
+ },
2699
+ {
2700
+ images: [
2701
+ {
2702
+ imageType: 'PRIMARY',
2703
+ format: 'product',
2704
+ url: 'https://placehold.co/154x154?text=variant-product-2',
2705
+ },
2706
+ ],
2707
+ code: '100321',
2708
+ name: 'Dickies Dixon Lined Safety Rigger Boot (IN_STORE_ONLY) - Tan Size 9',
2709
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
2710
+ description:
2711
+ 'Great value for money! Classic mid-ankle safety boot with a flexible sole and padded tongue & collar for comfort.',
2712
+ purchasable: true,
2713
+ stock: {
2714
+ stockLevelStatus: {
2715
+ code: 'inStock',
2716
+ type: 'StockLevelStatus',
2717
+ },
2718
+ makeUnavailable: false,
2719
+ originalStockLevelStatus: {
2720
+ code: 'outOfStock',
2721
+ type: 'StockLevelStatus',
2722
+ },
2723
+ exists: false,
2724
+ },
2725
+ availableForPickup: true,
2726
+ summary: '',
2727
+ price: {
2728
+ currencyIso: 'GBP',
2729
+ value: 38,
2730
+ priceType: 'BUY',
2731
+ formattedValue: '£38',
2732
+ formattedPriceWithoutCurrencySymbol: '38',
2733
+ currencySymbol: '£',
2734
+ vatRatePercentage: 20,
2735
+ valueInPence: 3400,
2736
+ },
2737
+ baseProduct: '9000275478',
2738
+ categories: [
2739
+ {
2740
+ code: '1000431',
2741
+ name: 'Footwear',
2742
+ url: '/Products/Tools+Workwear/Workwear/Footwear/c/1000431',
2743
+ sequence: 0,
2744
+ },
2745
+ {
2746
+ code: '1000444',
2747
+ name: 'Scruffs',
2748
+ url: '/Products/Tools+Workwear/Workwear/Scruffs/c/1000444',
2749
+ sequence: 0,
2750
+ },
2751
+ {
2752
+ code: '1000446',
2753
+ name: 'Hardcore',
2754
+ url: '/Products/Tools+Workwear/Workwear/Hardcore/c/1000446',
2755
+ sequence: 0,
2756
+ },
2757
+ ],
2758
+ classifications: [
2759
+ {
2760
+ code: '1000486',
2761
+ name: 'Boots',
2762
+ features: [
2763
+ {
2764
+ code: 'GroupMasterClassification/1.0/1000486.1000186',
2765
+ name: 'Size',
2766
+ range: false,
2767
+ comparable: true,
2768
+ featureValues: [
2769
+ {
2770
+ value: '9',
2771
+ },
2772
+ ],
2773
+ },
2774
+ {
2775
+ code: 'GroupMasterClassification/1.0/1000486.1000918',
2776
+ name: 'Material',
2777
+ range: false,
2778
+ comparable: true,
2779
+ featureValues: [
2780
+ {
2781
+ value: 'Aluminium',
2782
+ },
2783
+ ],
2784
+ },
2785
+ ],
2786
+ },
2787
+ {
2788
+ code: '2',
2789
+ name: 'UK Legal',
2790
+ features: [
2791
+ {
2792
+ code: 'CommonSupplierWebClassification/1.0/2.4',
2793
+ name: 'Age Restriction',
2794
+ range: false,
2795
+ comparable: true,
2796
+ featureValues: [
2797
+ {
2798
+ value: 'No',
2799
+ },
2800
+ ],
2801
+ },
2802
+ ],
2803
+ },
2804
+ ],
2805
+ potentialPromotions: [],
2806
+ variantOptions: [
2807
+ {
2808
+ code: '100320',
2809
+ stock: {
2810
+ stockLevelStatus: {
2811
+ code: 'inStock',
2812
+ type: 'StockLevelStatus',
2813
+ },
2814
+ stockLevel: -1,
2815
+ makeUnavailable: false,
2816
+ exists: false,
2817
+ },
2818
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-8/p/100320',
2819
+ variantOptionQualifiers: [
2820
+ {
2821
+ qualifier: 'size',
2822
+ name: 'Size',
2823
+ value: '8 size long very long text important!',
2824
+ },
2825
+ ],
2826
+ availabilityRestriction: 'NO_RESTRICTIONS',
2827
+ },
2828
+ {
2829
+ code: '100321',
2830
+ stock: {
2831
+ stockLevelStatus: {
2832
+ code: 'inStock',
2833
+ type: 'StockLevelStatus',
2834
+ },
2835
+ stockLevel: -1,
2836
+ makeUnavailable: false,
2837
+ exists: false,
2838
+ },
2839
+ url: '/Dickies-Dixon-Lined-Safety-Rigger-Boot-IN-STORE-ONLY---Tan-Size-9/p/100321',
2840
+ variantOptionQualifiers: [
2841
+ {
2842
+ qualifier: 'size',
2843
+ name: 'Size',
2844
+ value: '9',
2845
+ },
2846
+ ],
2847
+ availabilityRestriction: 'NO_RESTRICTIONS',
2848
+ },
2849
+ ],
2850
+ baseOptions: [],
2851
+ volumePrices: [],
2852
+ configurable: false,
2853
+ imageSetId: 'missing-product',
2854
+ fulfilmentType: 'IN_STORE_ONLY',
2855
+ featuresAndBenefits: [
2856
+ 'Steel toe cap',
2857
+ 'Steel anti-penetration midsole',
2858
+ 'Anti static',
2859
+ 'Water resistant',
2860
+ 'Mock fur lining',
2861
+ 'Pull up loops',
2862
+ 'Leather upper',
2863
+ ],
2864
+ noScriptProductImageUrl:
2865
+ 'https://media.wickes.co.uk/is/image/wickes/2018-Wickes-Missing-Product-650x650',
2866
+ sellOnly: false,
2867
+ externalAverageRating: 0,
2868
+ externalReviewCount: 0,
2869
+ priceInclusiveVat: {
2870
+ currencyIso: 'GBP',
2871
+ value: 34,
2872
+ priceType: 'BUY',
2873
+ formattedValue: '£34',
2874
+ formattedPriceWithoutCurrencySymbol: '34',
2875
+ currencySymbol: '£',
2876
+ vatRatePercentage: 20,
2877
+ valueInPence: 3400,
2878
+ },
2879
+ priceExclusiveVat: {
2880
+ currencyIso: 'GBP',
2881
+ value: 28.33,
2882
+ priceType: 'BUY',
2883
+ formattedValue: '£28.33',
2884
+ formattedPriceWithoutCurrencySymbol: '28.33',
2885
+ currencySymbol: '£',
2886
+ valueInPence: 2833,
2887
+ },
2888
+ downStreamData: {
2889
+ fulfillmentType: 'IN_STORE_ONLY',
2890
+ },
2891
+ categoryPath: 'Products/Tools & Workwear/Workwear/Footwear',
2892
+ hasDataSheets: false,
2893
+ coshhSheetList: [],
2894
+ dopSheetList: [],
2895
+ epdSheetList: [],
2896
+ gilSheetList: [],
2897
+ techSheetList: [],
2898
+ fulfillmentAttributes: {
2899
+ type: 'IN_STORE_ONLY',
2900
+ bigAndBulky: false,
2901
+ supplierDelivered: false,
2902
+ vision: false,
2903
+ assumedAlwaysInStock: true,
2904
+ webOnly: false,
2905
+ },
2906
+ baseProductUrl: '/Scruffs-Hardcore-Scoria-Safety-Boot---Black/p/9000275478',
2907
+ productType: 'MasterProductModel',
2908
+ variantAttributeName: 'Size',
2909
+ gpid: '1100484267',
2910
+ isBaseProduct: false,
2911
+ scene7FlyoutViewerISCommand: '',
2912
+ availableForShoppingList: false,
2913
+ installationDetails: {
2914
+ packCoverage: 0,
2915
+ pricePerPack: 34,
2916
+ pricePerSQM: {
2917
+ currencyIso: 'GBP',
2918
+ value: 0,
2919
+ priceType: 'BUY',
2920
+ formattedValue: '£0',
2921
+ formattedPriceWithoutCurrencySymbol: '0',
2922
+ currencySymbol: '£',
2923
+ valueInPence: 0,
2924
+ },
2925
+ pricePerSQMExcVat: {
2926
+ currencyIso: 'GBP',
2927
+ value: 0,
2928
+ priceType: 'BUY',
2929
+ formattedValue: '£0',
2930
+ formattedPriceWithoutCurrencySymbol: '0',
2931
+ currencySymbol: '£',
2932
+ valueInPence: 0,
2933
+ },
2934
+ },
2935
+ tileCalculationAvailable: false,
2936
+ flooringCalculationAvailable: false,
2937
+ installationProduct: false,
2938
+ availabilityRestriction: 'NO_RESTRICTIONS',
2939
+ availableForBigWinsCncOnly: false,
2940
+ availableForBigWinsStockOnly: false,
2941
+ galleryIdentifiers: ['products/wickes/2018-Wickes-Missing-Product-650x650'],
2942
+ volumePricesExclusiveVat: [],
2943
+ isAddedToFavourites: false,
2944
+ displayPrice: {
2945
+ currencyIso: 'GBP',
2946
+ value: 34,
2947
+ priceType: 'BUY',
2948
+ formattedValue: '£34',
2949
+ formattedPriceWithoutCurrencySymbol: '34',
2950
+ currencySymbol: '£',
2951
+ vatRatePercentage: 20,
2952
+ valueInPence: 3400,
2953
+ },
2954
+ displayPriceExclusiveVat: {
2955
+ currencyIso: 'GBP',
2956
+ value: 28.33,
2957
+ priceType: 'BUY',
2958
+ formattedValue: '£28.33',
2959
+ formattedPriceWithoutCurrencySymbol: '28.33',
2960
+ currencySymbol: '£',
2961
+ valueInPence: 2833,
2962
+ },
2963
+ displayVolumePrices: [],
2964
+ displayVolumePricesExclusiveVat: [],
2965
+ },
2966
+ ],
2967
+ },
2968
+ ],
2969
+ completeYourProject2Recomendations: {
2970
+ recommendedProducts: [
2971
+ {
2972
+ baseProduct: {
2973
+ code: '406892',
2974
+ name: 'Rangemaster Classic Deluxe 90 Ceramic Range Cooker',
2975
+ url: '/Rangemaster-Classic-Deluxe-90-Ceramic-Range-Cooker/p/406892',
2976
+ purchasable: true,
2977
+ availableForPickup: true,
2978
+ potentialPromotions: [
2979
+ {
2980
+ code: 'Q1-2026-PLH-345178-10for10',
2981
+ promotionType: 'Rule Based Promotion',
2982
+ endDate: '2026-07-29T23:59:59.000+0000',
2983
+ description:
2984
+ '10 for £10 <p>Offer price equivalent to £1.00 per item</p>',
2985
+ couldFireMessages: [],
2986
+ firedMessages: [],
2987
+ priority: 2000,
2988
+ customAttributes: {
2989
+ overlayText: '15% off',
2990
+ displayOverlayText: '15% off',
2991
+ displayOverlayTextExclusiveVat: '15% off',
2992
+ overlayTextColor: 'gray',
2993
+ overlayBackgroundColor: 'yellow',
2994
+ showOverlayTextOnPlp: true,
2995
+ },
2996
+ },
2997
+ {
2998
+ code: 'Q1-2026-New-WK-2',
2999
+ promotionType: 'Rule Based Promotion',
3000
+ endDate: '2026-06-29T23:59:59.000+0000',
3001
+ couldFireMessages: [],
3002
+ firedMessages: [],
3003
+ priority: 800,
3004
+ customAttributes: {
3005
+ overlayText: 'New',
3006
+ displayOverlayText: 'New',
3007
+ displayOverlayTextExclusiveVat: 'New',
3008
+ overlayTextColor: 'white',
3009
+ overlayBackgroundColor: 'green',
3010
+ showOverlayTextOnPlp: true,
3011
+ },
3012
+ },
3013
+ ],
3014
+ price: {
3015
+ currencyIso: 'GBP',
3016
+ value: 200009,
3017
+ priceType: 'BUY',
3018
+ formattedValue: '£200,009.00',
3019
+ currencySymbol: '£',
3020
+ wasPrice: null,
3021
+ },
3022
+ images: [
3023
+ {
3024
+ imageType: 'PRIMARY',
3025
+ format: 'product',
3026
+ url: 'https://placehold.co/154x154?text=initial-product',
3027
+ altText: 'Rangemaster Classic Deluxe 90 Ceramic Range Cooker',
3028
+ },
3029
+ ],
3030
+ externalAverageRating: 0.5,
3031
+ externalReviewCount: 0,
3032
+ downStreamData: {
3033
+ description:
3034
+ 'Offer is valid for the same product and size in a single purchase',
3035
+ fulfillmentType: 'STANDARD_STORE_DELIVERED',
3036
+ },
3037
+ baseOptions: [],
3038
+ },
3039
+ },
3040
+ {
3041
+ baseProduct: {
3042
+ code: '406892',
3043
+ name: 'Rangemaster Classic Deluxe 90 Ceramic Range Cooker',
3044
+ url: '/Rangemaster-Classic-Deluxe-90-Ceramic-Range-Cooker/p/406892',
3045
+ purchasable: true,
3046
+ availableForPickup: true,
3047
+ price: {
3048
+ currencyIso: 'GBP',
3049
+ value: 200009,
3050
+ priceType: 'BUY',
3051
+ formattedValue: '£200,009.00',
3052
+ currencySymbol: '£',
3053
+ wasPrice: null,
3054
+ },
3055
+ images: [
3056
+ {
3057
+ imageType: 'PRIMARY',
3058
+ format: 'product',
3059
+ url: 'https://placehold.co/154x154?text=initial-product',
3060
+ altText: 'Rangemaster Classic Deluxe 90 Ceramic Range Cooker',
3061
+ },
3062
+ ],
3063
+ externalAverageRating: 0.5,
3064
+ externalReviewCount: 0,
3065
+ downStreamData: {
3066
+ description:
3067
+ 'Offer is valid for the same product and size in a single purchase',
3068
+ fulfillmentType: 'STANDARD_STORE_DELIVERED',
3069
+ },
3070
+ baseOptions: [],
3071
+ },
3072
+ },
3073
+ {
3074
+ baseProduct: {
3075
+ code: '406892',
3076
+ name: 'Rangemaster Classic Deluxe 90 Ceramic Range Cooker',
3077
+ url: '/Rangemaster-Classic-Deluxe-90-Ceramic-Range-Cooker/p/406892',
3078
+ purchasable: true,
3079
+ availableForPickup: true,
3080
+ price: {
3081
+ currencyIso: 'GBP',
3082
+ value: 200009,
3083
+ priceType: 'BUY',
3084
+ formattedValue: '£200,009.00',
3085
+ currencySymbol: '£',
3086
+ wasPrice: null,
3087
+ },
3088
+ images: [
3089
+ {
3090
+ imageType: 'PRIMARY',
3091
+ format: 'product',
3092
+ url: 'https://placehold.co/154x154?text=initial-product',
3093
+ altText: 'Rangemaster Classic Deluxe 90 Ceramic Range Cooker',
3094
+ },
3095
+ ],
3096
+ externalAverageRating: 0.5,
3097
+ externalReviewCount: 0,
3098
+ downStreamData: {
3099
+ description:
3100
+ 'Offer is valid for the same product and size in a single purchase',
3101
+ fulfillmentType: 'STANDARD_STORE_DELIVERED',
3102
+ },
3103
+ baseOptions: [],
3104
+ },
3105
+ },
3106
+ ],
3107
+ },
3108
+ },
12
3109
  getCartPdpHtml: function ({ hasError = false } = {}) {
13
3110
  return hasError ? Wick.FEMock.cartPDPError : Wick.FEMock.cartPDP;
14
3111
  },