@infrab4a/connect-angular 4.4.1-beta.3 → 4.4.1-beta.4
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.
- package/esm2020/services/cart.service.mjs +1 -2
- package/esm2020/services/coupon.service.mjs +1 -3
- package/fesm2015/infrab4a-connect-angular.mjs +2 -3
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +0 -3
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1196,7 +1196,6 @@ class CouponService {
|
|
|
1196
1196
|
return {
|
|
1197
1197
|
...item,
|
|
1198
1198
|
discount: discountItem,
|
|
1199
|
-
pricePaid: item.pricePaid - discountItem,
|
|
1200
1199
|
};
|
|
1201
1200
|
});
|
|
1202
1201
|
}
|
|
@@ -1207,7 +1206,6 @@ class CouponService {
|
|
|
1207
1206
|
return {
|
|
1208
1207
|
...item,
|
|
1209
1208
|
discount: discountItem,
|
|
1210
|
-
pricePaid: item.pricePaid - discountItem,
|
|
1211
1209
|
};
|
|
1212
1210
|
});
|
|
1213
1211
|
}
|
|
@@ -1353,7 +1351,6 @@ class CartService {
|
|
|
1353
1351
|
weight: weight ?? product.weight,
|
|
1354
1352
|
quantity: (item.quantity || 0) + (quantity || 0),
|
|
1355
1353
|
pricePaid,
|
|
1356
|
-
pricePaidOriginal: pricePaid,
|
|
1357
1354
|
discount: 0,
|
|
1358
1355
|
categories: product.categories ?? [],
|
|
1359
1356
|
isGift: isGift ?? null,
|