another typo
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 13 Jul 2006 20:56:32 +0000 (20:56 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 13 Jul 2006 20:56:32 +0000 (20:56 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@4981 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm

index 171e864..44fc4b1 100644 (file)
@@ -952,7 +952,11 @@ sub fetch_fleshed_copy {
        my( $copy, $evt );
        $logger->info("Fetching fleshed copy $id");
        $copy = $self->cstorereq(
-               "open-ils.cstore.fleshed.asset.copy.retrieve", $id );
+               "open-ils.cstore.direct.asset.copy.retrieve", $id,
+               { flesh => 1,
+                 flesh_fields => { acp => [ qw/ circ_lib location status stat_cat_entries / ] }
+               }
+       );
        $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', id => $id) unless $copy;
        return ($copy, $evt);
 }