|
|
|
@ -209,13 +209,13 @@ |
|
|
|
<where> |
|
|
|
AND rfl.ReportID = rfp.ReportID |
|
|
|
<if test="userId != null and userId != ''"> |
|
|
|
and rfp.UserID LIKE #{userId} |
|
|
|
and rfp.UserID LIKE CONCAT('%', #{userId}, '%') |
|
|
|
</if> |
|
|
|
<if test="labelNo != null and labelNo != ''"> |
|
|
|
and rfp.ReportID LIKE #{labelNo} |
|
|
|
and rfp.ReportID LIKE CONCAT('%', #{labelNo}, '%') |
|
|
|
</if> |
|
|
|
<if test="labelName != null and labelName != ''"> |
|
|
|
and rfl.Reportfile LIKE #{labelName} |
|
|
|
and rfp.IPAddress LIKE CONCAT('%', #{labelName}, '%') |
|
|
|
</if> |
|
|
|
<if test="printerName != null and printerName != ''"> |
|
|
|
and rfp.NewPrinterName LIKE #{printerName} |
|
|
|
|