Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix error when editing patient with free-text entry in address field … #15

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions ui/app/registration/directives/topDownAddressFields.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ angular.module('bahmni.registration')
if (addressValue) {
addressHierarchyService.search(fieldName, addressValue).then(function(response) {
var address = response.data[0];
selectedAddressUuids[fieldName] = address.uuid;
selectedUserGeneratedIds[fieldName] = address.userGeneratedId;
$scope.$parent.patient.addressCode = selectedUserGeneratedIds[fieldName];
populateSelectedAddressUuids(levelIndex + 1);
if (address) { // need to check, because if this was free-text entry, a match won't be found
selectedAddressUuids[fieldName] = address.uuid;
selectedUserGeneratedIds[fieldName] = address.userGeneratedId;
$scope.$parent.patient.addressCode = selectedUserGeneratedIds[fieldName];
populateSelectedAddressUuids(levelIndex + 1);
}
});
}
};
Expand Down