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