自动化立体仓库 - WMS系统
pang.jiabao
2025-10-23 dc9228656b202a8f1ec7720d78eb0421a94a28c9
src/main/resources/mapper/PlaMapper.xml
@@ -25,10 +25,26 @@
            <if test="etime != null">
                and pakin_time &lt;= #{etime}
            </if>
            <if test="status == null or status.trim() == ''">
                and status in ('已入库','部分出库','待出库')
            </if>
            <if test="status != null and status != ''">
                and status = #{status}
            </if>
            <if test="type != null and type != ''">
                and type = #{type}
            </if>
            <if test="workshop != null and workshop != ''">
                and workshop = #{workshop}
            </if>
            <if test="transfer != null and transfer != ''">
                and transfer = #{transfer}
            </if>
        </where>
        GROUP BY brand,matnr,workshop ORDER BY matnr,workshop
        GROUP BY brand,matnr,workshop HAVING SUM(weight_anfme) > 0 ORDER BY matnr,workshop
    </select>
    <select id="getDropdownValues" resultType="com.zy.asrs.entity.DropdownValuesDto">
        SELECT type, value
        FROM dropdown_values_view
    </select>
</mapper>