|
|
|
@ -236,7 +236,7 @@
|
|
|
|
|
fixTime,lds.assign_time assignTime, |
|
|
|
|
lds.type_service typeService,lds.outbound_date outboundDate,lds.stockup_code stockupCode, |
|
|
|
|
COALESCE(GROUP_CONCAT(DISTINCT lwug.position_code SEPARATOR ','), '') stockipAllocation, |
|
|
|
|
COALESCE(GROUP_CONCAT(DISTINCT lwtg.tray_code SEPARATOR ','), '') pallet, |
|
|
|
|
COALESCE(GROUP_CONCAT(DISTINCT lwt.pallet_name SEPARATOR ','), '') pallet, |
|
|
|
|
COALESCE ( group_concat( DISTINCT ldr.consignee SEPARATOR ',' ), '' ) AS consignee |
|
|
|
|
from logpm_distribution_stockup lds |
|
|
|
|
LEFT JOIN logpm_distribution_stockup_info ldsi on ldsi.stockup_id =lds.id |
|
|
|
@ -244,12 +244,13 @@
|
|
|
|
|
LEFT JOIN logpm_distribution_reservation_package ldrp on ldrp.reservation_id = ldsi.reservation_id |
|
|
|
|
LEFT JOIN logpm_warehouse_updown_goods lwug on lwug.association_id = ldrp.parce_list_id |
|
|
|
|
LEFT JOIN logpm_warehouse_tray_goods lwtg on lwtg.association_id = ldrp.parce_list_id |
|
|
|
|
LEFT JOIN logpm_warehouse_tray lwt on lwtg.tray_id = lwt.id |
|
|
|
|
<where> |
|
|
|
|
lds.is_deleted = 0 |
|
|
|
|
<!-- lds.tenant_id = #{param.tenantId} --> |
|
|
|
|
<if test="param.typeService != null and param.typeService != '' ">and lds.type_service = #{param.typeService} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.consignee != null and param.consignee != '' ">and |
|
|
|
|
<if test="param.consignee != null and param.consignee != '' "> and |
|
|
|
|
ldr.consignee = #{param.consignee} |
|
|
|
|
</if> |
|
|
|
|
<if test="param.stockupDate != null ">and TO_DAYS(lds.stockup_date)=TO_DAYS( #{param.stockupDate})</if> |
|
|
|
|