From: pines Date: Wed, 20 Sep 2006 13:53:00 +0000 (+0000) Subject: copy status check vs hold X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=775bb115523f47a419400a5880f464961927e33d;p=Evergreen.git copy status check vs hold git-svn-id: svn://svn.open-ils.org/ILS/trunk@6150 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/circ/copy_details.xul b/Open-ILS/xul/staff_client/server/circ/copy_details.xul index d2d8e6aedc..a56c25ecbc 100644 --- a/Open-ILS/xul/staff_client/server/circ/copy_details.xul +++ b/Open-ILS/xul/staff_client/server/circ/copy_details.xul @@ -122,7 +122,11 @@ $('patron_name').setAttribute('value', au_obj.family_name() + ', ' + au_obj.first_given_name() + ' : ' + au_obj.card().barcode() ); } else { - $('hold_caption').setAttribute('label','This item is not captured for a hold.'); + if (g.copy.status() == 8 /* ON HOLDS SHELF */) { + $('hold_caption').setAttribute('label','This item is not captured for a hold, however its status is incorrectly set to "On Holds Shelf". Please check this item in to correct the status.'); + } else { + $('hold_caption').setAttribute('label','This item is not captured for a hold.'); + } $('hold').hidden = true; }