解决商品多属性的bug

This commit is contained in:
季圣华
2021-08-04 23:39:34 +08:00
parent 4d126849c3
commit c79d065dc0
5 changed files with 27 additions and 12 deletions

View File

@@ -276,9 +276,9 @@
</select>
<select id="getMaxBarCode" resultType="java.lang.String">
select max(CAST(l.bar_code AS SIGNED)) bar_code from jsh_material_extend l
select max(CAST(me.bar_code AS SIGNED)) bar_code from jsh_material_extend me
where 1=1
and ifnull(l.delete_Flag,'0') !='1'
and ifnull(me.delete_Flag,'0') !='1'
</select>
<select id="getMaterialByMeId" parameterType="com.jsh.erp.datasource.entities.MaterialExample" resultMap="ResultMapList">