|
@@ -114,19 +114,19 @@
|
|
|
<if test="mealNames != null and mealNames.size() > 0 ">
|
|
|
and UPPER(lis_mapping.meal_name) in
|
|
|
<foreach collection="mealNames" item="mealName" open="(" separator="," close=")">
|
|
|
- UPPER(trim (#{mealName}))
|
|
|
+ UPPER(trim(#{mealName}))
|
|
|
</foreach>
|
|
|
</if>
|
|
|
<if test="itemNames != null and itemNames.size() > 0 ">
|
|
|
and UPPER(item_con.lib_name) in
|
|
|
<foreach collection="itemNames" item="itemName" open="(" separator="," close=")">
|
|
|
- UPPER(trim (#{itemName}))
|
|
|
+ UPPER(trim(#{itemName}))
|
|
|
</foreach>
|
|
|
</if>
|
|
|
<if test="uniqueNames != null and uniqueNames.size() > 0 ">
|
|
|
and UPPER(lis_mapping.unique_name) in
|
|
|
<foreach collection="uniqueNames" item="uniqueName" open="(" separator="," close=")">
|
|
|
- UPPER(trim (#{uniqueName}))
|
|
|
+ UPPER(trim(#{uniqueName}))
|
|
|
</foreach>
|
|
|
</if>
|
|
|
</select>
|