@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 CHANGED
@@ -1,10 +1,9 @@
1
- ## [2.7.1-cx24-3879.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.7.0...v2.7.1-cx24-3879.1) (2023-04-13)
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
- * Payload for subscription products are missing when added to cart from MySite homepage ([7b7ac3b](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/7b7ac3bd7c0b196aa9a7e97e885f7e296ef7e97d))
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.7.1-cx24-3879.1",
3
+ "version": "2.7.1-cx24-3684.1",
4
4
  "description": "This project contains shared Product models and code between the backend and frontend.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
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
- //only remap the orderTypes for legacy
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
  }
@@ -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": eqVariant.priceFacets["Regular Price"],
256
- "WADR": eqVariant.priceFacets["Regular Price"],
257
- "RTL": eqVariant.priceFacets["Regular Price"],
258
- "WWHL": eqVariant.priceFacets["Wholesale Price"],
259
- "WADW": eqVariant.priceFacets["Wholesale Price"],
260
- "WHL": eqVariant.priceFacets["Wholesale Price"]
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": product.priceFacets["Regular Price"],
434
- "WADR": product.priceFacets["Regular Price"],
435
- "RTL": product.priceFacets["Regular Price"],
436
- "WADW": product.priceFacets["Wholesale Price"],
437
- "WHL": product.priceFacets["Wholesale Price"],
438
- "WWHL": product.priceFacets["Wholesale Price"]
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,