[open-ils-commits] r20374 - trunk/Open-ILS/src/perlmods/lib/OpenILS/Application (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon May 2 11:04:56 EDT 2011
Author: phasefx
Date: 2011-05-02 11:04:54 -0400 (Mon, 02 May 2011)
New Revision: 20374
Modified:
trunk/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm
Log:
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
Modified: trunk/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm 2011-05-02 14:06:36 UTC (rev 20373)
+++ trunk/Open-ILS/src/perlmods/lib/OpenILS/Application/Cat.pm 2011-05-02 15:04:54 UTC (rev 20374)
@@ -675,7 +675,7 @@
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 ];
More information about the open-ils-commits
mailing list