From fd8c40260e564006098914ffb8e65f64154d3261 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 18 Oct 2013 15:05:11 +0200 Subject: [PATCH] Bug 8230: Followup Bug 5336: Change numbers with understandable codes for orderstatus Signed-off-by: Paola Rossi --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 53a059b..87c5b04 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -740,11 +740,11 @@ function verify_images() { [% order.datereceived | $KohaDates%] [% SWITCH order.orderstatus %] - [% CASE '0' %]New - [% CASE '1' %]Ordered - [% CASE '2' %]Partial - [% CASE '3' %]Complete - [% CASE '4' %]Deleted + [% CASE 'new' %]New + [% CASE 'ordered' %]Ordered + [% CASE 'partial' %]Partial + [% CASE 'complete' %]Complete + [% CASE 'cancelled' %]Cancelled [% END %] -- 1.7.10.4