diff --git a/dispatch/src/main/resources/mapper/CallItemMapper.xml b/dispatch/src/main/resources/mapper/CallItemMapper.xml
index 91e85a87..d1322bc7 100644
--- a/dispatch/src/main/resources/mapper/CallItemMapper.xml
+++ b/dispatch/src/main/resources/mapper/CallItemMapper.xml
@@ -706,6 +706,12 @@
             <if test="component != null and component != ''">
                 AND CP.ITEM = #{component}
             </if>
+            <if test="componentDescription != null and componentDescription != ''">
+                AND CT.DESCRIPTION LIKE '%' || #{componentDescription} || '%'
+            </if>
+            <if test="blankingSize != null and blankingSize != ''">
+                AND ZSD.BLANKING_SIZE LIKE '%' || #{blankingSize} || '%'
+            </if>
             <if test="texture != null and texture != ''">
                 AND C3.VALUE LIKE '%'||#{texture}||'%'
             </if>