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 |
- |
|
|