From 954fc76e5f5bf19ed4c22d15068810070c83f6e5 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 21 Apr 2008 17:41:57 +0000 Subject: [PATCH] making use of the new orgunitfilteringselect git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@9407 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../templates/oils/default/acq/financial/view_funding_source.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html index fb85ed6e79..1e69655c99 100644 --- a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_source.html @@ -12,6 +12,7 @@ dojo.require("dijit.form.Textarea"); dojo.require("dijit.form.CurrencyTextBox"); dojo.require('openils.acq.FundingSource'); + dojo.require('openils.Event'); var ses = new OpenSRF.ClientSession('open-ils.acq'); var fundingSourceID = ${c.oils.acq.funding_source_id}; @@ -39,6 +40,11 @@ req.oncomplete = function(r) { var msg = req.recv(); fundingSource = msg.content(); + var evt = openils.Event.parse(fundingSource); + if(evt) { + alert(evt); + return; + } loadFSGrid(); } req.send(); -- 2.11.0