修改启用停用字段赋值及查询

This commit is contained in:
yangjun 2025-11-17 13:25:43 +08:00
parent 0fd3470723
commit 702162d68a
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
<select id="getConfiguredList" resultType="com.nu.modules.ConfigMaterial.entity.ConfigMaterialInfo">
select * from nu_config_material_info a
where del_flag = '0' and iz_enabled = '0' and id not in ( select wl_id from nu_warehouse_material_info where del_flag = '0' and iz_enabled = '0' )
where del_flag = '0' and iz_enabled = 'Y' and id not in ( select wl_id from nu_warehouse_material_info where del_flag = '0' and iz_enabled = 'Y' )
<if test="param.checkId != null and param.checkId != ''">
and id not in ( ${param.checkId} )
</if>