use of org.openforis.idm.metamodel.SurveyContext in project collect by openforis.
the class UIOptionsTest method initSurvey.
protected void initSurvey() {
SurveyContext ctx = new CollectSurveyContext(new ExpressionFactory(), new CollectValidator());
survey = (CollectSurvey) ctx.createSurvey();
schema = survey.getSchema();
populateSchema();
initUIOptions();
}
use of org.openforis.idm.metamodel.SurveyContext in project collect by openforis.
the class CalculatedAttributeTest method createTestSurvey.
/**
* Creates a test survey in which there is a bill with a list of items.
* For each item there is a price, a quantity and a total
* (calculated using the an expression or a constant).
*
* @return
*/
private Survey createTestSurvey() {
SurveyContext surveyContext = new TestSurveyContext();
Survey survey = surveyContext.createSurvey();
Schema schema = survey.getSchema();
EntityDefinition root = schema.createEntityDefinition();
root.setName("bill");
schema.addRootEntityDefinition(root);
EntityDefinition item = schema.createEntityDefinition();
item.setName("item");
root.addChildDefinition(item);
NumberAttributeDefinition qty = schema.createNumberAttributeDefinition();
qty.setType(Type.INTEGER);
qty.setName("qty");
item.addChildDefinition(qty);
NumberAttributeDefinition price = schema.createNumberAttributeDefinition();
price.setName("price");
item.addChildDefinition(price);
NumberAttributeDefinition total = schema.createNumberAttributeDefinition();
total.setName("total");
total.setCalculated(true);
total.addAttributeDefault(new AttributeDefault("qty * (price - (price * discount_percent div 100))"));
item.addChildDefinition(total);
TimeAttributeDefinition time = schema.createTimeAttributeDefinition();
time.setName("time");
time.addAttributeDefault(new AttributeDefault("idm:currentTime()"));
item.addChildDefinition(time);
TimeAttributeDefinition timeAlias = schema.createTimeAttributeDefinition();
timeAlias.setName("time_alias");
timeAlias.setCalculated(true);
timeAlias.addAttributeDefault(new AttributeDefault("time"));
item.addChildDefinition(timeAlias);
NumberAttributeDefinition discountPercent = schema.createNumberAttributeDefinition();
discountPercent.setType(Type.INTEGER);
discountPercent.setName("discount_percent");
discountPercent.setCalculated(true);
discountPercent.addAttributeDefault(new AttributeDefault("30", "qty > 50"));
discountPercent.addAttributeDefault(new AttributeDefault("20", "qty > 20"));
discountPercent.addAttributeDefault(new AttributeDefault("10", "qty > 10"));
discountPercent.addAttributeDefault(new AttributeDefault("0", "true()"));
item.addChildDefinition(discountPercent);
return survey;
}
use of org.openforis.idm.metamodel.SurveyContext in project collect by openforis.
the class DefaultValueTest method createTestSurvey.
/**
* Creates a test survey in which there is a bill with a list of items.
* For each item there is a price, a quantity and a total
* (calculated using the an expression or a constant).
*
* @return
*/
protected Survey createTestSurvey() {
SurveyContext surveyContext = new TestSurveyContext();
Survey survey = surveyContext.createSurvey();
Schema schema = survey.getSchema();
EntityDefinition root = schema.createEntityDefinition();
root.setName("bill");
schema.addRootEntityDefinition(root);
EntityDefinition item = schema.createEntityDefinition();
item.setName("item");
root.addChildDefinition(item);
NumberAttributeDefinition qty = schema.createNumberAttributeDefinition();
qty.setType(Type.INTEGER);
qty.setName("qty");
item.addChildDefinition(qty);
NumberAttributeDefinition price = schema.createNumberAttributeDefinition();
price.setName("price");
item.addChildDefinition(price);
NumberAttributeDefinition total = schema.createNumberAttributeDefinition();
total.setName("total");
item.addChildDefinition(total);
{
AttributeDefault attributeDefault = new AttributeDefault();
attributeDefault.setExpression("qty * price");
attributeDefault.setCondition("price > 0");
total.addAttributeDefault(attributeDefault);
}
{
AttributeDefault attributeDefault = new AttributeDefault();
attributeDefault.setValue("0");
attributeDefault.setCondition("price = 0");
total.addAttributeDefault(attributeDefault);
}
return survey;
}
use of org.openforis.idm.metamodel.SurveyContext in project collect by openforis.
the class DependencyGraphTest method createTestSurvey.
private void createTestSurvey() {
SurveyContext surveyContext = new TestSurveyContext();
survey = surveyContext.createSurvey();
Schema schema = survey.getSchema();
rootEntityDef = schema.createEntityDefinition();
rootEntityDef.setName(ROOT_ENTITY_NAME);
schema.addRootEntityDefinition(rootEntityDef);
}
use of org.openforis.idm.metamodel.SurveyContext in project collect by openforis.
the class RecordUpdater method calculateMaxCount.
private int calculateMaxCount(Entity entity, NodeDefinition defn) {
String expression = defn.getMaxCountExpression();
if (!entity.isRelevant(defn) || StringUtils.isBlank(expression)) {
return defn.isMultiple() ? Integer.MAX_VALUE : 1;
}
if (defn.getFixedMaxCount() != null) {
return defn.getFixedMaxCount();
}
try {
SurveyContext surveyContext = defn.getSurvey().getContext();
ExpressionEvaluator expressionEvaluator = surveyContext.getExpressionEvaluator();
Number value = expressionEvaluator.evaluateNumericValue(entity, null, expression);
return value == null ? Integer.MAX_VALUE : value.intValue();
} catch (InvalidExpressionException e) {
throw new IdmInterpretationError("Error evaluating required expression", e);
}
}
Aggregations