|
|
@@ -261,7 +261,8 @@ public class orderform extends Controller {
|
|
|
if (content.containsKey("where")) {
|
|
|
JSONObject whereObject = content.getJSONObject("where");
|
|
|
if (whereObject.containsKey("fsonum") && !"".equals(whereObject.getString("fsonum"))) {
|
|
|
- where = where + " and t1.fsonum like'%" + whereObject.getString("fsonum") + "%'";
|
|
|
+ where = where + " and (t1.fsonum like'%" + whereObject.getString("fsonum") + "%' "
|
|
|
+ +"or pp_hr.displayname like'%" + whereObject.getString("fsonum") + "%') ";
|
|
|
}
|
|
|
}
|
|
|
/**
|