Fix [ bug #1105 ] Searching Boxes other search option
This commit is contained in:
parent
a4ce2d5f72
commit
6aea0bf7a1
@ -4,6 +4,8 @@ English Dolibarr ChangeLog
|
|||||||
***** ChangeLog for 3.4.2 compared to 3.4.1 *****
|
***** ChangeLog for 3.4.2 compared to 3.4.1 *****
|
||||||
Fix: Bad rounding on margin calculations and display.
|
Fix: Bad rounding on margin calculations and display.
|
||||||
Fix: Option drpo table into backup was broken.
|
Fix: Option drpo table into backup was broken.
|
||||||
|
Fix: [ bug #1105 ] Searching Boxes other search option
|
||||||
|
|
||||||
|
|
||||||
***** ChangeLog for 3.4.1 compared to 3.4.0 *****
|
***** ChangeLog for 3.4.1 compared to 3.4.0 *****
|
||||||
Fix: Display buying price on line edit when no supplier price is defined
|
Fix: Display buying price on line edit when no supplier price is defined
|
||||||
|
|||||||
@ -216,7 +216,7 @@ if (! $sall)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$sql.= ' AND (s.nom LIKE \'%'.$db->escape($sall).'%\' OR f.facnumber LIKE \'%'.$db->escape($sall).'%\' OR f.note LIKE \'%'.$db->escape($sall).'%\' OR fd.description LIKE \'%'.$db->escape($sall).'%\')';
|
$sql.= ' AND (s.nom LIKE \'%'.$db->escape($sall).'%\' OR f.facnumber LIKE \'%'.$db->escape($sall).'%\' OR f.note_private LIKE \'%'.$db->escape($sall).'%\' OR f.note_public LIKE \'%'.$db->escape($sall).'%\' OR fd.description LIKE \'%'.$db->escape($sall).'%\')';
|
||||||
}
|
}
|
||||||
$sql.= ' ORDER BY ';
|
$sql.= ' ORDER BY ';
|
||||||
$listfield=explode(',',$sortfield);
|
$listfield=explode(',',$sortfield);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user