https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40919 Bug ID: 40919 Summary: Unnecessary DB access in Koha::Item::Transfer->receive Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: koha-bugs@lists.koha-community.org Reporter: tomascohen@gmail.com QA Contact: testopia@bugs.koha-community.org This line: ```perl ModDateLastSeen( $self->item->itemnumber ); ``` could just be ```perl ModDateLastSeen( $self->itemnumber ); ``` There's no need to instantiate the related Koha::Item object. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.