|
Lines 623-629
sub ModItemTransfer {
Link Here
|
| 623 |
VALUES (?, ?, NOW(), ?)"); |
623 |
VALUES (?, ?, NOW(), ?)"); |
| 624 |
$sth->execute($itemnumber, $frombranch, $tobranch); |
624 |
$sth->execute($itemnumber, $frombranch, $tobranch); |
| 625 |
|
625 |
|
| 626 |
ModItem({ holdingbranch => $tobranch }, undef, $itemnumber); |
626 |
ModItem({ holdingbranch => $tobranch }, undef, $itemnumber, { log_action => 0 }); |
| 627 |
ModDateLastSeen($itemnumber); |
627 |
ModDateLastSeen($itemnumber); |
| 628 |
return; |
628 |
return; |
| 629 |
} |
629 |
} |
| 630 |
- |
|
|