projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2cf910
)
Bugfix 331, SQL-Fehler bei Artikel- und Dienstleistungssuche nach Modell
author
Stephan Köhler
<s.koehler@linet-services.de>
Thu, 23 Mar 2006 10:26:47 +0000
(10:26 +0000)
committer
Stephan Köhler
<s.koehler@linet-services.de>
Thu, 23 Mar 2006 10:26:47 +0000
(10:26 +0000)
SL/IC.pm
patch
|
blob
|
history
diff --git
a/SL/IC.pm
b/SL/IC.pm
index
eaa5e88
..
e002352
100644
(file)
--- a/
SL/IC.pm
+++ b/
SL/IC.pm
@@
-825,11
+825,12
@@
sub all_parts {
my $group;
my $limit;
- foreach my $item (qw(partnumber drawing microfiche make
model
)) {
+ foreach my $item (qw(partnumber drawing microfiche make)) {
if ($form->{$item}) {
$var = $form->like(lc $form->{$item});
# make will build later Bugfix 145
+ # model will build later too - Bugfix 331
if ($item ne 'make') {
$where .= " AND lower(p.$item) LIKE '$var'";
}