自动化立体仓库 - WMS系统
mrzhssss
2022-06-15 9ffc9b4383a2f4ea759747a158765caeac81ec30
是大于等于而不是大于
2个文件已修改
6 ■■■■ 已修改文件
src/main/resources/mapper/ViewInOutMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/ViewStockUseMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/ViewInOutMapper.xml
@@ -63,7 +63,7 @@
</select>
    <select id="selectWorkCountInSum" resultType="java.lang.Integer">
        SELECT SUM(anfme) FROM asr_wrkin_count_view WHERE 1=1 AND
        (oneday > #{start}
        (oneday >= #{start}
        AND
        oneday &lt; #{end})
        <if test="matnr != null and matnr !=''">
src/main/resources/mapper/ViewStockUseMapper.xml
@@ -60,7 +60,7 @@
        SELECT * FROM asr_wrkin_count_view
                 WHERE
                 1 = 1 AND
                 (oneday > #{start}
                 (oneday >= #{start}
                 AND
                oneday &lt; #{end})
@@ -75,7 +75,7 @@
    <select id="selectWorkCountInTotal" resultType="java.lang.Integer">
        SELECT COUNT(*) FROM asr_wrkin_count_view
        WHERE 1= 1 AND
        (oneday > #{start}
        (oneday >= #{start}
        AND
        oneday &lt; #{end})
        <if test="matnr != null and matnr !='' ">