From 338567002b665eaa1b1add9ba8cc2247c5a19e4d Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 24 Jun 2022 16:50:53 +0100 Subject: [PATCH] Bug 28854: (follow-up) Improve error for item not found Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index ce4334c88db..4b8df622006 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -1789,6 +1789,8 @@ Note that permanent location is a code, and location may be an authval. } else { $('#addResult').replaceWith('
'+_("Failure: Item '%s' belongs to another bundle").format(barcode)+'
'); } + } else if ( data.status === 404 ) { + $('#addResult').replaceWith('
'+_("Failure: Item '%s' not found").format(barcode)+'
'); } else { $('#addResult').replaceWith('
'+_("Failure: Check the logs for details")+'
'); } @@ -1856,6 +1858,8 @@ Note that permanent location is a code, and location may be an authval. } else { $('#removeResult').replaceWith('
'+_("Failure: Item '%s' belongs to another bundle").format(barcode)+'
'); } + } else if ( data.status === 404 ) { + $('#addResult').replaceWith('
'+_("Failure: Item '%s' not found").format(barcode)+'
'); } else { $('#removeResult').replaceWith('
'+_("Failure: Check the logs for details")+'
'); } -- 2.30.2