gongchunyi
2026-06-28 d4b2252268142d9b6f35f6fdc590c4e7cf6f0df3
src/main/resources/mapper/sales/ShippingInfoMapper.xml
@@ -23,7 +23,10 @@
        slp.specification_model,
        p.product_name,
        pm.thickness,
        sl.customer_name
        sl.customer_name,
        slp.quantity,
        slp.width,
        slp.height
        FROM shipping_info s
        LEFT JOIN sales_ledger sl ON s.sales_ledger_id = sl.id
        LEFT JOIN sales_ledger_product slp ON s.sales_ledger_product_id = slp.id and slp.type = 1
@@ -48,7 +51,7 @@
        <if test="req.shippingDateEnd != null and req.shippingDateEnd != ''">
            AND s.shipping_date &lt;= #{req.shippingDateEnd}
        </if>
        order by create_time DESC
        order by shipping_no DESC
    </select>
    <select id="listAll" resultType="com.ruoyi.sales.pojo.ShippingInfo">
        SELECT