|
|
|
@ -41,12 +41,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectWarehouseRetentionRecordPage" resultMap="warehouseRetentionRecordResultMap"> |
|
|
|
|
select * from logpm_warehouse_retention_scan where is_deleted = 0 ORDER BY create_time DESC |
|
|
|
|
select * from logpm_warehouse_retention_scan |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 |
|
|
|
|
<if test="param.orderCode != null and param.orderCode != ''"> |
|
|
|
|
AND order_code like concat(#{param.orderCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.trainNumber != null and param.trainNumber != ''"> |
|
|
|
|
AND train_number like concat(#{param.trainNumber},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.reservationCode != null and param.reservationCode != ''"> |
|
|
|
|
AND reservation_code like concat(#{param.reservationCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.reservationCode != null and param.reservationCode != ''"> |
|
|
|
|
AND reservation_code like concat(#{param.reservationCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.waybillNumber != null and param.waybillNumber != ''"> |
|
|
|
|
AND waybill_number like concat(#{param.waybillNumber},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.orderPackageCode != null and param.orderPackageCode != ''"> |
|
|
|
|
AND order_package_code like concat(#{param.orderPackageCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.materialNumber != null and param.materialNumber != ''"> |
|
|
|
|
AND material_number like concat(#{param.materialNumber},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.materialName != null and param.materialName != ''"> |
|
|
|
|
AND material_name like concat(#{param.materialName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.warehouseListId != null "> |
|
|
|
|
AND warehouse_id IN |
|
|
|
|
<foreach collection="param.warehouseListId" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
<if test="param.scanDate != null "> |
|
|
|
|
AND DATE_FORMAT(create_time,'%y%m%d') = DATE_FORMAT(#{param.scanDate},'%y%m%d') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.scanDateStart != null "> |
|
|
|
|
AND DATE_FORMAT(create_time,'%y%m%d') BETWEEN DATE_FORMAT(#{param.scanDateStart},'%y%m%d') AND DATE_FORMAT(#{param.scanDateEnd},'%y%m%d') |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
ORDER BY create_time DESC |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="exportWarehouseRetentionRecord" resultType="com.logpm.warehouse.excel.WarehouseRetentionScanExcel"> |
|
|
|
|
SELECT * FROM logpm_warehouse_retention_scan ${ew.customSqlSegment} |
|
|
|
|
</select> |
|
|
|
|
<select id="getExportWarehouseRetentionScanList" |
|
|
|
|
resultType="com.logpm.warehouse.excel.WarehouseRetentionScanExcel"> |
|
|
|
|
SELECT |
|
|
|
|
train_number AS trainNumber, |
|
|
|
|
order_code AS orderCode, |
|
|
|
|
reservation_code AS reservationCode, |
|
|
|
|
waybill_number AS waybillNumber, |
|
|
|
|
order_package_code AS orderPackageCode, |
|
|
|
|
material_number AS materialNumber, |
|
|
|
|
material_name AS materialName, |
|
|
|
|
retention_scan_time AS retentionScanTime, |
|
|
|
|
retention_scan_username AS retentionScanUsername, |
|
|
|
|
retention_quantity AS retentionQuantity, |
|
|
|
|
warehouse_name AS warehouseName, |
|
|
|
|
CASE retention_way |
|
|
|
|
WHEN 1 THEN '扫描' |
|
|
|
|
WHEN 2 THEN '文员' |
|
|
|
|
END retentionWay, |
|
|
|
|
CASE conditions |
|
|
|
|
WHEN 1 THEN '包件' |
|
|
|
|
WHEN 2 THEN '库存品' |
|
|
|
|
WHEN 1 THEN '零担' |
|
|
|
|
END conditions |
|
|
|
|
FROM |
|
|
|
|
logpm_warehouse_retention_scan |
|
|
|
|
<where> |
|
|
|
|
is_deleted = 0 |
|
|
|
|
<if test="param.orderCode != null and param.orderCode != ''"> |
|
|
|
|
AND order_code like concat(#{param.orderCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.trainNumber != null and param.trainNumber != ''"> |
|
|
|
|
AND train_number like concat(#{param.trainNumber},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.waybillNumber != null and param.waybillNumber != ''"> |
|
|
|
|
AND waybill_number like concat(#{param.waybillNumber},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.reservationCode != null and param.reservationCode != ''"> |
|
|
|
|
AND reservation_code like concat(#{param.reservationCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.reservationCode != null and param.reservationCode != ''"> |
|
|
|
|
AND reservation_code like concat(#{param.reservationCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.orderPackageCode != null and param.orderPackageCode != ''"> |
|
|
|
|
AND order_package_code like concat(#{param.orderPackageCode},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.materialNumber != null and param.materialNumber != ''"> |
|
|
|
|
AND material_number like concat(#{param.materialNumber},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.materialName != null and param.materialName != ''"> |
|
|
|
|
AND material_name like concat(#{param.materialName},'%') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.warehouseListId != null "> |
|
|
|
|
AND warehouse_id IN |
|
|
|
|
<foreach collection="param.warehouseListId" item="item" index="index" open="(" close=")" separator=","> |
|
|
|
|
#{item} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
<if test="param.scanDate != null "> |
|
|
|
|
AND DATE_FORMAT(create_time,'%y%m%d') = DATE_FORMAT(#{param.scanDate},'%y%m%d') |
|
|
|
|
</if> |
|
|
|
|
<if test="param.scanDateStart != null "> |
|
|
|
|
AND DATE_FORMAT(create_time,'%y%m%d') BETWEEN DATE_FORMAT(#{param.scanDateStart},'%y%m%d') AND DATE_FORMAT(#{param.scanDateEnd},'%y%m%d') |
|
|
|
|
</if> |
|
|
|
|
</where> |
|
|
|
|
ORDER BY create_time DESC |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
</mapper> |
|
|
|
|