From 32123382505e7eac228d34d028eac32b4d170738 Mon Sep 17 00:00:00 2001 From: phasefx Date: Wed, 30 Jan 2008 17:00:26 +0000 Subject: [PATCH] fixes broken offline templates git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2_1@8536 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js | 2 +- Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js | 2 +- Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js | 2 +- Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js b/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js index 1538eefc46..19b6d0284f 100644 --- a/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js +++ b/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js @@ -112,7 +112,7 @@ function next_patron() { 'line_item' : g.data.print_list_templates.offline_checkin.line_item, 'footer' : g.data.print_list_templates.offline_checkin.footer, 'type' : g.data.print_list_templates.offline_checkin.type, - 'list' : g.list.dump(), + 'list' : g.list.dump_with_keys(), }; JSAN.use('util.print'); var print = new util.print(); print.tree_list( params ); diff --git a/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js b/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js index 1b7f59cc56..13502357e8 100644 --- a/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js +++ b/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js @@ -268,7 +268,7 @@ function next_patron(cancel) { 'line_item' : g.data.print_list_templates.offline_checkout.line_item, 'footer' : g.data.print_list_templates.offline_checkout.footer, 'type' : g.data.print_list_templates.offline_checkout.type, - 'list' : g.list.dump(), + 'list' : g.list.dump_with_keys(), }; JSAN.use('util.print'); var print = new util.print(); print.tree_list( params ); diff --git a/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js b/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js index 01ab53bd07..273ef2a3f7 100644 --- a/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js +++ b/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js @@ -115,7 +115,7 @@ function next_patron() { 'line_item' : g.data.print_list_templates.offline_inhouse_use.line_item, 'footer' : g.data.print_list_templates.offline_inhouse_use.footer, 'type' : g.data.print_list_templates.offline_inhouse_use.type, - 'list' : g.list.dump(), + 'list' : g.list.dump_with_keys(), }; JSAN.use('util.print'); var print = new util.print(); print.tree_list( params ); diff --git a/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js b/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js index 1437a7ebbe..9906bb1dfe 100644 --- a/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js +++ b/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js @@ -227,7 +227,7 @@ function next_patron(cancel) { 'line_item' : g.data.print_list_templates.offline_renew.line_item, 'footer' : g.data.print_list_templates.offline_renew.footer, 'type' : g.data.print_list_templates.offline_renew.type, - 'list' : g.list.dump(), + 'list' : g.list.dump_with_keys(), }; JSAN.use('util.print'); var print = new util.print(); print.tree_list( params ); -- 2.11.0