Cleaned up action triggers a little bit. Added the editor param to the auto lost... collab/Callender/action_trigger_cleanup
authorSteven Callender <stevecallender@esilibrary.com>
Thu, 25 Aug 2011 14:36:29 +0000 (14:36 +0000)
committerSteven Callender <stevecallender@esilibrary.com>
Thu, 25 Aug 2011 14:36:29 +0000 (14:36 +0000)
Also removed the using of simple_records in some of the notices and changed it to something more effecient.
Changed the using of total money owed, to balance owed.

Signed-off-by: Steven Callender <stevecallender@esilibrary.com>
Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql
Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
Open-ILS/src/sql/Pg/950.data.seed-values.sql

index 28deca4..5aa9bbf 100644 (file)
@@ -3507,8 +3507,8 @@ The item(s) you requested are available for pickup from the Library.
 
 [% FOR hold IN target %]
     [%- copy_details = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
-    Title: [% helpers.escape_xml(copy_details.title) %]
-    Author: [% helpers.escape_xml(copy_details.author) %]
+    Title: [% copy_details.title %]
+    Author: [% copy_details.author %]
     Call Number: [% hold.current_copy.call_number.label %]
     Barcode: [% hold.current_copy.barcode %]
     Library: [% hold.pickup_lib.name %]
index cbdcc69..67e8596 100644 (file)
@@ -2733,8 +2733,8 @@ no action is required.
 
 [% FOR hold IN target %]
     [%- copy_details = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
-    Title: [% helpers.escape_xml(copy_details.title) %]
-    Author: [% helpers.escape_xml(copy_details.author) %]
+    Title: [% copy_details.title %]
+    Author: [% copy_details.author %]
 [% END %]
 $$
 );
index c41e70f..de15392 100644 (file)
@@ -5096,8 +5096,8 @@ The item(s) you requested are available for pickup from the Library.
 
 [% FOR hold IN target %]
     [%- copy_details = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
-    Title: [% helpers.escape_xml(copy_details.title) %]
-    Author: [% helpers.escape_xml(copy_details.author) %]
+    Title: [% copy_details.title %]
+    Author: [% copy_details.author %]
     Call Number: [% hold.current_copy.call_number.label %]
     Barcode: [% hold.current_copy.barcode %]
     Library: [% hold.pickup_lib.name %]
@@ -5229,8 +5229,8 @@ no action is required.
 
 [% FOR hold IN target %]
     [%- copy_details = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
-    Title: [% helpers.escape_xml(copy_details.title) %]
-    Author: [% helpers.escape_xml(copy_details.author) %]
+    Title: [% copy_details.title %]
+    Author: [% copy_details.author %]
 [% END %]
 $$
 );