From c1b27e6ce933b685c63c79a46ce7a5dfb7f15728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Tue, 29 Nov 2022 16:19:32 +0100 Subject: [PATCH] Always include running costs into groups price calculation --- .../Private/Assets/js/components/GroupsPriceCalculator.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 11bafa72..8506ed40 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 @@ -482,9 +482,9 @@ export default { return price; }, priceRunningCosts() { - if (this.selectedBoard) { - return 0; - } + // if (this.selectedBoard) { + // return 0; + // } return this.nightsCount * this.totalPax * this.runningCostsFactor; }, priceTotal() {