huangjiayang
2025-05-07 f06db483e9b037bc171f56e803390c62417ca9a3
【UPDATE】BOM管理查询物料号使用模糊查询
已修改1个文件
2 ■■■ 文件已修改
aps-modules/aps-core/src/main/resources/mapper/core/ApsBomHeaderMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
aps-modules/aps-core/src/main/resources/mapper/core/ApsBomHeaderMapper.xml
@@ -29,7 +29,7 @@
        <include refid="selectApsBomHeaderVo"/>
        <where>  
            <if test="bomHeaderId != null  and bomHeaderId != ''"> and bom_header_id = #{bomHeaderId}</if>
            <if test="itemCode != null  and itemCode != ''"> and item_code = #{itemCode}</if>
            <if test="itemCode != null  and itemCode != ''"> and item_code like '%' || #{itemCode} || '%'</if>
            <if test="itemName != null  and itemName != ''"> and item_name = #{itemName}</if>
            <if test="startDate != null "> and start_date = #{startDate}</if>
            <if test="endDate != null "> and end_date = #{endDate}</if>