自动化立体仓库 - WMS系统
#
lsh
2025-02-20 4ad1f324ab1fd2b51504afc00b43b4ee40f029c2
src/main/resources/mapper/BasDevpMapper.xml
@@ -41,6 +41,9 @@
        <result column="max_wt" property="maxWt" />
        <result column="gross_wt" property="grossWt" />
        <result column="cart_pos" property="cartPos" />
        <result column="report_sign" property="reportSign" />
        <result column="empty_mk" property="emptyMk" />
        <result column="loading_super" property="loadingSuper" />
    </resultMap>
@@ -51,7 +54,7 @@
        left join asr_sta_desc asd on abd.dev_no = asd.stn_no
        where 1=1
        and asd.type_no = #{typeNo}
        and abd.in_enable = 'Y'
        -- and abd.in_enable = 'Y'
        group by abd.dev_no
    </select>
@@ -62,8 +65,15 @@
        left join asr_sta_desc asd on abd.dev_no = asd.stn_no
        where 1=1
        and asd.type_no = #{typeNo}
        and abd.out_enable = 'Y'
        -- and abd.out_enable = 'Y'
        group by abd.dev_no
    </select>
    <update id="updateReportSignFalse">
        update asr_bas_devp
        set report_sign = 0
        where 1=1
        and dev_no = #{devpNo}
    </update>
</mapper>