Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 3527

Show
Ignore:
Timestamp:
03/03/08 15:16:22 (10 months ago)
Author:
bwolfe
Message:

Fixing concept date changed on update - #636

Files:

Legend:

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

    r3340 r3527  
    212212        } 
    213213         
     214        /** 
     215         * TODO This should be moved to the service layer 
     216         *  
     217         * @param c 
     218         */ 
    214219        protected void modifyCollections(Concept c) { 
    215220                 
     
    224229                else { 
    225230                        c.setChangedBy(authUser); 
    226                         if (c.getDateChanged() == null) 
    227                                 c.setDateChanged(timestamp); 
     231                        c.setDateChanged(timestamp); 
    228232                } 
    229233