From 2bd022aee95c8f00f4a359a2025ede93308e1c25 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Thu, 11 Jun 2015 16:58:15 -0400 Subject: [PATCH] copy status checkout_ok conify Signed-off-by: Bill Erickson --- Open-ILS/web/conify/global/config/copy_status.html | 12 ++++++++++++ Open-ILS/web/js/dojo/openils/conify/nls/conify.js | 1 + 2 files changed, 13 insertions(+) diff --git a/Open-ILS/web/conify/global/config/copy_status.html b/Open-ILS/web/conify/global/config/copy_status.html index 262eaf21c9..c9a3699487 100644 --- a/Open-ILS/web/conify/global/config/copy_status.html +++ b/Open-ILS/web/conify/global/config/copy_status.html @@ -226,6 +226,18 @@ return false; } } + }, + { name : ccs_strings.CHECKOUT_OK, + field : "checkout_ok", + editor : dojox.grid.editors.bool, + get : function (row) { + var r = window.status_data_model.getRow(row); + if (r) { + var h = r.checkout_ok; + if (h == 't' || h === true) return true; + return false; + } + } } ] ] diff --git a/Open-ILS/web/js/dojo/openils/conify/nls/conify.js b/Open-ILS/web/js/dojo/openils/conify/nls/conify.js index 608b99836f..c8e9227581 100644 --- a/Open-ILS/web/js/dojo/openils/conify/nls/conify.js +++ b/Open-ILS/web/js/dojo/openils/conify/nls/conify.js @@ -7,6 +7,7 @@ "CONFIRM_EXIT_PPL": "There are unsaved modified permissions. Click OK to save these changes, or Cancel to abandon them.", "CONFIRM_UNSAVED_CHANGES": "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them.", "COPY_ACTIVE": "Sets copy active", + "CHECKOUT_OK": "Checkout OK", "ERROR_CALLING_METHOD_AOUT": "Problem calling method to create child organization type", "ERROR_CALLING_METHOD_CAM": "Problem calling method to create new ${0}", "ERROR_CALLING_METHOD_CCS": "Problem calling method to create new copy status", -- 2.11.0