Bug 28672: (QA follow-up) Method calls cannot be interpolated directly

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Kyle Hall 2023-02-01 06:52:01 -05:00 committed by Tomas Cohen Arazi
parent c89c25d81a
commit 8939c58a86
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -563,10 +563,10 @@ sub transfer_items {
$ilink->update;
--$quantity;
--$mapped_by_branch{$i_branch};
$logger->warn("Transferred item $item->itemnumber");
$logger->warn("Transferred item " . $item->itemnumber);
}
else {
$logger->warn("Skipped item $item->itemnumber");
$logger->warn("Skipped item " . $item->itemnumber);
}
if ( $quantity < 1 ) {
last;