[open-ils-commits] r15788 - branches/rel_1_6_0/Open-ILS/xul/staff_client/server/cat (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Mar 11 05:11:20 EST 2010
Author: phasefx
Date: 2010-03-11 05:11:15 -0500 (Thu, 11 Mar 2010)
New Revision: 15788
Modified:
branches/rel_1_6_0/Open-ILS/xul/staff_client/server/cat/copy_summary.xul
Log:
backport changeset 15162: this should fix some of those set_text on column errors in bill Full Details
Modified: branches/rel_1_6_0/Open-ILS/xul/staff_client/server/cat/copy_summary.xul
===================================================================
--- branches/rel_1_6_0/Open-ILS/xul/staff_client/server/cat/copy_summary.xul 2010-03-11 10:06:11 UTC (rev 15787)
+++ branches/rel_1_6_0/Open-ILS/xul/staff_client/server/cat/copy_summary.xul 2010-03-11 10:11:15 UTC (rev 15788)
@@ -94,16 +94,16 @@
function acn_callback(rreq) {
try {
- $w('barcode',copy.barcode());
- $w('ref',get_bool(copy.ref()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
- $w('opac_visible',get_bool(copy.opac_visible()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
- $w('circulate',get_bool(copy.circulate()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
- $w('holdable',get_bool(copy.holdable()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
- $w('age_protect',copy.age_protect() == null ? $('staff.cat.copy_summary.unset') : ( typeof copy.age_protect() == 'object' ? copy.age_protect().name() : g.data.hash.crahp[ copy.age_protect() ].name() ) );
- $w('location',typeof copy.location() == 'object' ? copy.location().name() : g.data.lookup('acpl',copy.location()).name() );
- $w('create_date',util.date.formatted_date(copy.create_date(),'%F'));
- $w('edit_date',util.date.formatted_date(copy.edit_date(),'%F'));
- $w('status',typeof copy.status() == 'object' ? copy.status().name() : g.data.hash.ccs[ copy.status() ].name() );
+ $w('copy_summary_barcode',copy.barcode());
+ $w('copy_summary_ref',get_bool(copy.ref()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
+ $w('copy_summary_opac_visible',get_bool(copy.opac_visible()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
+ $w('copy_summary_circulate',get_bool(copy.circulate()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
+ $w('copy_summary_holdable',get_bool(copy.holdable()) ? $('catStrings').getString('staff.cat.copy_summary.yes') : $('catStrings').getString('staff.cat.copy_summary.no'));
+ $w('copy_summary_age_protect',copy.age_protect() == null ? $('staff.cat.copy_summary.unset') : ( typeof copy.age_protect() == 'object' ? copy.age_protect().name() : g.data.hash.crahp[ copy.age_protect() ].name() ) );
+ $w('copy_summary_location',typeof copy.location() == 'object' ? copy.location().name() : g.data.lookup('acpl',copy.location()).name() );
+ $w('copy_summary_create_date',util.date.formatted_date(copy.create_date(),'%F'));
+ $w('copy_summary_edit_date',util.date.formatted_date(copy.edit_date(),'%F'));
+ $w('copy_summary_status',typeof copy.status() == 'object' ? copy.status().name() : g.data.hash.ccs[ copy.status() ].name() );
} catch(E) {
g.error.standard_unexpected_error_alert('rendering copy',E);
}
@@ -112,14 +112,14 @@
if (typeof cn.ilsevent != 'undefined') {
switch(Number(cn.ilsevent)) {
case 1508 /* ASSET_CALL_NUMBER_NOT_FOUND */ :
- $w('callnumber', $('catStrings').getString('staff.cat.copy_summary.not_cataloged'));
+ $w('copy_summary_callnumber', $('catStrings').getString('staff.cat.copy_summary.not_cataloged'));
break;
default:
throw(cn);
break;
}
} else {
- $w('callnumber',cn.label());
+ $w('copy_summary_callnumber',cn.label());
}
g.list.append({'row':{'my':{'acp':copy,'acn':cn}}});
} catch(E) {
@@ -151,7 +151,7 @@
try {
var robj = req.getResultObject();
if (typeof robj.ilsevent != 'undefined') throw(robj);
- $w('total_circs',robj.total.count);
+ $w('copy_summary_total_circs',robj.total.count);
} catch(E) {
g.error.standard_unexpected_error_alert('retrieving circ total',E);
}
@@ -202,33 +202,33 @@
<rows>
<row>
<label style="font-weight: bold" value="&staff.cat.copy_summary.barcode.label;"/>
- <label id="barcode" style="color: blue; text-decoration: underline; -moz-user-focus: normal;" onclick="copy_to_clipboard(event);"/>
+ <label id="copy_summary_barcode" style="color: blue; text-decoration: underline; -moz-user-focus: normal;" onclick="copy_to_clipboard(event);"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.location.label;"/>
- <label id="location"/>
+ <label id="copy_summary_location"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.call_number.label;"/>
- <label id="callnumber"/>
+ <label id="copy_summary_callnumber"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.status.label;"/>
- <label id="status"/>
+ <label id="copy_summary_status"/>
</row>
<row>
<label style="font-weight: bold" value="&staff.cat.copy_summary.circulate.label;"/>
- <label id="circulate"/>
+ <label id="copy_summary_circulate"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.reference.label;"/>
- <label id="ref"/>
+ <label id="copy_summary_ref"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.holdable.label;"/>
- <label id="holdable"/>
+ <label id="copy_summary_holdable"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.opac_visible.label;"/>
- <label id="opac_visible"/>
+ <label id="copy_summary_opac_visible"/>
</row>
<row>
<label style="font-weight: bold" value="&staff.cat.copy_summary.created.label;"/>
- <label id="create_date"/>
+ <label id="copy_summary_create_date"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.edited.label;"/>
- <label id="edit_date"/>
+ <label id="copy_summary_edit_date"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.age_protect.label;"/>
- <label id="age_protect"/>
+ <label id="copy_summary_age_protect"/>
<label style="font-weight: bold" value="&staff.cat.copy_summary.total_circs.label;"/>
- <label id="total_circs"/>
+ <label id="copy_summary_total_circs"/>
</row>
</rows>
</grid>
More information about the open-ils-commits
mailing list