Privileges for passes redeemed fraudulently will ⦠We use cookies and similar technologies ('cookies') to optimize your experience and to understand how you interact with content on our site. All lift tickets must be purchased online, and a limited number of tickets will be available each day of the season. Winter 2020-21 The Maine Pass offers unlimited access to Sunday River and Sugarloaf all winter on one pass with a host of extra perks including discounted tickets for friends, retail and food savings, Western skiing benefits, and more. Sunday River ⦠MEALS: Breakfast daily ⦠Bachelor ... Sunday River, ME . At Sunday River: 7:30am for the Chondola and Spruce Peak Triple on Sundays from December 27, 202o to March 28, 2021 plus December 30 and February 17. Sugarloaf, ME . email. New for the 2020/21 winter season, the Sunday River and Sugarloaf ski areas will offer the Maine Pass with varying levels of season-long access, as well as Maine Four-Day ticket packs, available to all. Ikon Pass holders can ski both Killington and Sunday River 7 days throughout the 2018-â19 season with no blackout dates, while Ikon Base Pass holders have access to 5 days (holiday restrictions apply) at the two resorts throughout the winter. with your Ikon Pass. 4 DAYS TOTAL AT SELECT DESTINATIONS. The 20/21 Ikon Base Pass connects you to the same unforgettable collection of 43 global destinations as the Ikon Pass. Summer lift ride tickets are picked up in Sunday River Sports. The property lies at the base of Sunday Riverâs Jordan Bowl area, and is just 4.5 miles to the main base area via a complimentary shuttle. ⦠If you can't assign a group member to a product, the guest is likely either the wrong age or not eligible because of other product requirements. Pass is strictly intended for the assigned Platinum New England Pass pass holder, non-transferable. SKI TICKETS: 4 day all area lift Sunday River days based upon arrival date. This steep double black diamond drops straight down the fall line and is packed with moguls, a long, sustained leg-burner for even the most experienced skiers and riders. Sunday River said it does not currently plan on requiring reservations for season passes, Ikon Pass or ticket pack holders, which is different than what we've heard from other resorts. An Ikon Base Pass included. The Ikon Pass offers access to 44 iconic mountain destinations around the globe, including five or seven days of skiing Sunday River â one of the most popular Ikon Pass destinations in New England. !paymentDetails.length" :allow-row-selection="false" break-width="large" :headers="paymentTableHeaders" :items="paymentDetails"/>
Product total with deposit: ${{(totalPaymentPrice + totalDeposit).toFixed(2)}}
', created() { this.dates = window.datesArray this.paymentPrices = window.priceArray this.paymentPlanProductIds = window.productArray this.modalDescription = window.modalDescription this.widgetDescription = window.widgetDescription this.buildPaymentSchedule() }, computed: { productId() { return this.$store.getters['products/selectedProduct'].Id }, selectedAttributeValueIds() { return this.selectedAttributes .filter(function (attribute) { return !attribute.IsDisabled }) .map(function (obj) { return obj.SelectedValueId; }); }, selectedAttributes() { return this.$store.getters['products/selectedProductAttributes'] }, numberOfPayments() { return this.dates.length }, isPaymentPlanProduct() { let _this = this let foundProductId = this.paymentPlanProductIds.find(function (pid) { return pid === _this.productId; }); if (foundProductId){ return true } else { return false } }, }, methods: { buildPaymentSchedule() { this.paymentDetails = [] let paymentPriceRecord = null this.totalPaymentPrice = 0 this.totalDeposit = 0 //First we must determine which of the selected attributes have payment prices and calculate a total payment price for them let _this = this this.selectedAttributeValueIds.forEach(function (attributeId, index) { paymentPriceRecord = null paymentPriceRecord = _this.paymentPrices.filter(p => { return p.id.toString() === attributeId }) if (paymentPriceRecord && paymentPriceRecord.length > 0) { _this.totalPaymentPrice += paymentPriceRecord[0].paymentPrice _this.totalDeposit += paymentPriceRecord[0].deposit } }) if (_this.totalPaymentPrice > 0) { //Determine monthly payment let thisPayment = +(_this.totalPaymentPrice / _this.dates.length) _this.monthlyPayment = Math.floor(thisPayment * 100) / 100 //Determine if there is a remainder amount _this.paymentRemainder = +(_this.totalPaymentPrice - (_this.monthlyPayment * _this.dates.length)).toFixed(2) //Then we create payment record for each configured date _this.dates.forEach(function (paymentDate, index) { if (index === _this.dates.length - 1 && _this.paymentRemainder > 0) { let lastPayment = _this.monthlyPayment + _this.paymentRemainder _this.paymentDetails.push({ date: paymentDate, amount: `$${lastPayment.toFixed(2)}` }) } else { _this.paymentDetails.push({ date: paymentDate, amount: `$${_this.monthlyPayment.toFixed(2)}` }) } }) //Add a total amount row _this.paymentDetails.push({ date: '