|
|
|
@ -103,7 +103,7 @@
|
|
|
|
|
YEAR(lww.document_making_time) timeStr, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 2"> |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-',QUARTER(lww.document_making_time)) timeStr, |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-Q',QUARTER(lww.document_making_time)) timeStr, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 3"> |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, |
|
|
|
@ -274,7 +274,7 @@
|
|
|
|
|
YEAR(lww.document_making_time) timeStr, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 2"> |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-',QUARTER(lww.document_making_time)) timeStr, |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-Q',QUARTER(lww.document_making_time)) timeStr, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 3"> |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, |
|
|
|
@ -437,8 +437,15 @@
|
|
|
|
|
<if test="param.brands == null or param.brands.size() == 0 "> |
|
|
|
|
'全部' brand, |
|
|
|
|
</if> |
|
|
|
|
YEAR(lww.document_making_time) nian, |
|
|
|
|
MONTH(lww.document_making_time) yue, |
|
|
|
|
<if test="param.type != null and param.type == 1"> |
|
|
|
|
YEAR(lww.document_making_time) timeStr, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 2"> |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-Q',QUARTER(lww.document_making_time)) timeStr, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 3"> |
|
|
|
|
CONCAT(YEAR(lww.document_making_time),'-',MONTH(lww.document_making_time)) timeStr, |
|
|
|
|
</if> |
|
|
|
|
count(lww.id) waybillNum, |
|
|
|
|
sum(lww.total_count) num, |
|
|
|
|
sum(IFNULL(lww.total_weight,0)) weight, |
|
|
|
@ -487,22 +494,34 @@
|
|
|
|
|
<if test="param.endTime != null "> |
|
|
|
|
and lww.document_making_time <= #{param.endTime} |
|
|
|
|
</if> |
|
|
|
|
group by YEAR(lww.document_making_time), |
|
|
|
|
<if test="param.businessLines != null and param.businessLines.size() > 0 "> |
|
|
|
|
waw.business_line, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0 "> |
|
|
|
|
lww.departure_warehouse_id, |
|
|
|
|
lww.departure_warehouse_name, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0 "> |
|
|
|
|
lww.destination_warehouse_id, |
|
|
|
|
lww.destination_warehouse_name, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.brands != null and param.brands.size() > 0 "> |
|
|
|
|
lww.brand, |
|
|
|
|
</if> |
|
|
|
|
MONTH(lww.document_making_time) |
|
|
|
|
group by |
|
|
|
|
<trim suffixOverrides=","> |
|
|
|
|
<if test="param.type != null and param.type == 1"> |
|
|
|
|
YEAR(lww.document_making_time), |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 2"> |
|
|
|
|
YEAR(lww.document_making_time), |
|
|
|
|
QUARTER(lww.document_making_time), |
|
|
|
|
</if> |
|
|
|
|
<if test="param.type != null and param.type == 3"> |
|
|
|
|
YEAR(lww.document_making_time), |
|
|
|
|
MONTH(lww.document_making_time), |
|
|
|
|
</if> |
|
|
|
|
<if test="param.businessLines != null and param.businessLines.size() > 0 "> |
|
|
|
|
waw.business_line, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0 "> |
|
|
|
|
lww.departure_warehouse_id, |
|
|
|
|
lww.departure_warehouse_name, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0 "> |
|
|
|
|
lww.destination_warehouse_id, |
|
|
|
|
lww.destination_warehouse_name, |
|
|
|
|
</if> |
|
|
|
|
<if test="param.brands != null and param.brands.size() > 0 "> |
|
|
|
|
lww.brand, |
|
|
|
|
</if> |
|
|
|
|
</trim> |
|
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
<select id="consigineeIncomingPage" resultType="com.logpm.report.vo.ReportDeptIncomingVO"> |
|
|
|
|