mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix search by middle part of the username is not working in uninstall table in app store.
This commit is contained in:
parent
40c12875ac
commit
afa3294555
@ -1317,7 +1317,7 @@ public class GenericDeviceDAOImpl extends AbstractDeviceDAOImpl {
|
|||||||
query += " AND i.VALUE_FIELD LIKE ?" ;
|
query += " AND i.VALUE_FIELD LIKE ?" ;
|
||||||
}
|
}
|
||||||
if (user != null && !user.isEmpty()) {
|
if (user != null && !user.isEmpty()) {
|
||||||
query += " AND e.OWNER = ?";
|
query += " AND e.OWNER LIKE ?";
|
||||||
isOwnerProvided = true;
|
isOwnerProvided = true;
|
||||||
}
|
}
|
||||||
if (status != null && !status.isEmpty()) {
|
if (status != null && !status.isEmpty()) {
|
||||||
@ -1347,7 +1347,7 @@ public class GenericDeviceDAOImpl extends AbstractDeviceDAOImpl {
|
|||||||
ps.setString(index++, EnrolmentInfo.Status.REMOVED.toString());
|
ps.setString(index++, EnrolmentInfo.Status.REMOVED.toString());
|
||||||
ps.setString(index++, EnrolmentInfo.Status.DELETED.toString());
|
ps.setString(index++, EnrolmentInfo.Status.DELETED.toString());
|
||||||
if (isDeviceNameProvided) {
|
if (isDeviceNameProvided) {
|
||||||
ps.setString(index++, name + "%");
|
ps.setString(index++, "%" + name + "%");
|
||||||
}
|
}
|
||||||
if (isOwnershipProvided) {
|
if (isOwnershipProvided) {
|
||||||
ps.setString(index++, ownership);
|
ps.setString(index++, ownership);
|
||||||
@ -1356,7 +1356,7 @@ public class GenericDeviceDAOImpl extends AbstractDeviceDAOImpl {
|
|||||||
ps.setString(index++, "%" + serial + "%");
|
ps.setString(index++, "%" + serial + "%");
|
||||||
}
|
}
|
||||||
if (isOwnerProvided) {
|
if (isOwnerProvided) {
|
||||||
ps.setString(index++, user);
|
ps.setString(index++, "%" + user + "%");
|
||||||
}
|
}
|
||||||
if (isStatusProvided) {
|
if (isStatusProvided) {
|
||||||
for (String deviceStatus : status) {
|
for (String deviceStatus : status) {
|
||||||
|
|||||||
@ -1068,7 +1068,7 @@ public class PostgreSQLDeviceDAOImpl extends GenericDeviceDAOImpl {
|
|||||||
isOwnershipProvided = true;
|
isOwnershipProvided = true;
|
||||||
}
|
}
|
||||||
if (user != null && !user.isEmpty()) {
|
if (user != null && !user.isEmpty()) {
|
||||||
query += " AND e.OWNER = ?";
|
query += " AND e.OWNER LIKE ?";
|
||||||
isOwnerProvided = true;
|
isOwnerProvided = true;
|
||||||
}
|
}
|
||||||
if (status != null && !status.isEmpty()) {
|
if (status != null && !status.isEmpty()) {
|
||||||
@ -1099,13 +1099,13 @@ public class PostgreSQLDeviceDAOImpl extends GenericDeviceDAOImpl {
|
|||||||
ps.setString(index++, EnrolmentInfo.Status.REMOVED.toString());
|
ps.setString(index++, EnrolmentInfo.Status.REMOVED.toString());
|
||||||
ps.setString(index++, EnrolmentInfo.Status.DELETED.toString());
|
ps.setString(index++, EnrolmentInfo.Status.DELETED.toString());
|
||||||
if (isDeviceNameProvided) {
|
if (isDeviceNameProvided) {
|
||||||
ps.setString(index++, name + "%");
|
ps.setString(index++, "%" + name + "%");
|
||||||
}
|
}
|
||||||
if (isOwnershipProvided) {
|
if (isOwnershipProvided) {
|
||||||
ps.setString(index++, ownership);
|
ps.setString(index++, ownership);
|
||||||
}
|
}
|
||||||
if (isOwnerProvided) {
|
if (isOwnerProvided) {
|
||||||
ps.setString(index++, user);
|
ps.setString(index++, "%" + user + "%");
|
||||||
}
|
}
|
||||||
if (isStatusProvided) {
|
if (isStatusProvided) {
|
||||||
for (String deviceStatus : status) {
|
for (String deviceStatus : status) {
|
||||||
|
|||||||
@ -936,7 +936,7 @@ public class SQLServerDeviceDAOImpl extends GenericDeviceDAOImpl {
|
|||||||
isOwnershipProvided = true;
|
isOwnershipProvided = true;
|
||||||
}
|
}
|
||||||
if (user != null && !user.isEmpty()) {
|
if (user != null && !user.isEmpty()) {
|
||||||
query += " AND e.OWNER = ?";
|
query += " AND e.OWNER LIKE ?";
|
||||||
isOwnerProvided = true;
|
isOwnerProvided = true;
|
||||||
}
|
}
|
||||||
if (status != null && !status.isEmpty()) {
|
if (status != null && !status.isEmpty()) {
|
||||||
@ -967,13 +967,13 @@ public class SQLServerDeviceDAOImpl extends GenericDeviceDAOImpl {
|
|||||||
ps.setString(index++, EnrolmentInfo.Status.REMOVED.toString());
|
ps.setString(index++, EnrolmentInfo.Status.REMOVED.toString());
|
||||||
ps.setString(index++, EnrolmentInfo.Status.DELETED.toString());
|
ps.setString(index++, EnrolmentInfo.Status.DELETED.toString());
|
||||||
if (isDeviceNameProvided) {
|
if (isDeviceNameProvided) {
|
||||||
ps.setString(index++, name + "%");
|
ps.setString(index++, "%" + name + "%");
|
||||||
}
|
}
|
||||||
if (isOwnershipProvided) {
|
if (isOwnershipProvided) {
|
||||||
ps.setString(index++, ownership);
|
ps.setString(index++, ownership);
|
||||||
}
|
}
|
||||||
if (isOwnerProvided) {
|
if (isOwnerProvided) {
|
||||||
ps.setString(index++, user);
|
ps.setString(index++, "%" + user + "%");
|
||||||
}
|
}
|
||||||
if (isStatusProvided) {
|
if (isStatusProvided) {
|
||||||
for (String deviceStatus : status) {
|
for (String deviceStatus : status) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user