@ticketboothapp/booking 1.2.110 → 1.2.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1681,16 +1681,15 @@ export function PrivateShuttleBookingFlow({
|
|
|
1681
1681
|
},
|
|
1682
1682
|
]
|
|
1683
1683
|
: []),
|
|
1684
|
-
...(
|
|
1684
|
+
...(effectiveTaxAmount > 0
|
|
1685
1685
|
? [
|
|
1686
1686
|
{
|
|
1687
1687
|
label: t('booking.tax') !== 'booking.tax' ? t('booking.tax') : 'Taxes and fees',
|
|
1688
|
-
amount:
|
|
1688
|
+
amount: effectiveTaxAmount,
|
|
1689
1689
|
type: 'TAX' as const,
|
|
1690
1690
|
},
|
|
1691
1691
|
]
|
|
1692
1692
|
: []),
|
|
1693
|
-
...(effectiveTaxAmount > 0 ? [{ label: 'GST', amount: effectiveTaxAmount, type: 'TAX' as const }] : []),
|
|
1694
1693
|
];
|
|
1695
1694
|
const receiptTotal = depositInfo ? depositInfo.totalPrice : totalPrice;
|
|
1696
1695
|
const linesWithPromo = [
|