|
|
@ -146,8 +146,11 @@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="pageList" resultType="com.logpm.warehouse.vo.WarehouseWaybillVO"> |
|
|
|
<select id="pageList" resultType="com.logpm.warehouse.vo.WarehouseWaybillVO"> |
|
|
|
select lww.* |
|
|
|
select lww.*, |
|
|
|
|
|
|
|
GROUP_CONCAT(CONCAT(lwwd.product_name,'(',lwwd.num,')')) productNum, |
|
|
|
|
|
|
|
GROUP_CONCAT(CONCAT(lwwd.product_name,'(',lwwd.price,')')) productPrice |
|
|
|
from logpm_warehouse_waybill lww |
|
|
|
from logpm_warehouse_waybill lww |
|
|
|
|
|
|
|
left join logpm_warehouse_waybill_detail lwwd on lwwd.waybill_id = lww.id |
|
|
|
where lww.is_deleted = 0 |
|
|
|
where lww.is_deleted = 0 |
|
|
|
<if test="param.waybillNoList != null"> |
|
|
|
<if test="param.waybillNoList != null"> |
|
|
|
and lww.waybill_no not in |
|
|
|
and lww.waybill_no not in |
|
|
@ -287,7 +290,13 @@ |
|
|
|
<if test="param.freezeTimeEndDate != null"> |
|
|
|
<if test="param.freezeTimeEndDate != null"> |
|
|
|
and lww.freeze_time <= #{param.freezeTimeEndDate} |
|
|
|
and lww.freeze_time <= #{param.freezeTimeEndDate} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0 "> |
|
|
|
|
|
|
|
and lww.destination_warehouse_id in |
|
|
|
|
|
|
|
<foreach collection="param.destinationWarehouseIds" item="item" separator="," open="(" close=")"> |
|
|
|
|
|
|
|
#{item} |
|
|
|
|
|
|
|
</foreach> |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
group by lww.id |
|
|
|
order by lww.create_time desc |
|
|
|
order by lww.create_time desc |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
@ -838,8 +847,11 @@ |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
<select id="exportWaybillList" resultType="com.logpm.warehouse.vo.ExportWarehouseWaybillVO"> |
|
|
|
<select id="exportWaybillList" resultType="com.logpm.warehouse.vo.ExportWarehouseWaybillVO"> |
|
|
|
select lww.* |
|
|
|
select lww.*, |
|
|
|
|
|
|
|
GROUP_CONCAT(CONCAT(lwwd.product_name,'(',lwwd.num,')')) productNum, |
|
|
|
|
|
|
|
GROUP_CONCAT(CONCAT(lwwd.product_name,'(',lwwd.price,')')) productPrice |
|
|
|
from logpm_warehouse_waybill lww |
|
|
|
from logpm_warehouse_waybill lww |
|
|
|
|
|
|
|
left join logpm_warehouse_waybill_detail lwwd on lwwd.waybill_id = lww.id |
|
|
|
where lww.is_deleted = 0 |
|
|
|
where lww.is_deleted = 0 |
|
|
|
<if test="param.waybillNoList != null"> |
|
|
|
<if test="param.waybillNoList != null"> |
|
|
|
and lww.waybill_no not in |
|
|
|
and lww.waybill_no not in |
|
|
@ -979,7 +991,13 @@ |
|
|
|
<if test="param.freezeTimeEndDate != null"> |
|
|
|
<if test="param.freezeTimeEndDate != null"> |
|
|
|
and lww.freeze_time <= #{param.freezeTimeEndDate} |
|
|
|
and lww.freeze_time <= #{param.freezeTimeEndDate} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0 "> |
|
|
|
|
|
|
|
and lww.destination_warehouse_id in |
|
|
|
|
|
|
|
<foreach collection="param.destinationWarehouseIds" item="item" separator="," open="(" close=")"> |
|
|
|
|
|
|
|
#{item} |
|
|
|
|
|
|
|
</foreach> |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
group by lww.id |
|
|
|
order by lww.create_time desc |
|
|
|
order by lww.create_time desc |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|