From: phasefx Date: Mon, 2 May 2011 15:05:10 +0000 (+0000) Subject: flesh stat_cat_entries in the call number tree method used by Holdings Maintenance... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7bc4cc627663ef7eb7921bf93a8d58f9a531bc33;p=evergreen%2Fjoelewis.git flesh stat_cat_entries in the call number tree method used by Holdings Maintenance, since those copies get shoved into the copy editor and we want stat cat entries to show up there git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_1@20375 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm index 525871d3c8..152bb5014f 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm @@ -675,7 +675,7 @@ sub _build_volume_list { my $copies = $e->search_asset_copy([ { call_number => $volume->id , deleted => 'f' }, - { flesh => 1, flesh_fields => { acp => ['parts'] } } + { flesh => 1, flesh_fields => { acp => ['stat_cat_entries','parts'] } } ]); $copies = [ sort { $a->barcode cmp $b->barcode } @$copies ];