- Timestamp:
- 04/25/08 16:33:10 (2 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/Open-ILS/src/perlmods/OpenILS/Application/Cat/Merge.pm
r8951 r9452 39 39 my( $editor, $master, $records ) = @_; 40 40 41 # bib records are global objects, so no org context required. 42 return (undef, $editor->die_event) 43 unless $editor->allowed('MERGE_BIB_RECORDS'); 44 41 45 my $vol; 42 46 my $evt; … … 134 138 $record->editor($reqr->id); 135 139 $record->edit_date('now'); 136 $editor->update_biblio_record_entry($record , {checkperm => 1})140 $editor->update_biblio_record_entry($record) 137 141 or return $editor->die_event; 138 142 } … … 143 147 $record->editor($reqr->id); 144 148 $record->edit_date('now'); 145 $editor->update_biblio_record_entry($record , {checkperm => 1})149 $editor->update_biblio_record_entry($record) 146 150 or return $editor->die_event; 147 151 } … … 217 221 $_->editor($editor->requestor->id); 218 222 $_->edit_date('now'); 219 return (undef,$editor->die_event) unless $editor->allowed('UPDATE_VOLUME', $_->owning_lib);220 223 $editor->update_asset_call_number($_) or return (undef, $editor->die_event); 221 224 merge_volume_holds($editor, $bigcn, $_->id);
