|
Lines 563-569
sub ModItemTransfer {
Link Here
|
| 563 |
VALUES (?, ?, NOW(), ?)"); |
563 |
VALUES (?, ?, NOW(), ?)"); |
| 564 |
$sth->execute($itemnumber, $frombranch, $tobranch); |
564 |
$sth->execute($itemnumber, $frombranch, $tobranch); |
| 565 |
|
565 |
|
| 566 |
ModItem({ holdingbranch => $tobranch }, undef, $itemnumber, { log_action => 0 }); |
566 |
ModItem({ holdingbranch => $frombranch }, undef, $itemnumber, { log_action => 0 }); |
| 567 |
ModDateLastSeen($itemnumber); |
567 |
ModDateLastSeen($itemnumber); |
| 568 |
return; |
568 |
return; |
| 569 |
} |
569 |
} |
| 570 |
- |
|
|