Changeset 5204
- Timestamp:
- 08/08/08 13:32:44 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/chica/ruleLibrary/consumeWeight.java
r5113 r5204 123 123 ConceptService conceptService = Context.getConceptService(); 124 124 125 if(primaryResult == null && secondaryResult == null){ 125 if((primaryResult == null || primaryResult.length() == 0) && 126 (secondaryResult == null || secondaryResult.length() == 0)){ 126 127 return Result.emptyResult(); 127 128 }