UNPKG

@cityssm/mpac-yetf

Version:

Parses the MPAC Year-End Tax File (YETF) into a usable object.

68 lines (46 loc) 1.8 kB
import * as paLookups from '../lookups/paLookups.js' import type * as types from '../types' export function formatPA( recordPA: types.RawYetfRecordPA ): types.FormattedYetfRecordPA { const formattedYetfRecordPA = recordPA as types.FormattedYetfRecordPA formattedYetfRecordPA.phaseInValueDollars = Number.parseInt( formattedYetfRecordPA.phaseInValue, 10 ) // Unit Class formattedYetfRecordPA.unitClassDescription = paLookups.unitClassDescriptions[formattedYetfRecordPA.unitClass] // Realty Tax Class formattedYetfRecordPA.realtyTaxClassName = paLookups.realtyTaxClassNames[formattedYetfRecordPA.realtyTaxClass] // Realty Tax Qualifer const realtyTaxQualifier = paLookups.realtyTaxQualifiers[formattedYetfRecordPA.realtyTaxQualifier] if (realtyTaxQualifier !== undefined) { formattedYetfRecordPA.realtyTaxQualifierClass = realtyTaxQualifier.class formattedYetfRecordPA.realtyTaxQualifierName = realtyTaxQualifier.name } // Previous Year Assessment formattedYetfRecordPA.previousYearAssessmentDollars = Number.parseInt( formattedYetfRecordPA.previousYearAssessment, 10 ) // Unit Support formattedYetfRecordPA.unitSupportName = paLookups.unitSupportNames[formattedYetfRecordPA.unitSupport] // Property Type formattedYetfRecordPA.propertyTypeName = paLookups.propertyTypeNames[formattedYetfRecordPA.propertyType] // Property Total formattedYetfRecordPA.propertyTotalDollars = Number.parseInt( formattedYetfRecordPA.propertyTotal, 10 ) // Realty Portion Total formattedYetfRecordPA.realtyPortionTotalDollars = Number.parseInt( formattedYetfRecordPA.realtyPortionTotal, 10 ) return formattedYetfRecordPA }