Skip to content

Commit

Permalink
S:C:DispositionManager: Warnung für nicht-initialisierte Variable ver…
Browse files Browse the repository at this point in the history
…meiden.

Getriggert durch Test-Lauf. Tritt so wohl im Programmablauf nicht auf.
  • Loading branch information
bblessmann committed Oct 16, 2023
1 parent 8aaacfe commit 89e4972
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SL/Controller/DispositionManager.pm
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ sub action_transfer_to_purchase_order {
controller => 'Order',
action => 'add_from_purchase_basket',
type => 'purchase_order',
basket_item_ids => $basket_item_ids,
vendor_item_ids => $vendor_item_ids,
basket_item_ids => $basket_item_ids || [],
vendor_item_ids => $vendor_item_ids || [],
vendor_id => $vendor_id,
);
}
Expand Down

0 comments on commit 89e4972

Please sign in to comment.