自动化立体仓库 - WMS系统
#
lsh
2025-02-20 4ad1f324ab1fd2b51504afc00b43b4ee40f029c2
src/main/resources/mapper/BasDevpMapper.xml
@@ -29,6 +29,9 @@
        <result column="area" property="area" />
        <result column="in_ok" property="inOk" />
        <result column="out_ok" property="outOk" />
        <result column="loc_type1" property="locType1" />
        <result column="loc_type2" property="locType2" />
        <result column="loc_type3" property="locType3" />
        <result column="modi_user" property="modiUser" />
        <result column="modi_time" property="modiTime" />
        <result column="appe_user" property="appeUser" />
@@ -38,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>
@@ -48,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>
@@ -59,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>