X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/80457526fe12b504d09c8ddf3db81c754c9938e2..2851ec9a444d93086dc5356122b7143711d955c0:/SL/DB/DeliveryOrder.pm diff --git a/SL/DB/DeliveryOrder.pm b/SL/DB/DeliveryOrder.pm index 9e14c82a1..fef0ee5a3 100644 --- a/SL/DB/DeliveryOrder.pm +++ b/SL/DB/DeliveryOrder.pm @@ -227,7 +227,11 @@ sub new_from_time_recordings { my $date = $source->start_time->to_kivitendo; $entries->{$part_id}->{$date}->{duration} += _round_total($source->duration_in_hours); - $entries->{$part_id}->{$date}->{content} .= '
  • ' . $source->description_as_stripped_html . '
  • '; + # add content if not already in description + my $new_description = $source->description_as_stripped_html; + $entries->{$part_id}->{$date}->{content} .= '
  • ' . $new_description . '
  • ' + unless $entries->{$part_id}->{$date}->{content} =~ m/\Q$new_description/; + $entries->{$part_id}->{$date}->{date_obj} = $source->start_time; # for sorting }