From 9798cffb073b9bca30da5235abd9f67543faa669 Mon Sep 17 00:00:00 2001 From: pines Date: Tue, 12 Dec 2006 16:16:32 +0000 Subject: [PATCH] bug 107. show create date with age protection git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_0@6679 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/admin/hold_pull_list_classic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/admin/hold_pull_list_classic.js b/Open-ILS/xul/staff_client/server/admin/hold_pull_list_classic.js index f1772cbdc9..cbfc36de91 100644 --- a/Open-ILS/xul/staff_client/server/admin/hold_pull_list_classic.js +++ b/Open-ILS/xul/staff_client/server/admin/hold_pull_list_classic.js @@ -102,7 +102,7 @@ function pullListDrawCopy( tbody, row, hold, idx, copy ) { $n(row, 'copy_number').appendChild(text(copy.copy_number())); try { if (copy.age_protect()) { - $n(row, 'age_protect').appendChild(text( (copy.age_protect() == null ? '' : ( typeof copy.age_protect() == 'object' ? copy.age_protect().name() : g.data.hash.crahp[ copy.age_protect() ].name() )) )); + $n(row, 'age_protect').appendChild(text( (copy.age_protect() == null ? '' : ( typeof copy.age_protect() == 'object' ? copy.age_protect().name() : g.data.hash.crahp[ copy.age_protect() ].name() )) + ' (' + copy.create_date().substr(0,10) + ')' )); unHideMe($n(row, 'age_protect_span')); } } catch(E) { alert(E); } -- 2.11.0