guoyuji
2025-03-07 99d0bb96043ba5d6db66bbfb00f67ca4e09f3ffb
小片尺寸和成品尺寸不相同时,打印显示小片信息
2个文件已修改
18 ■■■■ 已修改文件
.gitignore 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/resources/mapper/sd/OrderGlassDetailMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.gitignore
@@ -18,3 +18,17 @@
/north-glass-erp/src/test/test.iml
/north-glass-erp/src/main/resources/mapper/sd/OrderGlassDetailMapper.xml
/north-glass-erp/.idea/.gitignore
/north-glass-erp/.idea/compiler.xml
/north-glass-erp/.idea/dataSources.xml
/north-glass-erp/.idea/encodings.xml
/north-glass-erp/.idea/google-java-format.xml
/north-glass-erp/.idea/inspectionProfiles/Project_Default.xml
/north-glass-erp/.idea/jarRepositories.xml
/north-glass-erp/.idea/jsLibraryMappings.xml
/north-glass-erp/.idea/misc.xml
/north-glass-erp/.idea/north-glass-erp.iml
/north-glass-erp/.idea/sqldialects.xml
/north-glass-erp/.idea/uiDesigner.xml
/north-glass-erp/.idea/vcs.xml
north-glass-erp/src/main/resources/mapper/sd/OrderGlassDetailMapper.xml
@@ -168,13 +168,13 @@
    <select id="getDifferentSizeNumber">
       select if(count(id)>1,1,0) from (select
          a.id
          a.id,a.child_width,b.width
        from order_glass_detail as a
        left join order_detail as b
        on a.order_id = b.order_id and a.order_number = b.order_number
        and a.child_width != b.width
        where a.order_id = #{orderId}
          and a.order_number = #{orderNumber}
          and a.child_width != b.width
        ) as c
    </select>