From 65c7968d0c20db4850f35582e60bd41f9657dc25 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 --- 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 53d14fc59f..bd0c2a9023 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -1626,6 +1626,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")+'
'); } @@ -1693,6 +1695,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.20.1