From 2011c408f5aeba5a1459555815d8a2add8d264d4 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 --- 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..f88bfaa 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 'deleted' %]Deleted [% END %] -- 1.7.10.4