Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/24/08 14:37:02 (8 months ago)
Author:
bwolfe
Message:

Merging api-refactoring to trunk [3595]:[4355]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/trunk/src/api/org/openmrs/api/db/hibernate/HibernatePatientSetDAO.java

    r4340 r4358  
    457457                ids.addAll(query.list()); 
    458458                 
    459                 return new Cohort(ids); 
     459                return new Cohort("All patients", "", ids); 
    460460        } 
    461461         
     
    14071407                         
    14081408                        // do not include voided person rows 
    1409                         criteria.add(Expression.eq("voided", false)); 
     1409                        criteria.add(Expression.eq("personVoided", false)); 
    14101410                } 
    14111411                else {