X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FDeliveryOrder.pm;h=395a44944621ec4d40f2d4d6081cfbc178246bfa;hb=fc1e67b429bb959ab60bd50d144c0a51fbc4b292;hp=6068b13aacf4e23d913674d6cd885119e57bec17;hpb=78edb3227aaa7c9dcb26bbe1781cdb1027e648f9;p=kivitendo-erp.git diff --git a/SL/DB/DeliveryOrder.pm b/SL/DB/DeliveryOrder.pm index 6068b13aa..395a44944 100644 --- a/SL/DB/DeliveryOrder.pm +++ b/SL/DB/DeliveryOrder.pm @@ -20,7 +20,7 @@ use SL::DB::Unit; use SL::Helper::Number qw(_format_total _round_total); use List::Util qw(first); -use List::MoreUtils qw(any); +use List::MoreUtils qw(any pairwise); use Math::Round qw(nhimult); __PACKAGE__->meta->add_relationship(orderitems => { type => 'one to many', @@ -191,20 +191,25 @@ sub new_from_time_recordings { # - ordered and summed by date # - each description goes to an ordered list # - (as time recording descriptions are formatted text by now, use stripped text) - # - merge same descriptions (todo) + # - merge same descriptions # - my $default_part_id = $params{default_part_id} ? $params{default_part_id} - : $params{default_partnumber} ? SL::DB::Manager::Part->find_by(partnumber => $params{default_partnumber})->id - : undef; + my $default_part_id = $params{default_part_id} ? $params{default_part_id} + : $params{default_partnumber} ? SL::DB::Manager::Part->find_by(partnumber => $params{default_partnumber})->id + : undef; + my $override_part_id = $params{override_part_id} ? $params{override_part_id} + : $params{override_partnumber} ? SL::DB::Manager::Part->find_by(partnumber => $params{override_partnumber})->id + : undef; # check parts and collect entries my %part_by_part_id; my $entries; foreach my $source (@$sources) { - my $part_id = $source->part_id ? $source->part_id - : $default_part_id ? $default_part_id - : undef; + next if !$source->duration; + + my $part_id = $override_part_id; + $part_id ||= $source->part_id; + $part_id ||= $default_part_id; die 'article not found for entry "' . $source->displayable_times . '"' if !$part_id; @@ -250,9 +255,9 @@ sub new_from_time_recordings { parts_id => $part_by_part_id{$key}->id, description => $part_by_part_id{$key}->description, qty => $qty, - base_qty => $qty, + base_qty => $h_unit->convert_to($qty, $part_by_part_id{$key}->unit_obj), unit_obj => $h_unit, - sellprice => $part_by_part_id{$key}->sellprice, + sellprice => $part_by_part_id{$key}->sellprice, # Todo: use price rules to get sellprice longdescription => $longdescription, ); @@ -264,17 +269,20 @@ sub new_from_time_recordings { if ($params{related_order}) { # collect suitable items in related order my @items_to_use; + my @new_attributes; foreach my $item (@items) { my $item_to_use = first {$item->parts_id == $_->parts_id} @{ $params{related_order}->items_sorted }; die "no suitable item found in related order" if !$item_to_use; my %new_attributes; - $new_attributes{$_} = $item->$_ for qw(qty unit_obj longdescription); - $item_to_use->assign_attributes(%new_attributes); - push @items_to_use, $item_to_use; + $new_attributes{$_} = $item->$_ for qw(qty base_qty unit_obj longdescription); + push @items_to_use, $item_to_use; + push @new_attributes, \%new_attributes; } - $delivery_order = SL::DB::DeliveryOrder->new_from($params{related_order}, items => \@items_to_use, %params); + + $delivery_order = $class->new_from($params{related_order}, items => \@items_to_use, %params); + pairwise { $a->assign_attributes( %$b) } @{$delivery_order->items}, @new_attributes; } else { my %args = ( @@ -429,7 +437,8 @@ Creates a new C instance from the time recordings given as C<$sources>. All time recording entries must belong to the same customer. Time recordings are sorted by article and date. For each article a new delivery order item is created. If no article is associated with an -entry, a default article will be used (hard coded). +entry, a default article will be used. The article given in the time +recording entry can be overriden. Entries of the same date (for each article) are summed together and form a list entry in the long description of the item. @@ -446,6 +455,36 @@ C<%params> can include the following options: An optional hash reference. If it exists then it is used to set attributes of the newly created delivery order object. +=item C + +An optional part id which is used as default value if no part is set +in the time recording entry. + +=item C + +Like C but given as partnumber, not as id. + +=item C + +An optional part id which is used instead of a value set in the time +recording entry. + +=item C + +Like C but given as partnumber, not as id. + +=item C + +An optional C object. If it exists then it is used to +generate the delivery order from that via C. +The generated items are created from a suitable item of the related +order. If no suitable item is found, an exception is thrown. + +=item C + +An optional boolean value. If truish, then the durations of the time entries +are rounded up to the full quarters of an hour. + =back =item C