[open-ils-commits] r17935 - in trunk/Open-ILS: src/perlmods/OpenILS/Application web/js/ui/default/circ/selfcheck (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Sep 23 19:01:07 EDT 2010


Author: erickson
Date: 2010-09-23 19:01:06 -0400 (Thu, 23 Sep 2010)
New Revision: 17935

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm
   trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
Log:
I can has authoritative for selfcheck receipts

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm	2010-09-23 21:00:20 UTC (rev 17934)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm	2010-09-23 23:01:06 UTC (rev 17935)
@@ -1456,6 +1456,7 @@
 __PACKAGE__->register_method(
 	method	=> "fire_circ_events", 
 	api_name	=> "open-ils.circ.fire_circ_trigger_events",
+    authoritative => 1,
     signature => q/
         General event def runner for circ objects.  If no event def ID
         is provided, the hook will be used to find the best event_def
@@ -1466,6 +1467,7 @@
 __PACKAGE__->register_method(
 	method	=> "fire_circ_events", 
 	api_name	=> "open-ils.circ.fire_hold_trigger_events",
+    authoritative => 1,
     signature => q/
         General event def runner for hold objects.  If no event def ID
         is provided, the hook will be used to find the best event_def
@@ -1476,6 +1478,7 @@
 __PACKAGE__->register_method(
 	method	=> "fire_circ_events", 
 	api_name	=> "open-ils.circ.fire_user_trigger_events",
+    authoritative => 1,
     signature => q/
         General event def runner for user objects.  If no event def ID
         is provided, the hook will be used to find the best event_def

Modified: trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
===================================================================
--- trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js	2010-09-23 21:00:20 UTC (rev 17934)
+++ trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js	2010-09-23 23:01:06 UTC (rev 17935)
@@ -1216,7 +1216,7 @@
 
     var self = this;
     fieldmapper.standardRequest(
-        ['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events'],
+        ['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events.authoritative'],
         {   
             async : true,
             params : params,
@@ -1285,7 +1285,7 @@
 
     var self = this;
     fieldmapper.standardRequest(
-        ['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events'],
+        ['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events.authoritative'],
         {   
             async : true,
             params : params,



More information about the open-ils-commits mailing list