From 69d67f1610f62e29cf901931cbf1a708371b8d14 Mon Sep 17 00:00:00 2001 From: pines Date: Fri, 1 Sep 2006 14:52:22 +0000 Subject: [PATCH] bare bones transit list. need to add actions, a print template, and trim the columns git-svn-id: svn://svn.open-ils.org/ILS/trunk@5830 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../staff_client/chrome/content/main/constants.js | 2 + Open-ILS/xul/staff_client/server/admin/index.xhtml | 3 + .../xul/staff_client/server/admin/transit_list.xul | 199 +++++++++++++++++++++ Open-ILS/xul/staff_client/server/circ/util.js | 2 +- 4 files changed, 205 insertions(+), 1 deletion(-) create mode 100644 Open-ILS/xul/staff_client/server/admin/transit_list.xul diff --git a/Open-ILS/xul/staff_client/chrome/content/main/constants.js b/Open-ILS/xul/staff_client/chrome/content/main/constants.js index 66448216b5..7a77ea4d55 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/constants.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/constants.js @@ -81,6 +81,8 @@ const api = { 'FM_ASV_RETRIEVE_REQUIRED' : { 'app' : 'open-ils.circ', 'method' : 'open-ils.circ.survey.retrieve.required' }, 'FM_ASVR_RETRIEVE' : { 'app' : 'open-ils.circ', 'method' : 'open-ils.circ.survey.response.retrieve' }, 'FM_ATC_VOID' : { 'app' : 'open-ils.circ', 'method' : 'open-ils.circ.transit.abort' }, + 'FM_ATC_RETRIEVE' : { 'app' : 'open-ils.circ', 'method' : 'open-ils.circ.transit.retrieve' }, + 'FM_ATC_RETRIEVE_VIA_AOU' : { 'app' : 'open-ils.circ', 'method' : 'open-ils.circ.transit.retrieve_by_lib' }, 'FM_AU_IDS_RETRIEVE_VIA_HASH' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.patron.search.advanced' }, 'FM_AU_LIST_RETRIEVE_VIA_GROUP' : { 'app' : 'open-ils.actor', 'method' : 'open-ils.actor.usergroup.members.retrieve' }, 'FM_AU_RETRIEVE_VIA_SESSION' : { 'app' : 'open-ils.auth', 'method' : 'open-ils.auth.session.retrieve' }, diff --git a/Open-ILS/xul/staff_client/server/admin/index.xhtml b/Open-ILS/xul/staff_client/server/admin/index.xhtml index 5b1194d9c6..eabffeb8ea 100644 --- a/Open-ILS/xul/staff_client/server/admin/index.xhtml +++ b/Open-ILS/xul/staff_client/server/admin/index.xhtml @@ -59,6 +59,9 @@
Cash Reports
+
+ Transit List +
diff --git a/Open-ILS/xul/staff_client/server/admin/transit_list.xul b/Open-ILS/xul/staff_client/server/admin/transit_list.xul new file mode 100644 index 0000000000..21964f8190 --- /dev/null +++ b/Open-ILS/xul/staff_client/server/admin/transit_list.xul @@ -0,0 +1,199 @@ + + + + + + + + + + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index f757c8b332..7b490bd128 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -6,7 +6,7 @@ circ.util = {}; circ.util.EXPORT_OK = [ 'offline_checkout_columns', 'offline_checkin_columns', 'offline_renew_columns', 'offline_inhouse_use_columns', 'columns', 'hold_columns', 'checkin_via_barcode', 'std_map_row_to_column', 'hold_capture_via_copy_barcode', - 'show_last_few_circs', 'abort_transits' + 'show_last_few_circs', 'abort_transits', 'transit_columns' ]; circ.util.EXPORT_TAGS = { ':all' : circ.util.EXPORT_OK }; -- 2.11.0