protected function removeBorrowerCreditReport(Borrower $borrower) { $creditReport = $borrower->getCreditReport(); if (isset($creditReport)) { $this->em->remove($creditReport); $this->em->flush(); } }
/** * @param \Sudoux\MortgageBundle\Entity\LoanApplication $application * @param \Sudoux\MortgageBundle\Entity\Borrower $borrower * @param $destinyBorrower * @param bool $isCoBorrower * @author Eric Haynes */ protected function convertDestinyToBorrower(LoanApplication $application, Borrower $borrower, $destinyBorrower, $isCoBorrower = false) { $borrowerSsn = $destinyBorrower['@attributes']['ssn']; $borrower->setSsn($borrowerSsn); $borrowerFirstName = ucwords(strtolower($destinyBorrower['@attributes']['first-name'])); $borrower->setFirstName($borrowerFirstName); $borrowerLastName = ucwords(strtolower($destinyBorrower['@attributes']['last-name'])); $borrower->setLastName($borrowerLastName); $borrowerMiddleInitial = ucwords(strtolower($destinyBorrower['@attributes']['middle-name'])); if (strlen($borrowerMiddleInitial) > 0) { $borrower->setMiddleInitial($borrowerMiddleInitial[0]); } else { $borrower->setMiddleInitial(''); } $borrowerSuffix = ucwords(strtolower($destinyBorrower['@attributes']['generation'])); $borrower->setSuffix($borrowerSuffix); $borrowerEmail = $destinyBorrower['@attributes']['email']; $borrower->setEmail($borrowerEmail); if (isset($destinyBorrower['@attributes']['home-phone'])) { $borrower->setPhoneHome($destinyBorrower['@attributes']['home-phone']); } if (isset($destinyBorrower['@attributes']['work-phone'])) { $borrower->setPhoneHome($destinyBorrower['@attributes']['work-phone']); } $borrowerBirthDate = $destinyBorrower['@attributes']['birthdate']; $borrower->setBirthDate($this->convertToDateTime($borrowerBirthDate)); // BorrowerLocation Location $borrowerLocation = $borrower->getLocation(); $borrowerLocationLocation = $borrowerLocation->getLocation(); $borrowerLocationLocationAddress = ucwords(strtolower($destinyBorrower['@attributes']['street-address'])); $borrowerLocationLocation->setAddress1($borrowerLocationLocationAddress); $borrowerLocationLocationCity = ucwords(strtolower($destinyBorrower['@attributes']['city'])); $borrowerLocationLocation->setCity($borrowerLocationLocationCity); $borrowerLocationLocationState = $destinyBorrower['@attributes']['state']; $borrowerLocationLocationStateEntity = $this->em->getRepository('SudouxCmsLocationBundle:State')->findStateByAbbreviation($borrowerLocationLocationState); $borrowerLocationLocation->setState($borrowerLocationLocationStateEntity); $borrowerLocationLocationZipcode = $destinyBorrower['@attributes']['zip']; $borrowerLocationLocation->setZipcode($this->toZipcode($borrowerLocationLocationZipcode)); if ($isCoBorrower) { $borrower->setPrimaryBorrower(false); } else { $borrower->setPrimaryBorrower(true); } }
public function removeAllAssetRealEstateByBorrower(Borrower $borrower) { if (count($this->asset_real_estate) > 0) { foreach ($this->asset_real_estate as $asset) { if ($borrower->getId() == $asset->getBorrower()->getId()) { $this->removeAssetRealEstate($asset); } } } }
public function removeIncomeMonthlyByBorrower(\Sudoux\MortgageBundle\Entity\Borrower $borrower) { if ($this->income_monthly->count() > 0) { foreach ($this->income_monthly as $income) { if ($income->getBorrower()->getId() == $borrower->getId()) { $this->removeIncomeMonthly($income); } } } }
/** * @param LoanApplication $application * @param Borrower $borrower * @param $fannieMaeData * @param $options */ protected function convertFannieMaeToBorrower(LoanApplication $application, Borrower $borrower, $fannieMaeData, $options) { // clear for update $incomeMonthly = $borrower->getIncomeMonthly(); if (count($borrower->getIncomeMonthly()) > 0) { $borrower->removeAllIncomeMonthly(); } $borrowerSsn = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 6, 9); $borrower->setSsn($borrowerSsn); $borrowerFirstName = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 15, 35); $borrower->setFirstName($borrowerFirstName); $borrowerLastName = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 85, 35); $borrower->setLastName($borrowerLastName); $borrowerMiddleInitial = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 50, 35); $borrower->setMiddleInitial($borrowerMiddleInitial); $borrowerSuffix = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 120, 4); $borrower->setSuffix($borrowerSuffix); $borrowerEmail = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 160, 80); $borrower->setEmail($borrowerEmail); $borrowerPhoneHome = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 124, 10); $borrower->setPhoneHome($borrowerPhoneHome); $borrowerMaritialStatus = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 139, 1); $borrower->setMaritalStatus($this->getBorrowerMaritalStatus($borrowerMaritialStatus)); $borrowerYearsOfSchool = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 137, 2); $borrower->setYearsOfSchool($this->toInt($borrowerYearsOfSchool)); $borrowerBirthDate = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 152, 8); $borrower->setBirthDate($this->convertToDateTime($borrowerBirthDate)); $borrowerDependentsNumber = StringUtil::find($fannieMaeData, "03A" . $options['03A_suffix'], 140, 2); $borrower->setDependentsNumber($this->toInt($borrowerDependentsNumber)); $borrowerDependentsAges = StringUtil::findAll($fannieMaeData, "03B" . $borrowerSsn, 13, 3); if (count($borrowerDependentsAges) == 1) { $borrower->setDependentsAges($borrowerDependentsAges[0]); } else { if (count($borrowerDependentsAges) > 1) { $borrower->setDependentsAges(implode(',', $borrowerDependentsAges)); } } // BorrowerLocation $borrowerLocation = $borrower->getLocation(); $borrowerLocationYears = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "ZG", 112, 2); $borrowerLocation->setYearsAtLocation($this->toInt($borrowerLocationYears)); $borrowerLocationMonths = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "ZG", 114, 2); $borrowerLocation->setMonthsAtLocation($this->toInt($borrowerLocationMonths)); $borrowerLocationOwnResidence = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "ZG", 111, 1); $borrowerLocation->setOwnResidence($this->getBorrowerLocationOwnResidence($borrowerLocationOwnResidence)); // BorrowerLocation Location $borrowerLocationLocation = $borrowerLocation->getLocation(); $borrowerLocationLocationAddress = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "ZG", 15, 50); $borrowerLocationLocation->setAddress1($borrowerLocationLocationAddress); $borrowerLocationLocationCity = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "ZG", 65, 35); $borrowerLocationLocation->setCity($borrowerLocationLocationCity); $borrowerLocationLocationState = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "ZG", 100, 2); $borrowerLocationLocationStateEntity = $this->em->getRepository('SudouxCmsLocationBundle:State')->findStateByAbbreviation($borrowerLocationLocationState); $borrowerLocationLocation->setState($borrowerLocationLocationStateEntity); $borrowerLocationLocationZipcode = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "ZG", 102, 5); $borrowerLocationLocation->setZipcode($this->toZipcode($borrowerLocationLocationZipcode)); // Borrower Previous Locations $fnmBorrowerPreviousLocations = StringUtil::findLinesStartingWith($fannieMaeData, "03C" . $borrowerSsn . "F4"); $borrower->removeAllPreviousLocations(); // clear prev locations for update if (count($fnmBorrowerPreviousLocations) > 0) { foreach ($fnmBorrowerPreviousLocations as $fnmLocation) { $borrowerPreviousLocation = new BorrowerLocation(); $borrower->addPreviousLocation($borrowerPreviousLocation); $borrowerPreviousLocationYears = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "F4", 112, 2); $borrowerPreviousLocation->setYearsAtLocation($this->toInt($borrowerPreviousLocationYears)); $borrowerPreviousLocationMonths = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "F4", 114, 2); $borrowerPreviousLocation->setMonthsAtLocation($this->toInt($borrowerPreviousLocationMonths)); $borrowerPreviousLocationOwnResidence = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "F4", 111, 1); $borrowerPreviousLocation->setOwnResidence($this->getBorrowerLocationOwnResidence($borrowerPreviousLocationOwnResidence)); $borrowerPreviousLocationLocation = $borrowerPreviousLocation->getLocation(); $borrowerPreviousLocationLocationAddress = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "F4", 15, 50); $borrowerPreviousLocationLocation->setAddress1($borrowerPreviousLocationLocationAddress); $borrowerPreviousLocationLocationCity = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "F4", 65, 35); $borrowerPreviousLocationLocation->setCity($borrowerLocationLocationCity); $borrowerPreviousLocationLocationState = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "F4", 100, 2); $borrowerPreviousLocationLocationStateEntity = $this->em->getRepository('SudouxCmsLocationBundle:State')->findStateByAbbreviation($borrowerPreviousLocationLocationState); $borrowerPreviousLocationLocation->setState($borrowerPreviousLocationLocationStateEntity); $borrowerPreviousLocationLocationZipcode = StringUtil::find($fannieMaeData, "03C" . $borrowerSsn . "F4", 102, 5); $borrowerPreviousLocationLocation->setZipcode($this->toZipcode($borrowerPreviousLocationLocationZipcode)); } } // borrower employment $borrowerEmployment = $borrower->getEmployment(); $fnmBorrowerEmployment = StringUtil::findLinesStartingWith($fannieMaeData, "04A" . $borrowerSsn); $borrower->removeAllEmployment(); // remove employment for update if (count($fnmBorrowerEmployment)) { foreach ($fnmBorrowerEmployment as $fnmEmployment) { $employment = new Employment(); $borrower->addEmployment($employment); $employerName = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 13, 35); $employment->setEmployerName($employerName); $selfEmployed = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 129, 1); $employment->setSelfEmployed($this->convertToBoolean($selfEmployed)); $yearsInProfession = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 134, 2); $employment->setYearsEmployed($this->toInt($yearsInProfession)); $yearsOnJob = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 130, 2); $employment->setYearsOnJob($this->toInt($yearsOnJob)); $position = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 136, 25); $employment->setTitle($position); $employerPhone = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 161, 10); $employment->setEmployerPhone($employerPhone); $location = $employment->getLocation(); $locationAddress = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 48, 35); $location->setAddress1($locationAddress); $locationCity = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 83, 35); $location->setCity($locationCity); $locationState = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 118, 2); $locationStateEntity = $this->em->getRepository('SudouxCmsLocationBundle:State')->findStateByAbbreviation($locationState); $location->setState($locationStateEntity); $locationZipcode = StringUtil::find($fnmEmployment, "04A" . $borrowerSsn, 120, 5); $location->setZipcode($this->toZipcode($locationZipcode)); } } // previous employment $fnmBorrowerEmployment = StringUtil::findLinesStartingWith($fannieMaeData, "04B" . $borrowerSsn); if (count($fnmBorrowerEmployment)) { foreach ($fnmBorrowerEmployment as $fnmEmployment) { $employment = new Employment(); $borrower->addEmployment($employment); $employerName = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 13, 35); $employment->setEmployerName($employerName); $selfEmployed = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 129, 1); $employment->setSelfEmployed($this->convertToBoolean($selfEmployed)); $startDateString = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 131, 8); $startDate = $this->convertToDateTime($startDateString); if (isset($startDate)) { $employment->setStartDate($startDate); } $endDateString = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 139, 8); $endDate = $this->convertToDateTime($endDateString); if (isset($endDate)) { $employment->setEndDate($endDate); } $position = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 162, 25); $employment->setTitle($position); $employerPhone = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 187, 10); $employment->setEmployerPhone($employerPhone); $location = $employment->getLocation(); $locationAddress = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 48, 35); $location->setAddress1($locationAddress); $locationCity = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 83, 35); $location->setCity($locationCity); $locationState = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 118, 2); $locationStateEntity = $this->em->getRepository('SudouxCmsLocationBundle:State')->findStateByAbbreviation($locationState); $location->setState($locationStateEntity); $locationZipcode = StringUtil::find($fnmEmployment, "04B" . $borrowerSsn, 120, 5); $location->setZipcode($this->toZipcode($locationZipcode)); } } // account assets $fnmBorrowerAccountAsset = StringUtil::findLinesStartingWith($fannieMaeData, "06C" . $borrowerSsn); $borrower->removeAllAssetAccount(); if (count($fnmBorrowerAccountAsset)) { foreach ($fnmBorrowerAccountAsset as $fnmAsset) { $accountAsset = new AssetAccount(); $accountAsset->setBorrower($borrower); $application->addAssetAccount($accountAsset); $type = StringUtil::find($fnmAsset, "06C" . $borrowerSsn, 13, 3); $accountAsset->setType($this->getAccountType($type)); $accountInstitutionName = StringUtil::find($fnmAsset, "06C" . $borrowerSsn, 16, 35); $accountAsset->setInstitutionName($accountInstitutionName); $accountNumber = StringUtil::find($fnmAsset, "06C" . $borrowerSsn, 132, 30); $accountAsset->setAccountNumber($accountNumber); $balance = StringUtil::find($fnmAsset, "06C" . $borrowerSsn, 162, 15); $accountAsset->setBalance($this->toFloat($balance)); } } // real estate assets $fnmBorrowerRealEstateAsset = StringUtil::findLinesStartingWith($fannieMaeData, "06G" . $borrowerSsn); $borrower->removeAllAssetRealestate(); if (count($fnmBorrowerRealEstateAsset)) { foreach ($fnmBorrowerRealEstateAsset as $fnmAsset) { $asset = new AssetRealEstate(); $asset->setBorrower($borrower); $application->addAssetRealEstate($asset); $assetLocation = $asset->getLocation(); $streetAddress = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 13, 35); $assetLocation->setAddress1($streetAddress); $city = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 48, 35); $assetLocation->setCity($city); $state = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 83, 2); $stateEntity = $this->em->getRepository('SudouxCmsLocationBundle:State')->findStateByAbbreviation($state); $assetLocation->setState($stateEntity); $zipcode = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 85, 5); $assetLocation->setZipcode($this->toZipcode($zipcode)); $marketValue = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 97, 15); $asset->setMarketValue($this->toFloat($marketValue)); $mortgageAmount = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 112, 15); $asset->setMortgageAmount($this->toFloat($mortgageAmount)); $rentGrossIncome = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 127, 15); $asset->setRentGrossIncome($this->toFloat($rentGrossIncome)); $mortgagePayment = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 142, 15); $asset->setMortgagePayment($this->toFloat($mortgagePayment)); $insuranceTax = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 157, 15); $asset->setInsTaxExp($this->toFloat($insuranceTax)); $rentNetIncome = StringUtil::find($fnmAsset, "06G" . $borrowerSsn, 172, 15); $asset->setRentNetIncome($this->toFloat($rentNetIncome)); } } // combined housing expenses $housingExpense = $application->getExpenseHousing(); if (!isset($housingExpense)) { $housingExpense = new ExpenseHousing(); $application->setExpenseHousing($housingExpense); } $housingExpenseRent = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "125", 16, 15); $housingExpense->setRent($this->getHousingExpenseTotal($housingExpense->getRent(), $housingExpenseRent)); $housingExpenseMortgage = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "126", 16, 15); $housingExpense->setMortgage($this->getHousingExpenseTotal($housingExpense->getMortgage(), $housingExpenseMortgage)); $housingExpenseHazardInsurance = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "101", 16, 15); $housingExpense->setInsuranceHazard($this->getHousingExpenseTotal($housingExpense->getInsuranceHazard(), $housingExpenseHazardInsurance)); $housingExpenseOtherFinancial = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "122", 16, 15); $housingExpense->setOtherFinancial($this->getHousingExpenseTotal($housingExpense->getOtherFinancial(), $housingExpenseOtherFinancial)); $housingExpenseMortgageInsurance = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "102", 16, 15); $housingExpense->setInsuranceMortgage($this->getHousingExpenseTotal($housingExpense->getInsuranceMortgage(), $housingExpenseMortgageInsurance)); $housingExpenseRealEstateTax = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "114", 16, 15); $housingExpense->setTaxRealEstate($this->getHousingExpenseTotal($housingExpense->getTaxRealEstate(), $housingExpenseRealEstateTax)); $housingExpenseHoaDues = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "106", 16, 15); $housingExpense->setHoaDues($this->getHousingExpenseTotal($housingExpense->getHoaDues(), $housingExpenseHoaDues)); $housingExpenseOther = StringUtil::find($fannieMaeData, "05H" . $borrowerSsn . "123", 16, 15); $housingExpense->setOther($this->getHousingExpenseTotal($housingExpense->getOther(), $housingExpenseOther)); // monthly income $application->removeIncomeMonthlyByBorrower($borrower); $borrowerMonthlyIncome = new IncomeMonthly(); $borrowerMonthlyIncome->setBorrower($borrower); $application->addIncomeMonthly($borrowerMonthlyIncome); $borrowerMonthlyIncomeBase = StringUtil::find($fannieMaeData, "05I" . $borrowerSsn . "20", 15, 15); $borrowerMonthlyIncome->setBase($this->toFloat($borrowerMonthlyIncomeBase)); $borrowerMonthlyIncomeOvertime = StringUtil::find($fannieMaeData, "05I" . $borrowerSsn . "09", 15, 15); $borrowerMonthlyIncome->setOvertime($this->toFloat($borrowerMonthlyIncomeOvertime)); $borrowerMonthlyIncomeBonus = StringUtil::find($fannieMaeData, "05I" . $borrowerSsn . "08", 15, 15); $borrowerMonthlyIncome->setBonus($this->toFloat($borrowerMonthlyIncomeBonus)); $borrowerMonthlyIncomeCommission = StringUtil::find($fannieMaeData, "05I" . $borrowerSsn . "10", 15, 15); $borrowerMonthlyIncome->setCommission($this->toFloat($borrowerMonthlyIncomeCommission)); $borrowerMonthlyIncomeInterest = StringUtil::find($fannieMaeData, "05I" . $borrowerSsn . "17", 15, 15); $borrowerMonthlyIncome->setInterest($this->toFloat($borrowerMonthlyIncomeInterest)); $borrowerMonthlyIncomeRentNet = StringUtil::find($fannieMaeData, "05I" . $borrowerSsn . "33", 15, 15); $borrowerMonthlyIncome->setRentNet($this->toFloat($borrowerMonthlyIncomeRentNet)); $borrowerMonthlyIncomeOther = StringUtil::find($fannieMaeData, "05I" . $borrowerSsn . "45", 15, 15); $borrowerMonthlyIncome->setOther($this->toFloat($borrowerMonthlyIncomeOther)); // declarations $declarationOutstandingJudgement = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 13, 1); $borrower->setDeclarationOutstandingJudgement($this->convertToBoolean($declarationOutstandingJudgement)); $declarationOutstandingJudgementDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "91", 15, 255); $borrower->setDeclarationOutstandingJudgementDetails($this->getStringValue($declarationOutstandingJudgementDetails)); $declarationBankruptcy = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 14, 1); $borrower->setDeclarationBankruptcy($this->convertToBoolean($declarationBankruptcy)); $declarationBankruptcyDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "92", 15, 255); $borrower->setDeclarationBankruptcyDetails($this->getStringValue($declarationBankruptcyDetails)); $declarationForclosure = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 15, 1); $borrower->setDeclarationForclosure($this->convertToBoolean($declarationForclosure)); $declarationForclosureDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "93", 15, 255); $borrower->setDeclarationForclosureDetails($this->getStringValue($declarationForclosureDetails)); $declarationLawsuit = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 16, 1); $borrower->setDeclarationLawsuit($this->convertToBoolean($declarationLawsuit)); $declarationLawsuitDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "94", 15, 255); $borrower->setDeclarationLawsuitDetails($this->getStringValue($declarationLawsuitDetails)); $declarationForclosureObligation = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 17, 1); $borrower->setDeclarationForclosureObligation($this->convertToBoolean($declarationForclosureObligation)); $declarationForclosureObligationDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "95", 15, 255); $borrower->setDeclarationForclosureObligationDetails($this->getStringValue($declarationForclosureObligationDetails)); $declarationInDefault = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 18, 1); $borrower->setDeclarationInDefault($this->convertToBoolean($declarationInDefault)); $declarationInDefaultDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "96", 15, 255); $borrower->setDeclarationInDefaultDetails($this->getStringValue($declarationInDefaultDetails)); $declarationAlimonyChildSupport = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 19, 1); $borrower->setDeclarationAlimonyChildSupport($this->convertToBoolean($declarationAlimonyChildSupport)); $declarationAlimonyChildSupportDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "97", 15, 255); $borrower->setDeclarationAlimonyChildSupportDetails($this->getStringValue($declarationAlimonyChildSupportDetails)); $declarationDownPaymentBorrowed = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 20, 1); $borrower->setDeclarationDownPaymentBorrowed($this->convertToBoolean($declarationDownPaymentBorrowed)); $declarationDownPaymentBorrowedDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "98", 15, 255); $borrower->setDeclarationDownPaymentBorrowedDetails($this->getStringValue($declarationDownPaymentBorrowedDetails)); $declarationNoteEndorser = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 21, 1); $borrower->setDeclarationNoteEndorser($this->convertToBoolean($declarationNoteEndorser)); $declarationNoteEndorserDetails = StringUtil::find($fannieMaeData, "08B" . $borrowerSsn . "99", 15, 255); $borrower->setDeclarationNoteEndorserDetails($this->getStringValue($declarationNoteEndorserDetails)); $declarationUsCitizen = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 22, 2); $borrower->setDeclarationUsCitizen($this->getUsCitizen($declarationUsCitizen)); $declarationResidentAlien = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 22, 2); $borrower->setDeclarationResidentAlien($this->getResidentAlien($declarationResidentAlien)); $declarationPrimaryResidence = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 24, 1); $borrower->setDeclarationPrimaryResidence($this->convertToBoolean($declarationPrimaryResidence)); $declarationOwnershipWithinThreeYears = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 25, 1); $borrower->setDeclarationOwnershipWithinThreeYears($this->convertToBoolean($declarationOwnershipWithinThreeYears)); $declarationOwnershipWithinThreeYearsPropertyType = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 26, 1); $borrower->setDeclarationOwnershipWithinThreeYearsPropertyType($this->getOwnershipPropertyType($declarationOwnershipWithinThreeYearsPropertyType)); $declarationOwnershipWithinThreeYearsPropertyTitle = StringUtil::find($fannieMaeData, "08A" . $borrowerSsn, 27, 2); $borrower->setDeclarationOwnershipWithinThreeYearsPropertyTitle($this->getOwnershipTitle($declarationOwnershipWithinThreeYearsPropertyTitle)); // govt monitoring $borrowerGovtMonitoringOptOut = StringUtil::find($fannieMaeData, "10A" . $borrowerSsn, 13, 1); $borrower->setGovtMonitoringOptOut($this->convertToBoolean($borrowerGovtMonitoringOptOut)); $borrowerRace = StringUtil::find($fannieMaeData, "10R" . $borrowerSsn, 13, 2); $borrower->setRace($this->getBorrowerRace($borrowerRace)); $borrowerEthnicity = StringUtil::find($fannieMaeData, "10A" . $borrowerSsn, 14, 1); $borrower->setEthnicity($this->getBorrowerEthnicity($borrowerEthnicity)); $borrowerSex = StringUtil::find($fannieMaeData, "10A" . $borrowerSsn, 45, 1); $borrower->setIsMale($this->getBorrowerIsMale($borrowerSex)); // expenses $declarationAlimonyChildSupportAlimony = StringUtil::find($fannieMaeData, "06F" . $borrowerSsn . "DR", 16, 15); $borrower->setDeclarationAlimonyChildSupportAlimony($this->toFloat($declarationAlimonyChildSupportAlimony)); $declarationAlimonyChildSupportChildSupport = StringUtil::find($fannieMaeData, "06F" . $borrowerSsn . "DT", 16, 15); $borrower->setDeclarationAlimonyChildSupportChildSupport($this->toFloat($declarationAlimonyChildSupportChildSupport)); $declarationAlimonyChildSupportSeparateMaintenance = StringUtil::find($fannieMaeData, "06F" . $borrowerSsn . "DV", 16, 15); $borrower->setDeclarationAlimonyChildSupportSeparateMaintenance($this->toFloat($declarationAlimonyChildSupportSeparateMaintenance)); }