From 82ebcd70bd18899af69cdc0bf84e475fea185891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Wed, 13 Dec 2023 12:14:21 +0100 Subject: [PATCH] fix: include undersubscription costs in total sum --- .../Private/Assets/js/components/GroupsPriceCalculator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue index f56bdd7f..7160a3db 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/components/GroupsPriceCalculator.vue @@ -492,7 +492,7 @@ export default { return this.nightsCount * this.totalPax * this.runningCostsFactor; }, priceTotal() { - return this.pricePax.base + this.pricePax.additional + this.priceOptions + return this.pricePax.base + this.pricePax.additional + this.pricePax.undersubscription + this.priceOptions + this.priceBoard + this.priceShortTerm + this.priceRunningCosts; }, priceSummary() {