@zackyjamel/garoonhub-commission-cal
v1.2.0
Published
Commission and price calculator for turf bookings
Downloads
7
Maintainers
Readme
@zackyjamel/garoonhub-commission-cal
A lightweight utility to calculate total booking amounts for stadiums or turf reservations based on morning/afternoon prices and commission charge.
📦 Installation
Install via npm:
npm install @zackyjamel/garoonhub-commission-cal
✅ Example (CommonJS)
const { getAmount } = require('@zackyjamel/garoonhub-commission-cal');
// Sample input
const result = getAmount({
morningPrice: 1200, // Price per AM slot
afternoonPrice: 1400, // Price per PM slot
TCharge: 0.06, // Commission as decimal (6%)
bookedTime: [
{ timeSlot: '09AM' }, // Morning slot
{ timeSlot: '03PM' } // Afternoon slot
]
});
// Output the result
console.log(result);
/*
Expected Output:
{
totalAmount: 2472,
charge: 0.06,
chargePercentage: 6,
baseAmount: 2330
}
*/