Search in sources :

Example 1 with AddressHierarchyService

use of org.openmrs.module.addresshierarchy.service.AddressHierarchyService in project openmrs-module-mirebalais 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();
}
Also used : PersonAddress(org.openmrs.PersonAddress) SimpleDateFormat(java.text.SimpleDateFormat) DateFormat(java.text.DateFormat) AddressHierarchyService(org.openmrs.module.addresshierarchy.service.AddressHierarchyService) Date(java.util.Date) PatientIdentifier(org.openmrs.PatientIdentifier) AddressHierarchyLevel(org.openmrs.module.addresshierarchy.AddressHierarchyLevel)

Example 2 with AddressHierarchyService

use of org.openmrs.module.addresshierarchy.service.AddressHierarchyService in project openmrs-module-pihcore by PIH.

the class AddressBundle method installNewVersion.

@Override
protected void installNewVersion() throws Exception {
    AddressHierarchyService service = Context.getService(AddressHierarchyService.class);
    // currently we only install the levels if they haven't been installed; no built-in way to edit anything other than "required" at this point
    // if you need to update your levels, you can delete all the entries in address_hierarchy_level and address_hierarchy_entry before installing a new bundle
    int numberOfLevels = service.getAddressHierarchyLevelsCount();
    if (numberOfLevels == 0) {
        installAddressHierarchyLevels();
    } else {
        updateRequiredProperty();
    }
    installAddressHierarchyEntries();
}
Also used : AddressHierarchyService(org.openmrs.module.addresshierarchy.service.AddressHierarchyService)

Example 3 with AddressHierarchyService

use of org.openmrs.module.addresshierarchy.service.AddressHierarchyService in project openmrs-module-pihcore by PIH.

the class AddressBundle method updateRequiredProperty.

/**
 * Iterate through the levels and update the "required" property in case it has changed
 */
public void updateRequiredProperty() {
    AddressHierarchyService service = Context.getService(AddressHierarchyService.class);
    log.info("Installing Address Levels");
    for (AddressComponent component : getAddressComponents()) {
        AddressHierarchyLevel level = service.getAddressHierarchyLevelByAddressField(component.getField());
        if (level != null) {
            level.setRequired(component.isRequiredInHierarchy());
            service.saveAddressHierarchyLevel(level);
        } else {
            log.warn("AddressHierarchyLevel is null for AddressComponent " + component.getField());
        }
    }
}
Also used : AddressHierarchyService(org.openmrs.module.addresshierarchy.service.AddressHierarchyService) AddressHierarchyLevel(org.openmrs.module.addresshierarchy.AddressHierarchyLevel)

Example 4 with AddressHierarchyService

use of org.openmrs.module.addresshierarchy.service.AddressHierarchyService 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();
}
Also used : PersonAddress(org.openmrs.PersonAddress) SimpleDateFormat(java.text.SimpleDateFormat) DateFormat(java.text.DateFormat) AddressHierarchyService(org.openmrs.module.addresshierarchy.service.AddressHierarchyService) Date(java.util.Date) PatientIdentifier(org.openmrs.PatientIdentifier) AddressHierarchyLevel(org.openmrs.module.addresshierarchy.AddressHierarchyLevel)

Example 5 with AddressHierarchyService

use of org.openmrs.module.addresshierarchy.service.AddressHierarchyService 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;
    }
}
Also used : AddressHierarchyService(org.openmrs.module.addresshierarchy.service.AddressHierarchyService) AddressHierarchyLevel(org.openmrs.module.addresshierarchy.AddressHierarchyLevel)

Aggregations

AddressHierarchyService (org.openmrs.module.addresshierarchy.service.AddressHierarchyService)5 AddressHierarchyLevel (org.openmrs.module.addresshierarchy.AddressHierarchyLevel)4 DateFormat (java.text.DateFormat)2 SimpleDateFormat (java.text.SimpleDateFormat)2 Date (java.util.Date)2 PatientIdentifier (org.openmrs.PatientIdentifier)2 PersonAddress (org.openmrs.PersonAddress)2