From: Bill Erickson Date: Wed, 26 Jul 2017 19:51:13 +0000 (-0700) Subject: JBAS-1728 SCKO billing type labels avoid misc X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9bb4df61dc803f6328d679a64754fa695179dbaf;p=working%2FEvergreen.git JBAS-1728 SCKO billing type labels avoid misc When a billing type is available, use it as-is without prepending "miscallaneous - ..." Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js b/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js index 847631be8d..af4551b2b7 100644 --- a/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js +++ b/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js @@ -986,8 +986,7 @@ SelfCheckManager.prototype.drawFinesPage = function() { function stringifyBtype(btype) { // avoid confusion around "grocery". TODO i18n - return btype ? - ("Miscellaneous - " + btype) : "Miscellaneous"; + return btype || "Miscellaneous"; } for(var fine = 0; fine < outstandingFines.length; fine++) {