use of org.openmrs.module.addresshierarchy.AddressHierarchyLevel in project openmrs-module-pihcore by PIH.
the class SectionsPeru method getAddressQuestion.
public Question getAddressQuestion() {
Question q = new Question();
q.setId("personAddressQuestion");
q.setLegend("registrationapp.patient.address");
q.setHeader("registrationapp.patient.address.question");
Field f = new Field();
f.setType("personAddress");
// If there are address hierarchy levels configured, use the address hierarchy widget, otherwise use the standard address widget
List<AddressHierarchyLevel> levels = Context.getService(AddressHierarchyService.class).getAddressHierarchyLevels();
if (levels != null && levels.size() > 0) {
q.setDisplayTemplate(getAddressHierarchyDisplayTemplate(levels));
f.setWidget(getAddressHierarchyWidget(levels, null, true));
} else {
Map<String, String> m = new HashMap<String, String>();
m.put("providerName", "uicommons");
m.put("fragmentId", "field/personAddress");
f.setWidget(toObjectNode(m));
}
q.addField(f);
return q;
}
use of org.openmrs.module.addresshierarchy.AddressHierarchyLevel in project openmrs-module-pihcore by PIH.
the class BaseEncounterDataSetManager method addAddressColumns.
/**
* Add columns based on the configured person address, except for country
*/
protected void addAddressColumns(EncounterDataSetDefinition dsd) {
Map<String, String> nameMappings = AddressSupport.getInstance().getDefaultLayoutTemplate().getNameMappings();
List<AddressHierarchyLevel> levels = Context.getService(AddressHierarchyService.class).getAddressHierarchyLevels();
for (AddressHierarchyLevel level : levels) {
if (level == null)
continue;
AddressField addressField = level.getAddressField();
if (addressField == null)
continue;
String addressProperty = addressField.getName();
if (!"country".equals(addressProperty)) {
String addressPropertyTranslated = MessageUtil.translate(nameMappings.get(addressProperty), Locale.ENGLISH);
String columnName = addressPropertyTranslated != null ? addressPropertyTranslated.toLowerCase().replace(" ", "_") : addressProperty.toLowerCase().replace(" ", "_");
addColumn(dsd, columnName, pihPersonData.getPreferredAddress(), converters.getAddressComponent(addressProperty));
}
}
}
use of org.openmrs.module.addresshierarchy.AddressHierarchyLevel in project openmrs-module-pihcore by PIH.
the class WristbandTemplate method generateWristband.
public String generateWristband(Patient patient, Location location) {
// TODO figure out why this isn't getting autowired properly (at least for tests)
if (addressHierarchyService == null) {
addressHierarchyService = Context.getService(AddressHierarchyService.class);
}
StringBuffer data = new StringBuffer();
data.append("^XA");
// specify Unicode encoding
data.append("^CI28");
// set direct transfer type
data.append("^MTD");
// set orientation
data.append("^FWB");
// visit location & current data
data.append("^FO050,200^FB2150,1,0,L,0^AS^FD" + adtService.getLocationThatSupportsVisits(location).getName() + " " + fullDate.format(new Date()) + "^FS");
// patient name: for now, only printing given and family names
String patientName = null;
if (patient.getPersonName() != null) {
patientName = (patient.getPersonName().getGivenName() != null ? patient.getPersonName().getGivenName() : "") + " " + (patient.getPersonName().getFamilyName() != null ? patient.getPersonName().getFamilyName() : "");
}
data.append("^FO100,200^FB2150,1,0,L,0^AU^FD" + patientName + "^FS");
if (patient.getBirthdate() != null) {
// birthdate (we only show year if birthdate is estimated
DateFormat df = patient.getBirthdateEstimated() ? yearOnly : fullDate;
data.append("^FO160,200^FB2150,1,0,L,0^AU^FD" + df.format(patient.getBirthdate()) + "^FS");
}
if (patient.getAge() != null) {
// age
data.append("^FO160,200^FB1850,1,0,L,0^AT^FD" + messageSourceService.getMessage("coreapps.ageYears", Collections.singletonList(patient.getAge()).toArray(), locale) + "^FS");
}
// gender
data.append("^FO160,200^FB1650,1,0,L,0^AU^FD" + messageSourceService.getMessage("coreapps.gender." + patient.getGender(), null, locale) + " ");
// paper record identifier
PatientIdentifier paperRecordIdentifier = getAppropriatePaperRecordIdentifierForLocation(patient, location);
if (paperRecordIdentifier != null) {
data.append(paperRecordIdentifier.getIdentifier().substring(0, paperRecordIdentifier.getIdentifier().length() - 6) + " " + paperRecordIdentifier.getIdentifier().substring(paperRecordIdentifier.getIdentifier().length() - 6));
}
data.append("^FS");
// address (based on address hierarchy)
PersonAddress address = patient.getPersonAddress();
AddressHierarchyLevel level = addressHierarchyService.getBottomAddressHierarchyLevel();
int numberOfLevels = addressHierarchyService.getAddressHierarchyLevelsCount();
if (address != null && numberOfLevels > 0) {
int levelCount = 1;
if (LOWEST_LEVEL_ON_SEPARATE_LINE) {
String lowestLevelStr = AddressHierarchyUtil.getAddressFieldValue(address, level.getAddressField());
if (StringUtils.isNotBlank(address.getAddress2())) {
data.append("^FO220,200^FB2150,1,0,L,0^AS^FD" + lowestLevelStr + "^FS");
}
levelCount++;
}
StringBuffer addressStr = new StringBuffer();
while (levelCount < numberOfLevels || (!SKIP_HIGHEST_LEVEL && levelCount <= numberOfLevels) && level.getParent() != null) {
// level.getParent() should never equal null as long as levelCount <= numberOfLevels, but just to be safe we will check
level = level.getParent();
String levelStr = AddressHierarchyUtil.getAddressFieldValue(address, level.getAddressField());
if (StringUtils.isNotBlank(levelStr)) {
addressStr.append(levelStr + ", ");
}
levelCount++;
}
if (StringUtils.isNotBlank(addressStr.toString())) {
// trim off trailing comma and space
addressStr.delete(addressStr.length() - 2, addressStr.length());
data.append("^FO270,200^FB2150,1,0,L,0^AS^FD" + addressStr.toString() + "^FS");
}
}
// barcode with primary identifier
PatientIdentifier primaryIdentifier = patient.getPatientIdentifier(emrApiProperties.getPrimaryIdentifierType());
if (primaryIdentifier != null) {
data.append("^FO100,2400^AT^BY4^BC,150,N^FD" + primaryIdentifier.getIdentifier() + "^XZ");
}
return data.toString();
}
use of org.openmrs.module.addresshierarchy.AddressHierarchyLevel in project openmrs-module-pihcore by PIH.
the class BaseObsDataSetManager method addAddressColumns.
/**
* Add columns based on the configured person address, except for country
*/
protected void addAddressColumns(ObsDataSetDefinition dsd) {
Map<String, String> nameMappings = AddressSupport.getInstance().getDefaultLayoutTemplate().getNameMappings();
List<AddressHierarchyLevel> levels = Context.getService(AddressHierarchyService.class).getAddressHierarchyLevels();
for (AddressHierarchyLevel level : levels) {
String addressProperty = level.getAddressField().getName();
if (!"country".equals(addressProperty)) {
String columnName = MessageUtil.translate(nameMappings.get(addressProperty), Locale.ENGLISH).toLowerCase().replace(" ", "_");
addColumn(dsd, columnName, pihPersonData.getPreferredAddress(), converters.getAddressComponent(addressProperty));
}
}
}
use of org.openmrs.module.addresshierarchy.AddressHierarchyLevel in project openmrs-module-pihcore by PIH.
the class AddressBundle method installAddressHierarchyLevels.
/**
* Installed the address hierarchy levels
*/
public void installAddressHierarchyLevels() {
AddressHierarchyService service = Context.getService(AddressHierarchyService.class);
log.info("Installing Address Levels");
AddressHierarchyLevel lastLevel = null;
for (AddressComponent component : getAddressComponents()) {
AddressHierarchyLevel level = new AddressHierarchyLevel();
level.setAddressField(component.getField());
level.setRequired(component.isRequiredInHierarchy());
level.setParent(lastLevel);
service.saveAddressHierarchyLevel(level);
lastLevel = level;
}
}
Aggregations