From 8043a1123318e19b13d5454537876e92571ab4da Mon Sep 17 00:00:00 2001 From: Lebbeous Fogle-Weekley Date: Mon, 25 Feb 2013 15:51:57 -0500 Subject: [PATCH] acq batch lineitem updater - fix circ mod and collection_code in acqdf i'face Signed-off-by: Lebbeous Fogle-Weekley --- Open-ILS/src/templates/conify/global/acq/distribution_formula.tt2 | 2 +- Open-ILS/web/js/ui/default/conify/global/acq/distribution_formula.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/conify/global/acq/distribution_formula.tt2 b/Open-ILS/src/templates/conify/global/acq/distribution_formula.tt2 index 45d29efff5..2132d9fcce 100644 --- a/Open-ILS/src/templates/conify/global/acq/distribution_formula.tt2 +++ b/Open-ILS/src/templates/conify/global/acq/distribution_formula.tt2 @@ -63,7 +63,7 @@
-
+
diff --git a/Open-ILS/web/js/ui/default/conify/global/acq/distribution_formula.js b/Open-ILS/web/js/ui/default/conify/global/acq/distribution_formula.js index dee35e0150..d20c81e316 100644 --- a/Open-ILS/web/js/ui/default/conify/global/acq/distribution_formula.js +++ b/Open-ILS/web/js/ui/default/conify/global/acq/distribution_formula.js @@ -159,6 +159,11 @@ function addEntry(entry) { dijitArgs : (field == 'item_count') ? {min:1, places:0} : null }).build( function(w, ww) { + /* kludge for glitchy textbox */ + if (field == "collection_code") { + w.focus(); + byName(row, "owning_lib").focus(); + } dojo.connect(w, 'onChange', function(newVal) { entry[field]( newVal ); -- 2.11.0