Paul schreef op wo 08-02-2012 om 14:37 [-0500]: > 0 Not damaged Not damaged > 3 Normal wear Normal wear
> However, in both staff interface and OPAC, "normal wear" items are
> appearing as damaged
> I assume (maybe incorrectly) that the value of "damaged" is read by
> detail.pl starting line 196:
>
> if ($item->{damaged}) {
So the nutshell version of what's going on:
The Perl line above says essentially "if the damaged value != 0,
then..."
So by having "normal wear" at 3, it thinks its damaged. My suggestion to
change this would perhaps to be to change that line so that it's
if ($item->{damaged} > 0) {
and then you could set 'normal wear' to -1 and it wouldn't show as
damaged.
--
Robin Sheat
Catalyst IT Ltd.
✆ +64 4 803 2204
GPG: 5957 6D23 8B16 EFAB FEF8 7175 14D3 6485 A99C EB6D
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Koha-devel mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
