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

(-)a/C4/Items.pm (-2 / +1 lines)
Lines 564-570 sub ModItemTransfer { Link Here
564
        VALUES (?, ?, NOW(), ?)");
564
        VALUES (?, ?, NOW(), ?)");
565
    $sth->execute($itemnumber, $frombranch, $tobranch);
565
    $sth->execute($itemnumber, $frombranch, $tobranch);
566
566
567
    ModItem({ holdingbranch => $tobranch }, undef, $itemnumber, { log_action => 0 });
567
    ModItem({ holdingbranch => $frombranch }, undef, $itemnumber, { log_action => 0 });
568
    ModDateLastSeen($itemnumber);
568
    ModDateLastSeen($itemnumber);
569
    return;
569
    return;
570
}
570
}
571
- 

Return to bug 23129