From b07c375d8341595b56321a98632ce02e890008b8 Mon Sep 17 00:00:00 2001 From: Bilal Catic Date: Tue, 30 Jul 2019 23:04:29 +0200 Subject: [PATCH] remove label and cost explanation from booking fees --- services/integration/invoiceIntegration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/integration/invoiceIntegration.js b/services/integration/invoiceIntegration.js index b54e875..e5048f2 100644 --- a/services/integration/invoiceIntegration.js +++ b/services/integration/invoiceIntegration.js @@ -203,7 +203,7 @@ const createFeeFromBooking = (booking, resourceMappings) => { const formattedStartTime = startMoment.format('HH:mm a'); const formattedEndTime = endMoment.format('HH:mm a'); - const formattedName = `[BOOKING FEES] ${officeName}, ${resourceName}, $${totalCost}, ${reservationLength.toFixed(2)} x $${hourlyRate.toFixed(2)}, ${formattedDate} [${formattedStartTime} - ${formattedEndTime}]`; + const formattedName = `${officeName}, ${resourceName}, $${totalCost}, ${formattedDate} [${formattedStartTime} - ${formattedEndTime}]`; return { name: formattedName,