From: phasefx Date: Mon, 11 Apr 2011 16:56:23 +0000 (+0000) Subject: Let's not be picky about permissions here; an item needs to go where it needs to... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2227d3ef9a8058020d482504f7270a91671f2827;p=working%2FEvergreen.git 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/branches/rel_2_1@20041 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 231132fe07..c0b6489ff8 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 || ''; }