[open-ils-commits] r8536 - branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jan 30 12:27:57 EST 2008


Author: phasefx
Date: 2008-01-30 12:00:26 -0500 (Wed, 30 Jan 2008)
New Revision: 8536

Modified:
   branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js
   branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js
   branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js
   branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js
Log:
fixes broken offline templates

Modified: branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js
===================================================================
--- branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js	2008-01-30 16:19:11 UTC (rev 8535)
+++ branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkin.js	2008-01-30 17:00:26 UTC (rev 8536)
@@ -112,7 +112,7 @@
 					'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 );

Modified: branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js
===================================================================
--- branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js	2008-01-30 16:19:11 UTC (rev 8535)
+++ branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_checkout.js	2008-01-30 17:00:26 UTC (rev 8536)
@@ -268,7 +268,7 @@
 					'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 );

Modified: branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js
===================================================================
--- branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js	2008-01-30 16:19:11 UTC (rev 8535)
+++ branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_in_house_use.js	2008-01-30 17:00:26 UTC (rev 8536)
@@ -115,7 +115,7 @@
 					'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 );

Modified: branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js
===================================================================
--- branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js	2008-01-30 16:19:11 UTC (rev 8535)
+++ branches/rel_1_2_1/Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js	2008-01-30 17:00:26 UTC (rev 8536)
@@ -227,7 +227,7 @@
 							'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 );



More information about the open-ils-commits mailing list