From 450ff9936ece6c5546d0e10d184d96b5287db5b7 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 Signed-off-by: Kyle M Hall Passes koha-qa.pl, works as advertised. No regressions found. --- .../prog/en/modules/catalogue/detail.tt | 10 +++++----- 1 files 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 1bac5a9..294496a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -847,11 +847,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.2.5