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

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

Return to bug 18501