From: phasefx Date: Mon, 11 Apr 2011 16:55:56 +0000 (+0000) Subject: Let's not be picky about permissions here; an item needs to go where it needs to... X-Git-Url: http://git.equinoxoli.org/?p=evergreen-equinox.git;a=commitdiff_plain;h=0762a085ee9eaaeb2c3d2ef873e624f912971e29 Let's not be picky about permissions here; an item needs to go where it needs to go :) git-svn-id: svn://svn.open-ils.org/ILS/trunk@20040 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index 231132f..c0b6489 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -2978,7 +2978,7 @@ circ.util.checkin_via_barcode2 = function(session,params,backdate,auto_print,che print_data.route_to_org = lib; print_data.route_to_msg = document.getElementById('circStrings').getFormattedString('staff.circ.utils.route_to.destination', [check.route_to]); print_data.route_to_org_fullname = lib.name(); - var aous_req = network.simple_request('FM_AOUS_SPECIFIC_RETRIEVE',[ lib.id(), 'lib.courier_code', ses() ]); + var aous_req = network.simple_request('FM_AOUS_SPECIFIC_RETRIEVE',[ lib.id(), 'lib.courier_code' ]); if (aous_req) { print_data.courier_code = aous_req.value || ''; }