use of org.hisp.dhis.dataset.Section in project dhis2-core by dhis2.
the class HibernateSectionStore method getSectionByName.
@Override
public Section getSectionByName(String name, DataSet dataSet) {
Criteria criteria = getCriteria();
criteria.add(Restrictions.eq("name", name));
criteria.add(Restrictions.eq("dataSet", dataSet));
return (Section) criteria.uniqueResult();
}
use of org.hisp.dhis.dataset.Section in project dhis2-core by dhis2.
the class SaveSectionFormAction method execute.
// -------------------------------------------------------------------------
// Action Implementation
// -------------------------------------------------------------------------
@Override
public String execute() {
Validate.notNull(organisationUnitId);
Validate.notNull(isoPeriod);
Validate.notNull(dataSetId);
OrganisationUnit organisationUnit = organisationUnitService.getOrganisationUnit(organisationUnitId);
Period period = periodService.getPeriod(isoPeriod);
boolean needsValidation = false;
dataSet = dataSetService.getDataSet(dataSetId);
String storedBy = currentUserService.getCurrentUsername();
if (StringUtils.isBlank(storedBy)) {
storedBy = "[unknown]";
}
HttpServletRequest request = (HttpServletRequest) ActionContext.getContext().get(StrutsStatics.HTTP_REQUEST);
Map<String, String> parameterMap = ContextUtils.getParameterMap(request);
for (String key : parameterMap.keySet()) {
if (key.startsWith("DE") && key.contains("OC")) {
String[] splitKey = key.split("OC");
Integer dataElementId = Integer.parseInt(splitKey[0].substring(2));
Integer optionComboId = Integer.parseInt(splitKey[1]);
String value = parameterMap.get(key);
DataElement dataElement = dataElementService.getDataElement(dataElementId);
DataElementCategoryOptionCombo categoryOptionCombo = categoryService.getDataElementCategoryOptionCombo(optionComboId);
DataValue dataValue = dataValueService.getDataValue(dataElement, period, organisationUnit, categoryOptionCombo);
value = value.trim();
Boolean valueIsEmpty = value.length() == 0;
// validate types
Boolean correctType = true;
ValueType valueType = dataElement.getValueType();
if (!valueIsEmpty) {
if (valueType.isText()) {
} else if (ValueType.BOOLEAN == valueType) {
if (!ValueUtils.isBoolean(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_boolean"));
}
} else if (ValueType.DATE == valueType) {
if (!ValueUtils.isDate(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_date"));
}
} else if (ValueType.NUMBER == valueType) {
if (!MathUtils.isNumeric(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_number"));
}
} else if (ValueType.INTEGER == valueType) {
if (!MathUtils.isInteger(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_integer"));
}
} else if (ValueType.INTEGER_POSITIVE == valueType) {
if (!MathUtils.isPositiveInteger(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_positive_integer"));
}
} else if (ValueType.INTEGER_NEGATIVE == valueType) {
if (!MathUtils.isNegativeInteger(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_negative_integer"));
}
} else if (ValueType.INTEGER_ZERO_OR_POSITIVE == valueType) {
if (!MathUtils.isZeroOrPositiveInteger(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_zero_or_positive_integer"));
}
} else if (ValueType.COORDINATE == valueType) {
if (!MathUtils.isCoordinate(value)) {
correctType = false;
typeViolations.put(key, "\"" + value + "\"" + " " + i18n.getString("is_invalid_coordinate"));
}
}
}
// nothing entered
if (valueIsEmpty || !correctType) {
if (dataValue != null) {
dataValueService.deleteDataValue(dataValue);
}
}
if (correctType && !valueIsEmpty) {
if (dataValue == null) {
needsValidation = true;
dataValue = new DataValue(dataElement, period, organisationUnit, categoryOptionCombo, null, value, storedBy, new Date(), null);
dataValueService.addDataValue(dataValue);
} else {
if (!dataValue.getValue().equals(value)) {
needsValidation = true;
dataValue.setValue(value);
dataValue.setLastUpdated(new Date());
dataValue.setStoredBy(storedBy);
dataValueService.updateDataValue(dataValue);
}
}
}
}
}
//TODO
DataElementCategoryOptionCombo optionCombo = categoryService.getDefaultDataElementCategoryOptionCombo();
CompleteDataSetRegistration registration = registrationService.getCompleteDataSetRegistration(dataSet, period, organisationUnit, optionCombo);
if (registration == null && complete) {
registration = new CompleteDataSetRegistration();
registration.setDataSet(dataSet);
registration.setPeriod(period);
registration.setSource(organisationUnit);
registration.setDate(new Date());
registration.setStoredBy(storedBy);
registrationService.saveCompleteDataSetRegistration(registration);
} else if (registration != null && !complete) {
registrationService.deleteCompleteDataSetRegistration(registration);
}
if (typeViolations.size() > 0) {
needsValidation = true;
}
if (sectionId != null) {
for (Section section : dataSet.getSections()) {
if (section.getId() == sectionId) {
name = section.getName();
dataElements = section.getDataElements();
break;
}
}
} else {
name = "Default";
dataElements = new ArrayList<>(dataSet.getDataElements());
Collections.sort(dataElements);
}
dataValues = formUtils.getDataValueMap(organisationUnit, dataSet, period);
validationViolations = formUtils.getValidationViolations(organisationUnit, dataElements, period);
if (needsValidation && (!validationViolations.isEmpty() || !typeViolations.isEmpty())) {
return ERROR;
}
validated = true;
return SUCCESS;
}
use of org.hisp.dhis.dataset.Section in project dhis2-core by dhis2.
the class GetDataSetOverviewAction method execute.
// -------------------------------------------------------------------------
// Action Implementation
// -------------------------------------------------------------------------
@Override
public String execute() {
Validate.notNull(organisationUnitId);
Validate.notNull(isoPeriod);
Validate.notNull(dataSetId);
organisationUnit = organisationUnitService.getOrganisationUnit(organisationUnitId);
period = periodService.getPeriod(isoPeriod);
period.setName(format.formatPeriod(period));
dataSet = dataSetService.getDataSet(dataSetId);
DataElementCategoryOptionCombo optionCombo = categoryService.getDefaultDataElementCategoryOptionCombo();
if (registrationService.getCompleteDataSetRegistration(dataSet, period, organisationUnit, optionCombo) == null) {
completed = false;
} else {
completed = true;
}
if (sectionId != null) {
for (Section section : dataSet.getSections()) {
if (section.getId() == sectionId) {
sectionName = section.getName();
break;
}
}
} else {
sectionName = "Default";
}
validationRuleViolations = formUtils.getValidationRuleViolations(organisationUnit, dataSet, period);
return SUCCESS;
}
use of org.hisp.dhis.dataset.Section in project dhis2-core by dhis2.
the class GetSectionFormAction method execute.
// -------------------------------------------------------------------------
// Action Implementation
// -------------------------------------------------------------------------
@Override
public String execute() {
Validate.notNull(organisationUnitId);
Validate.notNull(isoPeriod);
Validate.notNull(dataSetId);
OrganisationUnit organisationUnit = organisationUnitService.getOrganisationUnit(organisationUnitId);
Period period = periodService.getPeriod(isoPeriod);
dataSet = dataSetService.getDataSet(dataSetId);
dataValues = formUtils.getDataValueMap(organisationUnit, dataSet, period);
validationRuleViolations = formUtils.getValidationRuleViolations(organisationUnit, dataSet, period);
if (dataSet.getFormType().isSection()) {
setGreyedFields();
}
if (sectionId != null) {
for (Section section : dataSet.getSections()) {
if (section.getId() == sectionId) {
name = section.getName();
dataElements = section.getDataElements();
break;
}
}
} else {
name = "Default";
dataElements = new ArrayList<>(dataSet.getDataElements());
Collections.sort(dataElements);
}
validationViolations = formUtils.getValidationViolations(organisationUnit, dataElements, period);
return SUCCESS;
}
use of org.hisp.dhis.dataset.Section in project dhis2-core by dhis2.
the class AnalyticsDataSetReportStore method getAggregatedSubTotals.
@Override
public Map<String, Object> getAggregatedSubTotals(DataSet dataSet, Period period, OrganisationUnit unit, Set<String> dimensions) {
Map<String, Object> dataMap = new HashMap<>();
for (Section section : dataSet.getSections()) {
List<DataElement> dataElements = new ArrayList<>(section.getDataElements());
Set<DataElementCategory> categories = new HashSet<>();
for (DataElementCategoryCombo categoryCombo : section.getCategoryCombos()) {
categories.addAll(categoryCombo.getCategories());
}
FilterUtils.filter(dataElements, AggregatableDataElementFilter.INSTANCE);
if (dataElements.isEmpty() || categories == null || categories.isEmpty()) {
continue;
}
for (DataElementCategory category : categories) {
if (category.isDefault()) {
// No need for sub-total for default
continue;
}
if (!category.isDataDimension()) {
log.warn("Could not get sub-total for category: " + category.getUid() + " for data set report: " + dataSet + ", not a data dimension");
continue;
}
DataQueryParams.Builder params = DataQueryParams.newBuilder().withDataElements(dataElements).withPeriod(period).withOrganisationUnit(unit).withCategory(category);
if (dimensions != null) {
params.addFilters(dataQueryService.getDimensionalObjects(dimensions, null, null, null, false, IdScheme.UID));
}
Map<String, Object> map = analyticsService.getAggregatedDataValueMapping(params.build());
for (Entry<String, Object> entry : map.entrySet()) {
String[] split = entry.getKey().split(SEPARATOR);
dataMap.put(split[0] + SEPARATOR + split[3], entry.getValue());
}
}
}
return dataMap;
}
Aggregations