You will get Coffee set automatically in the checkout
3
Enjoy your Nespresso coffee moments
Coffee set at a discounted price of 2.590 Kč
Add Essenza Mini machine to your basket
Coffee set will be automatically added
Enjoy your Nespressocoffee moments
Purchase the set of Essenza Mini machine and 150 Nespresso coffee capsules (selected collection of Nespresso coffees without the right to change) for the special price 2 590 CZK (the total value of the set without discount is 4 590 CZK). Additionally, you will earn 300 CZK voucher as a gift for the next coffee purchase.
This offer is valid from 18th May to 31st May 2022 or while stocks last.
The voucher can be redeemed until 31st August 2022. Purchasing online at www.nespresso.com, you can redeem the voucher with purchase of at least 50 Nespresso coffee capsules eligible for free shipping.
This offer is valid for Nespresso & You members and it can be redeemed only once. This offer cannot be combined with any other promotion/discount/offer provided by Nespresso.
Get immediate discount of 1 500 Kč
Add a Vertuo machine to your basket
You will receive immediate disocunt of 1 500 Kč automatically
Enjoy your Nespresso coffee moments
With purchase of Vertuo coffee machine, you will be offered 1 500 CZK immediate discount.
This offer is valid from 14th March to 31st May 2022 or while
stocks last. This offer cannot be combined with any other promotion/discount/offer provided by
Nespresso. This offer is valid for Nespresso & You members and it can be redeemed only once.
';
if (window.location.href.indexOf('/order/machines/vertuo') > -1) { //only for VERTUO machines
$('.ProductDetails__information').prepend(cssInject);
var actualSKU = $('[id^="ProductDetail__erp"]').attr('id').slice(31, 100);
//var except = actualSKU.includes('4292-EU');
napi.catalog().getProduct(actualSKU)
.then(function(result) {
var priceActual = result.price;
var calcNewPrice;
var newOldPrice;
// if (except == true){
// calcNewPrice = priceActual * 1;
// }
// else{
calcNewPrice = priceActual - 1500;
//newOldPrice = priceActual + 0;//+ price including bundle
//calcNewPrice = newOldPrice * 0.6;
// }
//var productPriceStr = result.price.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
//var priceOld = thisSKUArticlePrice.text();
var priceOld = ' ' + priceActual.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ' ') + ' Kč';
// thisSKUArticlePrice.addClass('cz-oldPrice');
var priceNew = ' ' + calcNewPrice.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ' ') + ' Kč';
$('.ProductDetails__price').html(priceOld);
//$('.ProductDetails__price').addClass('cz-oldPrice');
$('.ProductDetails__price').append(priceNew);
});
} //only for vERTUO
if (window.location.href.indexOf('/order/machines/original') > -1) { //only for ORIGINAL MACHINE bundle
$('.ProductDetails__information').prepend(cssInject);
var actualSKU = $('[id^="ProductDetail__erp"]').attr('id').slice(31, 100);
var except = actualSKU.includes('30-EU');
napi.catalog().getProduct(actualSKU)
.then(function(result) {
var priceActual = result.price;
var calcNewPrice;
var newOldPrice;
if (except == true){
calcNewPrice = 2590;
}
//else if((actualSKU === 'EN510.B') || (actualSKU === 'EN510.W')){
// calcNewPrice = priceActual * 0.7;
//}
/* else{
//calcNewPrice = priceActual * 0.8;
//newOldPrice = priceActual + 0;
//calcNewPrice = newOldPrice - 2200;
}*/
//var productPriceStr = result.price.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
//var priceOld = thisSKUArticlePrice.text();
//var priceOld = ' ' + priceActual.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ' ') + ' Kč';
var priceOld = ' 4 590 Kč';
// thisSKUArticlePrice.addClass('cz-oldPrice');
var priceNew = ' ' + calcNewPrice.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ' ') + ' Kč';
$('.ProductDetails__price').html(priceOld);
//$('.ProductDetails__price').addClass('cz-oldPrice');
$('.ProductDetails__price').append(priceNew);
});
} //eND OF only for ORIGINAL MACHINE bundle
}, 3500);