X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/c37da034c649ac67a2235fd0527f6fef5e26ec5a..53aad992851d0e653fe5d3f291d72ebe5b5ac1e5:/SL/DB/DeliveryOrder.pm diff --git a/SL/DB/DeliveryOrder.pm b/SL/DB/DeliveryOrder.pm index 02d003aab..d8de6beb5 100644 --- a/SL/DB/DeliveryOrder.pm +++ b/SL/DB/DeliveryOrder.pm @@ -133,6 +133,7 @@ sub new_from { } my $delivery_order = $class->new(%args, %{ $params{attributes} || {} }); + my $items = delete($params{items}) || $source->items_sorted; my @items = map { my $source_item = $_; @@ -144,7 +145,7 @@ sub new_from { )), custom_variables => \@custom_variables); - } @{ $source->items_sorted }; + } @{ $items }; @items = grep { $_->qty * 1 } @items if $params{skip_items_zero_qty}; @@ -215,6 +216,13 @@ C<%params> can include the following options: =over 2 +=item C + +An optional array reference of RDBO instances for the items to use. If +missing then the method C will be called on +C<$source>. This option can be used to override the sorting, to +exclude certain positions or to add additional ones. + =item C If trueish then items with a quantity of 0 are skipped.