From 775bb115523f47a419400a5880f464961927e33d Mon Sep 17 00:00:00 2001 From: pines Date: Wed, 20 Sep 2006 13:53:00 +0000 Subject: [PATCH] copy status check vs hold git-svn-id: svn://svn.open-ils.org/ILS/trunk@6150 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/copy_details.xul | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; } -- 2.11.0