From: pines Date: Sat, 19 Aug 2006 15:37:21 +0000 (+0000) Subject: holds handled with damaged/missing X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dde60d9d1cd3323a34e95d8f3f704319a6a7a933;p=evergreen%2Fpines.git holds handled with damaged/missing git-svn-id: svn://svn.open-ils.org/ILS/trunk@5602 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/cat/util.js b/Open-ILS/xul/staff_client/server/cat/util.js index 82b55eb6ab..814d724fff 100644 --- a/Open-ILS/xul/staff_client/server/cat/util.js +++ b/Open-ILS/xul/staff_client/server/cat/util.js @@ -216,7 +216,7 @@ cat.util.mark_item_damaged = function(copy_ids) { } else { - var r = error.yns_alert('Change the status for these items to Damaged? You will have to manually retrieve the last circulation if you need to bill a patron. You will also have to manually adjust any pertinent holds. Barcodes: ' + util.functional.map_list( copies, function(o) { return o.barcode(); } ).join(", "), 'Mark Damaged', 'OK', 'Cancel', null, 'Check here to confirm this action'); + var r = error.yns_alert('Change the status for these items to Damaged? You will have to manually retrieve the last circulation if you need to bill a patron. Barcodes: ' + util.functional.map_list( copies, function(o) { return o.barcode(); } ).join(", "), 'Mark Damaged', 'OK', 'Cancel', null, 'Check here to confirm this action'); if (r == 0) { var count = 0; @@ -258,7 +258,7 @@ cat.util.mark_item_missing = function(copy_ids) { } else { - var r = error.yns_alert('Change the status for these items to Missing? You will have to manually adjust any pertinent holds. Barcodes: ' + util.functional.map_list( copies, function(o) { return o.barcode(); } ).join(", "), 'Mark Missing', 'OK', 'Cancel', null, 'Check here to confirm this action'); + var r = error.yns_alert('Change the status for these items to Missing? Barcodes: ' + util.functional.map_list( copies, function(o) { return o.barcode(); } ).join(", "), 'Mark Missing', 'OK', 'Cancel', null, 'Check here to confirm this action'); if (r == 0) { var count = 0;