salesPerson filter fixed
This commit is contained in:
parent
3174f37e3e
commit
6e137283ec
|
@ -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