Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/22/08 13:00:18 (3 months ago)
Author:
jmiranda
Message:

Fixed a bug in the data export code that caused data exports with person attributes to fail. Replaced a column reference to 'person.personVoided' with the valid column name 'person.voided'.

Files:

Legend:

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

    r4158 r4340  
    14071407                         
    14081408                        // do not include voided person rows 
    1409                         criteria.add(Expression.eq("personVoided", false)); 
     1409                        criteria.add(Expression.eq("voided", false)); 
    14101410                } 
    14111411                else {