View | Details | Raw Unified | Return to bug 31550
Collapse All | Expand All

(-)a/C4/ILSDI/Services.pm (-2 / +1 lines)
Lines 260-266 sub GetRecords { Link Here
260
                if ( $item->$_ ) {
260
                if ( $item->$_ ) {
261
                    my $authorised_value = Koha::AuthorisedValues->find_by_koha_field( { kohafield => 'items.' . $_, authorised_value => $item->$_ } );
261
                    my $authorised_value = Koha::AuthorisedValues->find_by_koha_field( { kohafield => 'items.' . $_, authorised_value => $item->$_ } );
262
                        if ($authorised_value) {
262
                        if ($authorised_value) {
263
                            $item{ $_ . _description } = $authorised_value->opac_description;
263
                            $item{ $_ . '_description' } = $authorised_value->opac_description;
264
                        }
264
                        }
265
                }
265
                }
266
            }
266
            }
267
- 

Return to bug 31550