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

(-)a/Koha/UI/Table/Builder/Items.pm (-2 / +1 lines)
Lines 84-90 sub build_table { Link Here
84
            safe_to_delete => $item->safe_to_delete,
84
            safe_to_delete => $item->safe_to_delete,
85
            holds          => $item->biblio->holds->count,
85
            holds          => $item->biblio->holds->count,
86
            item_holds     => $item->holds->count,
86
            item_holds     => $item->holds->count,
87
            is_checked_out => $item->checkout || 0,
87
            is_checked_out => $item->checkout ? 1 : 0,
88
        };
88
        };
89
        push @items, $item_info;
89
        push @items, $item_info;
90
    }
90
    }
91
- 

Return to bug 32550