Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 4631

Show
Ignore:
Timestamp:
06/13/08 13:10:49 (5 months ago)
Author:
catullus
Message:

data_sync_bidirectional: fixing #809.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/synchronization/SyncUtil.java

    r4298 r4631  
    519519                                else Context.getConceptService().updateConcept((Concept)o, true); 
    520520                                */ 
    521                                 if ( !knownToExist ) Context.getConceptService().createConcept((Concept) o); 
     521                                if ( !knownToExist ) Context.getConceptService().createConcept((Concept) o, true); 
    522522                                else Context.getConceptService().updateConcept((Concept) o); 
    523523                        } else if ( "org.openmrs.ConceptAnswer".equals(className) ) {