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

(-)a/Koha/Item.pm (-2 / +3 lines)
Lines 172-178 sub store { Link Here
172
        # If item was lost, it has now been found, reverse any list item charges if necessary.
172
        # If item was lost, it has now been found, reverse any list item charges if necessary.
173
        if ( exists $updated_columns{itemlost}
173
        if ( exists $updated_columns{itemlost}
174
                and $self->itemlost != $updated_columns{itemlost}
174
                and $self->itemlost != $updated_columns{itemlost}
175
                and $updated_columns{itemlost} >= 1 ) {
175
                and $self->itemlost >= 1
176
                and $updated_columns{itemlost} <= 0
177
        ) {
176
            $self->_set_found_trigger;
178
            $self->_set_found_trigger;
177
            $self->paidfor('');
179
            $self->paidfor('');
178
        }
180
        }
179
- 

Return to bug 18501