Merge branch 'dev' of https://git.verdnatura.es/salix into dev
This commit is contained in:
commit
eebb19cceb
|
@ -28,8 +28,8 @@ module.exports = Self => {
|
|||
|
||||
if (where) {
|
||||
if (where.firstName) {
|
||||
sqlWhere = `AND (em.firstName REGEXP ? OR em.name REGEXP ?)`;
|
||||
let search = where.firstName.regexp;
|
||||
sqlWhere = `AND (em.firstName LIKE ? OR em.name LIKE ?)`;
|
||||
let search = where.firstName.like;
|
||||
params.push(search);
|
||||
params.push(search);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue