[open-ils-commits] r17936 - in branches/rel_2_0/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:47 EDT 2010
Author: erickson
Date: 2010-09-23 19:01:47 -0400 (Thu, 23 Sep 2010)
New Revision: 17936
Modified:
branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm
branches/rel_2_0/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
Log:
I can has authoritative for selfcheck receipts
Modified: branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm
===================================================================
--- branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm 2010-09-23 23:01:06 UTC (rev 17935)
+++ branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm 2010-09-23 23:01:47 UTC (rev 17936)
@@ -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: branches/rel_2_0/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
===================================================================
--- branches/rel_2_0/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js 2010-09-23 23:01:06 UTC (rev 17935)
+++ branches/rel_2_0/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js 2010-09-23 23:01:47 UTC (rev 17936)
@@ -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