search for: set_customs_entry_status_for

Displaying 1 result from an estimated 1 matches for "set_customs_entry_status_for".

2012 Nov 12
3
Updating objects in arrays
...en I do this the underlying table row changes but the object in the array frequently does not. For example: count = 0 current_entries.each do |entry| puts( entry.object_id ) puts( current_entries[count].object_id ) puts( "***" ) puts( entry.lock_version ) entry = set_customs_entry_status_for( entry, status ) puts( entry.lock_version ) current_entries[ count ] = entry puts( current_entries[ count ] = entry ) end gives: 58380880 58380880 *** 0 5 5 58378260 61590300 *** 0 5 5 58377460 583925...