From 0ff7cda603c6793aee1d95d2a49839d5a53822d3 Mon Sep 17 00:00:00 2001 From: phasefx Date: Wed, 14 Dec 2005 17:45:29 +0000 Subject: [PATCH] toward checkin git-svn-id: svn://svn.open-ils.org/ILS/trunk@2378 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../chrome/content/evergreen/main/constants.js | 1 + Open-ILS/xul/staff_client/server/main/menu.js | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/Open-ILS/xul/staff_client/chrome/content/evergreen/main/constants.js b/Open-ILS/xul/staff_client/chrome/content/evergreen/main/constants.js index 30e34fde0e..4b61dfd91b 100644 --- a/Open-ILS/xul/staff_client/chrome/content/evergreen/main/constants.js +++ b/Open-ILS/xul/staff_client/chrome/content/evergreen/main/constants.js @@ -24,6 +24,7 @@ var api = { var urls = { 'opac' : 'http://dev.gapines.org/', + 'remote_checkin' : '/xul/server/circ/checkin.xul', 'remote_checkout' : '/xul/server/circ/checkout.xul', 'remote_debug_console' : '/xul/server/util/shell.html', 'remote_debug_fieldmapper' : '/xul/server/util/fieldmapper.xul', diff --git a/Open-ILS/xul/staff_client/server/main/menu.js b/Open-ILS/xul/staff_client/server/main/menu.js index a3f36b644b..563b78c804 100644 --- a/Open-ILS/xul/staff_client/server/main/menu.js +++ b/Open-ILS/xul/staff_client/server/main/menu.js @@ -68,6 +68,12 @@ main.menu.prototype = { /* Circulation Menu */ + 'cmd_circ_checkin' : [ + ['command','keypress'], + function() { + obj.set_tab(urls.remote_checkin + '?session='+obj.w.escape(session),{},{}); + } + ], 'cmd_circ_checkout' : [ ['command','keypress'], function() { @@ -75,6 +81,7 @@ main.menu.prototype = { } ], + /* Admin menu */ 'cmd_test_html' : [ ['command','keypress'], -- 2.43.2