Bug 24446 removed a call to ModDateLastSeen - we should blank the datelastseen before storing to update the field - or do we not need to update when calling ModItemTransfer?
ModItemTransfer is about to be removed ;).
Coming back to this... are you sure Nick? Inside ModItemTransfer we now call the Koha::Item->request_transfer method followed by the Koha::Item::Transfer->transit method (if the item is not checked out) to immediately put it into transit. The transit method calls 'ModDateLastSeen' internally, so this should be getting caught there and updated as expected.
What if the item is checked out? (before was bug 24446 date last seen was updated)
(In reply to Jonathan Druart from comment #3) > What if the item is checked out? (before was bug 24446 date last seen was > updated) Correct.. but it's by design. If the item is checked out when a transfer is requested upon it.. then the item hasn't actually been seen has it ;) Pretty sure I actually discussed this at the time.. perhaps I missed someone relevant. Nick, what is the use case/bug resulting from this change?
(In reply to Martin Renvoize from comment #4) > (In reply to Jonathan Druart from comment #3) > > What if the item is checked out? (before was bug 24446 date last seen was > > updated) > > Correct.. but it's by design. If the item is checked out when a transfer is > requested upon it.. then the item hasn't actually been seen has it ;) > Pretty sure I actually discussed this at the time.. perhaps I missed someone > relevant. > > Nick, what is the use case/bug resulting from this change I filed this simply because I noticed the change, I haven't heard any reports, but I wanted to confirm the change was intentional