From ba3bb0a4f80bf565d784cb151a5623725ae4e3cf Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 18 Oct 2013 15:05:11 +0200 Subject: [PATCH] Bug 8230: (follow-up) reflect the fact that order statuses are now alphabetic codes Signed-off-by: Paola Rossi Signed-off-by: Kyle M Hall Passes koha-qa.pl, works as advertised. No regressions found. Signed-off-by: Galen Charlton --- .../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 1bac5a985f..294496a529 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 %] -- 2.39.5