|
|
|
@ -149,7 +149,7 @@
|
|
|
|
|
LEFT JOIN logpm_warehouse_updown_goods lwug ON ldpl.id = lwug.association_id |
|
|
|
|
LEFT JOIN logpm_warehouse_tray_goods lwtg ON ldpl.id = lwtg.association_id |
|
|
|
|
left join logpm_warehouse_warehouse lww on lww.id = ldpl.warehouse_id |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package ldrp on ldrp.parce_list_id = ldpl.id |
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package ldrp on ldrp.parce_list_id = ldpl.id and ldrp.packet_bar_status = '1' |
|
|
|
|
LEFT JOIN logpm_distribution_reservation ldr on ldr.id = ldrp.reservation_id |
|
|
|
|
LEFT JOIN logpm_distribution_loadscan ldl on ldl.package_id = ldpl.id and ldl.type = 2 |
|
|
|
|
LEFT JOIN logpm_distribution_delivery_list lddl on lddl.id = ldl.delivery_id |
|
|
|
@ -226,6 +226,12 @@
|
|
|
|
|
<if test="param.orderPackageFreezeStatus !='' and param.orderPackageFreezeStatus != null"> |
|
|
|
|
and ldpl.order_package_freeze_status = #{param.orderPackageFreezeStatus} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.orderPackageLoadingStatus !='' and param.orderPackageLoadingStatus != null"> |
|
|
|
|
and ldpl.order_package_loading_status = #{param.orderPackageLoadingStatus} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.orderPackageReservationStatus !='' and param.orderPackageReservationStatus != null"> |
|
|
|
|
and ldpl.order_package_reservation_status = #{param.orderPackageReservationStatus} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.pallet !='' and param.pallet != null"> |
|
|
|
|
and lwtg.tray_code = #{param.pallet} |
|
|
|
|
</if> |
|
|
|
|