X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FIC.pm;h=e3879a448cd580a5e9e93cf5ed9e692058c7468f;hb=ed66198726d850bf181daf3c496c094abde30180;hp=eaa932c00768ad3d9123917dfc8743f07a260222;hpb=93618a69a94243bf03ed2a9e856d8d4e67036394;p=kivitendo-erp.git diff --git a/SL/IC.pm b/SL/IC.pm index eaa932c00..e3879a448 100644 --- a/SL/IC.pm +++ b/SL/IC.pm @@ -820,6 +820,8 @@ sub all_parts { description => 'p.', qty => 'ioi.', serialnumber => 'ioi.', + quotation => 'apoe.', + cv => 'cv.', ); # if the join condition in these blocks are met, the column @@ -933,7 +935,7 @@ sub all_parts { my $bsooqr = any { $form->{$_} } @oe_flags; my @bsooqr_tokens = (); - push @select_tokens, @qsooqr_flags if $bsooqr; + push @select_tokens, @qsooqr_flags, 'quotation', 'cv' if $bsooqr; push @select_tokens, @deliverydate_flags if $bsooqr && $form->{l_deliverydate}; push @select_tokens, $q_assembly_lastcost if ($form->{searchitems} eq 'assembly') && $form->{l_lastcost}; push @bsooqr_tokens, q|module = 'ir' AND NOT ioi.assemblyitem| if $form->{bought};