Revision 8b6ad9a4
Von Sven Schöling vor fast 13 Jahren hinzugefügt
SL/IC.pm | ||
---|---|---|
1007 | 1007 |
$joins_needed{apoe} = 1 if $joins_needed{cv} || grep { $form->{$_} || $form->{"l_$_"} } @apoe_filters; |
1008 | 1008 |
$joins_needed{invoice_oi} = 1 if $joins_needed{apoe} || grep { $form->{$_} || $form->{"l_$_"} } @invoice_oi_filters; |
1009 | 1009 |
|
1010 |
# in bsoorq, use qtys instead of onhand |
|
1011 |
if ($joins_needed{invoice_oi}) { |
|
1012 |
$renamed_columns{onhand} = 'onhand_before_bsooqr'; |
|
1013 |
$renamed_columns{qty} = 'onhand'; |
|
1014 |
} |
|
1015 |
|
|
1016 | 1010 |
# special case for description search. |
1017 | 1011 |
# up in the simple filter section the description filter got interpreted as something like: WHERE description ILIKE '%$form->{description}%' |
1018 | 1012 |
# now we'd like to search also for the masked description entered in orderitems and invoice, so... |
Auch abrufbar als: Unified diff
Menge und Soldtotal in Warensuche getrennt.
Fix zu Bug 1635. Ausserdem die Spalten umsortiert und die Spalten sinnvoller
benannt. Vorher wurde soldtotal im bsooqr mode auf die onhand Spalte gelegt,
das musste einfach nur entfernt werden.