Skip to content
This repository has been archived by the owner on Feb 1, 2019. It is now read-only.

Commit

Permalink
Merge pull request #309 from porterbot/IRSrefine
Browse files Browse the repository at this point in the history
used hmdaFile instead of LARs to access agencyCode and respondentID for ...
  • Loading branch information
doelleri committed Mar 24, 2015
2 parents f1620dc + 5eca139 commit 324c4ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/controllers/irsReport.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
*/
module.exports = /*@ngInject*/ function ($scope, $location, $q, HMDAEngine, Session) {

var LARs = HMDAEngine.getHmdaJson().hmdaFile.loanApplicationRegisters;
var hmdaFile = HMDAEngine.getHmdaJson().hmdaFile;

/* istanbul ignore if debug */
if (HMDAEngine.getDebug()) {
console.time('total time for IRS report');
}

// Initialize scope
HMDAEngine.getTotalsByMSA(LARs).then(function(response) {
HMDAEngine.getTotalsByMSA(hmdaFile).then(function(response) {

/* istanbul ignore if debug */
if (HMDAEngine.getDebug()) {
Expand Down

0 comments on commit 324c4ab

Please sign in to comment.