From: phasefx Date: Mon, 2 May 2011 15:04:54 +0000 (+0000) Subject: flesh stat_cat_entries in the call number tree method used by Holdings Maintenance... X-Git-Url: http://git.equinoxoli.org/?p=evergreen-equinox.git;a=commitdiff_plain;h=d3c0ddbc5a51f9755897e16b35e90579fbc8bf65 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/trunk@20374 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 525871d..152bb50 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 ];