@nuskin/ns-product-lib 2.7.1-cx24-3879.1 → 2.7.1-cx24-3684.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +2 -3
- package/package.json +1 -1
- package/src/product.js +1 -5
- package/src/productData.js +21 -18
package/CHANGELOG.md
CHANGED
@@ -1,10 +1,9 @@
|
|
1
|
-
## [2.7.1-cx24-
|
1
|
+
## [2.7.1-cx24-3684.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.7.0...v2.7.1-cx24-3684.1) (2023-04-13)
|
2
2
|
|
3
3
|
|
4
4
|
### Fix
|
5
5
|
|
6
|
-
*
|
7
|
-
* Payload for subscription products are missing when added to cart from MySite homepage ([d49957f](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/d49957f44d9ce6b6469b0bc94bc8f8050d00f35a))
|
6
|
+
* set original price as wholesale price (#CX24-3684) ([e1d5650](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/e1d5650da1bee59b19977c9af5da58b6ff08485d)), closes [#CX24-3684](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/issues/CX24-3684)
|
8
7
|
|
9
8
|
# [2.7.0](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.2...v2.7.0) (2023-04-05)
|
10
9
|
|
package/package.json
CHANGED
package/src/product.js
CHANGED
@@ -337,11 +337,7 @@ const Product = function (productData) {
|
|
337
337
|
return this.addCvWithType(csvKey, productStatus.csv[csvKey]);
|
338
338
|
}, this);
|
339
339
|
}
|
340
|
-
|
341
|
-
if(this.equinoxProductId !== "") {
|
342
|
-
this.orderTypes = ProductUtils.mergeOrderTypes(this.orderTypes, productStatus.orderType);
|
343
|
-
}
|
344
|
-
|
340
|
+
this.orderTypes = ProductUtils.mergeOrderTypes(this.orderTypes, productStatus.orderType);
|
345
341
|
if (productStatus.childSkus) {
|
346
342
|
this.childSkus = productStatus.childSkus;
|
347
343
|
}
|
package/src/productData.js
CHANGED
@@ -48,11 +48,11 @@ const ProductData = {
|
|
48
48
|
},
|
49
49
|
|
50
50
|
/**
|
51
|
-
*
|
52
|
-
* @param {string[]} skus
|
53
|
-
* @param {string} locale
|
54
|
-
* @param {ConfigMap} config
|
55
|
-
* @returns
|
51
|
+
*
|
52
|
+
* @param {string[]} skus
|
53
|
+
* @param {string} locale
|
54
|
+
* @param {ConfigMap} config
|
55
|
+
* @returns
|
56
56
|
*/
|
57
57
|
searchEquinoxProduct: async function (skus, locale, config) {
|
58
58
|
let skuFilter = [];
|
@@ -140,6 +140,7 @@ const ProductData = {
|
|
140
140
|
const discountedPrice = eventName ? computedPrice : eqVariant.priceFacets["Regular Price"];
|
141
141
|
const productCVPrice = eventName ? CVPrice : eqVariant.priceFacets.CV;
|
142
142
|
const productPVPrice = eventName ? PVPrice : eqVariant.priceFacets.PV;
|
143
|
+
const wholeSalePrice = eventName ? defaultProductPrice : eqVariant.priceFacets["Wholesale Price"];
|
143
144
|
|
144
145
|
return {
|
145
146
|
"sku": eqVariant.identifier,
|
@@ -252,12 +253,12 @@ const ProductData = {
|
|
252
253
|
"price": discountedPrice,
|
253
254
|
"priceMap": {
|
254
255
|
"WRTL": productPrice,
|
255
|
-
"WADW-WRTL":
|
256
|
-
"WADR":
|
257
|
-
"RTL":
|
258
|
-
"WWHL":
|
259
|
-
"WADW":
|
260
|
-
"WHL":
|
256
|
+
"WADW-WRTL": productPrice,
|
257
|
+
"WADR": productPrice,
|
258
|
+
"RTL": productPrice,
|
259
|
+
"WWHL": wholeSalePrice,
|
260
|
+
"WADW": wholeSalePrice,
|
261
|
+
"WHL": wholeSalePrice
|
261
262
|
},
|
262
263
|
"cvMap": {
|
263
264
|
"WWHL": productCVPrice,
|
@@ -386,6 +387,8 @@ const ProductData = {
|
|
386
387
|
const discountedPrice = eventName ? computedPrice : product.priceFacets["Regular Price"];
|
387
388
|
const productCVPrice = eventName ? CVPrice : product.priceFacets.CV;
|
388
389
|
const productPVPrice = eventName ? PVPrice : product.priceFacets.PV;
|
390
|
+
const wholeSalePrice = eventName ? defaultProductPrice : product.priceFacets["Wholesale Price"];
|
391
|
+
|
389
392
|
|
390
393
|
product.childSkus = await this.fetchChildSkus(product);
|
391
394
|
product.availableQuantity = mapAvailableQuantity(product);
|
@@ -429,13 +432,13 @@ const ProductData = {
|
|
429
432
|
"priceType": "WRTL",
|
430
433
|
"price": discountedPrice,
|
431
434
|
"priceMap": {
|
432
|
-
"WRTL": productPrice,
|
433
|
-
"WADW-WRTL":
|
434
|
-
"WADR":
|
435
|
-
"RTL":
|
436
|
-
"WADW":
|
437
|
-
"WHL":
|
438
|
-
"WWHL":
|
435
|
+
"WRTL": productPrice, //regular | retail price
|
436
|
+
"WADW-WRTL": productPrice,
|
437
|
+
"WADR": productPrice,
|
438
|
+
"RTL": productPrice,
|
439
|
+
"WADW": wholeSalePrice,
|
440
|
+
"WHL": wholeSalePrice,
|
441
|
+
"WWHL": wholeSalePrice
|
439
442
|
},
|
440
443
|
"cvMap": {
|
441
444
|
"WWHL": productCVPrice,
|