58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
import type * as recordTypes from "../types/recordTypes";
|
|
|
|
export const filterOccupantsByLotOccupantType = (
|
|
lotOccupancy: recordTypes.LotOccupancy,
|
|
lotOccupantType: string
|
|
): recordTypes.LotOccupancyOccupant[] => {
|
|
const lotOccupantTypeLowerCase = lotOccupantType.toLowerCase();
|
|
|
|
const occupants = lotOccupancy.lotOccupancyOccupants.filter((possibleOccupant) => {
|
|
return possibleOccupant.lotOccupantType.toLowerCase() === lotOccupantTypeLowerCase;
|
|
});
|
|
|
|
return occupants;
|
|
};
|
|
|
|
export const getFieldValueByOccupancyTypeField = (
|
|
lotOccupancy: recordTypes.LotOccupancy,
|
|
occupancyTypeField: string
|
|
): string => {
|
|
const occupancyTypeFieldLowerCase = occupancyTypeField.toLowerCase();
|
|
|
|
const field = lotOccupancy.lotOccupancyFields.find((possibleField) => {
|
|
return possibleField.occupancyTypeField.toLowerCase() === occupancyTypeFieldLowerCase;
|
|
});
|
|
|
|
if (field) {
|
|
return field.lotOccupancyFieldValue;
|
|
}
|
|
|
|
return undefined;
|
|
};
|
|
|
|
export const getFeesByFeeCategory = (
|
|
lotOccupancy: recordTypes.LotOccupancy,
|
|
feeCategory: string,
|
|
feeCategoryContains = false
|
|
) => {
|
|
const feeCategoryLowerCase = feeCategory.toLowerCase();
|
|
|
|
const fees = lotOccupancy.lotOccupancyFees.filter((possibleFee) => {
|
|
return feeCategoryContains
|
|
? possibleFee.feeCategory.toLowerCase().includes(feeCategoryLowerCase)
|
|
: possibleFee.feeCategory.toLowerCase() === feeCategoryLowerCase;
|
|
});
|
|
|
|
return fees;
|
|
};
|
|
|
|
export const getTransactionTotal = (lotOccupancy: recordTypes.LotOccupancy) => {
|
|
let transactionTotal = 0;
|
|
|
|
for (const transaction of lotOccupancy.lotOccupancyTransactions) {
|
|
transactionTotal += transaction.transactionAmount;
|
|
}
|
|
|
|
return transactionTotal;
|
|
};
|