Lines 629-635
sub ModItemTransfer {
Link Here
|
629 |
VALUES (?, ?, NOW(), ?)"); |
629 |
VALUES (?, ?, NOW(), ?)"); |
630 |
$sth->execute($itemnumber, $frombranch, $tobranch); |
630 |
$sth->execute($itemnumber, $frombranch, $tobranch); |
631 |
|
631 |
|
632 |
ModItem({ holdingbranch => $tobranch }, undef, $itemnumber); |
632 |
ModItem({ holdingbranch => $tobranch }, undef, $itemnumber, { log_action => 0 }); |
633 |
ModDateLastSeen($itemnumber); |
633 |
ModDateLastSeen($itemnumber); |
634 |
return; |
634 |
return; |
635 |
} |
635 |
} |
636 |
- |
|
|