diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index d00f2dff2..318ff0aa5 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -277,7 +277,7 @@ export default { if (supportingItemsFromStore) { const pricingByDayUpchargeFeeIndex = supportingItemsFromStore?.findIndex( (item) => item.partType == PRICING_BY_DAY_PART_TYPE - ); + ); if (pricingByDayUpchargeFeeIndex > -1 && !isInsurance) { includePricingByDayUpcharge = true; } @@ -636,7 +636,7 @@ export default { (item) => item.partType == PRICING_BY_DAY_PART_TYPE ); - if (this.includePricingByDayUpcharge && this.showPricingByDay) { + if (this.includePricingByDayUpcharge && this.showPricingByDay) { if (pricingByDayUpchargeFeeIndex && pricingByDayUpchargeFeeIndex > -1) { supportingItems[pricingByDayUpchargeFeeIndex].laborAmount = this.pricingByDayUpchargeLineItem.laborAmount; @@ -648,7 +648,8 @@ export default { supportingItems.push(this.pricingByDayUpchargeLineItem); } } else { - if (pricingByDayUpchargeFeeIndex >= 0) { // remove pricing by day upcharge if it already was in store + if (pricingByDayUpchargeFeeIndex >= 0) { + // remove pricing by day upcharge if it already was in store supportingItems.splice(pricingByDayUpchargeFeeIndex, 1); } }