| | |
| | | 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 |
| | |
| | | <if test="req.shippingDateEnd != null and req.shippingDateEnd != ''"> |
| | | AND s.shipping_date <= #{req.shippingDateEnd} |
| | | </if> |
| | | order by create_time DESC |
| | | order by shipping_no DESC |
| | | </select> |
| | | <select id="listAll" resultType="com.ruoyi.sales.pojo.ShippingInfo"> |
| | | SELECT |