SL::DB::{DeliveryOrder,Invoice}->new_from: Option items für Übergabe der zu verwenden...
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 24 Feb 2014 09:11:29 +0000 (10:11 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 24 Feb 2014 13:40:02 +0000 (14:40 +0100)
Gründe dafür können sein:

- eigene Sortierung
- gewisse Positionen herauslassen
- weitere Positionen hinzufügen

SL/DB/DeliveryOrder.pm
SL/DB/Invoice.pm

index 02d003a..d8de6be 100644 (file)
@@ -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<items>
+
+An optional array reference of RDBO instances for the items to use. If
+missing then the method C<items_sorted> 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<skip_items_zero_qty>
 
 If trueish then items with a quantity of 0 are skipped.
index 46ecd9b..987ab72 100644 (file)
@@ -161,6 +161,7 @@ sub new_from {
   }
 
   my $invoice = $class->new(%args, %{ $params{attributes} || {} });
+  my $items   = delete($params{items}) || $source->items_sorted;
 
   my @items = map {
     my $source_item      = $_;
@@ -174,7 +175,7 @@ sub new_from {
                              custom_variables => \@custom_variables,
                            );
 
-  } @{ $source->items_sorted };
+  } @{ $items };
 
   $invoice->invoiceitems(\@items);
 
@@ -327,6 +328,13 @@ C<%params> can include the following options:
 
 =over 2
 
+=item C<items>
+
+An optional array reference of RDBO instances for the items to use. If
+missing then the method C<items_sorted> 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<attributes>
 
 An optional hash reference. If it exists then it is passed to C<new>