|
@@ -291,12 +291,20 @@
|
|
LEFT JOIN WINDFARM f ON w.WORKDEPT = f.WFNAME
|
|
LEFT JOIN WINDFARM f ON w.WORKDEPT = f.WFNAME
|
|
<where>
|
|
<where>
|
|
<if test="st !=null and et !=null">
|
|
<if test="st !=null and et !=null">
|
|
- and ((w.startdate >= #{st} and w.startdate <= #{et})
|
|
|
|
- and (w.enddate >= #{st} and w.enddate <= #{et}
|
|
|
|
- and (w.enddate <= CONVERT(varchar,GETDATE(),20) or w.newdate <= CONVERT(varchar,GETDATE(),20))
|
|
|
|
- or (w.finaltime >= #{st} and w.finaltime <= #{et}))
|
|
|
|
- </if>
|
|
|
|
|
|
|
|
|
|
+ and ((w.finaltime >= #{st} and w.finaltime <= #{et})
|
|
|
|
+ or (w.startdate >= #{st} and w.startdate <= #{et}
|
|
|
|
+ and w.enddate >= #{st} and w.enddate <= #{et}
|
|
|
|
+ AND w.enddate <= CONVERT ( VARCHAR, GETDATE ( ), 20 )
|
|
|
|
+ and w.finaltime is null
|
|
|
|
+ and w.newdate is null)
|
|
|
|
+ or ( w.newdate IS not null
|
|
|
|
+ and w.startdate >= #{st} and w.startdate <= #{et}
|
|
|
|
+ AND w.enddate >= #{st} and w.enddate <= #{et}
|
|
|
|
+ AND w.newdate >= #{st} and w.newdate <= #{et}
|
|
|
|
+ and w.newdate <= CONVERT ( VARCHAR, GETDATE ( ), 20 )))
|
|
|
|
+
|
|
|
|
+ </if>
|
|
|
|
|
|
<if test="'' != type and null != type">
|
|
<if test="'' != type and null != type">
|
|
and w.wtickettype = #{type}
|
|
and w.wtickettype = #{type}
|
|
@@ -307,11 +315,12 @@
|
|
</if>
|
|
</if>
|
|
|
|
|
|
</where>
|
|
</where>
|
|
- ))
|
|
|
|
- select * from cte1
|
|
|
|
- where ticketnum not in (select c.ticketnum from cte1 c where c.newdate is not null and c.finaltime is null) ORDER BY ticketnum
|
|
|
|
|
|
+
|
|
|
|
+ )
|
|
|
|
+ select * from cte1 order by ticketnum,startdate
|
|
|
|
|
|
</select>
|
|
</select>
|
|
|
|
+
|
|
<select id="selectWorkticketPer" resultType="java.util.Map">
|
|
<select id="selectWorkticketPer" resultType="java.util.Map">
|
|
WITH cte1 AS (
|
|
WITH cte1 AS (
|
|
SELECT
|
|
SELECT
|
|
@@ -332,10 +341,18 @@
|
|
<where>
|
|
<where>
|
|
<if test="st !=null and et !=null">
|
|
<if test="st !=null and et !=null">
|
|
|
|
|
|
- and ((w.startdate >= #{st} and w.startdate <= #{et})
|
|
|
|
- and (w.enddate >= #{st} and w.enddate <= #{et})
|
|
|
|
- AND (w.enddate <= CONVERT(varchar,GETDATE(),20) or w.newdate <= CONVERT(varchar,GETDATE(),20))
|
|
|
|
- or (w.finaltime >= #{st} and w.finaltime <= #{et}))
|
|
|
|
|
|
+ and ((w.finaltime >= #{st} and w.finaltime <= #{et})
|
|
|
|
+ or (w.startdate >= #{st} and w.startdate <= #{et}
|
|
|
|
+ and w.enddate >= #{st} and w.enddate <= #{et}
|
|
|
|
+ AND w.enddate <= CONVERT ( VARCHAR, GETDATE ( ), 20 )
|
|
|
|
+ and w.finaltime is null
|
|
|
|
+ and w.newdate is null)
|
|
|
|
+ or ( w.newdate IS not null
|
|
|
|
+ and w.startdate >= #{st} and w.startdate <= #{et}
|
|
|
|
+ AND w.enddate >= #{st} and w.enddate <= #{et}
|
|
|
|
+ AND w.newdate >= #{st} and w.newdate <= #{et}
|
|
|
|
+ and w.newdate <= CONVERT ( VARCHAR, GETDATE ( ), 20 )))
|
|
|
|
+
|
|
</if>
|
|
</if>
|
|
|
|
|
|
|
|
|
|
@@ -363,7 +380,7 @@
|
|
SUM(CASE WHEN tag = 1 THEN 1 ELSE 0 END) AS failnum,
|
|
SUM(CASE WHEN tag = 1 THEN 1 ELSE 0 END) AS failnum,
|
|
ROUND(ISNULL(COALESCE(CAST(SUM(CASE WHEN tag = 0 THEN 1 ELSE 0 END) AS FLOAT), 0)/NULLIF(count(tag) ,0),0), 2)*100 per
|
|
ROUND(ISNULL(COALESCE(CAST(SUM(CASE WHEN tag = 0 THEN 1 ELSE 0 END) AS FLOAT), 0)/NULLIF(count(tag) ,0),0), 2)*100 per
|
|
from cte1
|
|
from cte1
|
|
- where ticketnum not in (select c.ticketnum from cte1 c where c.newdate is not null and c.finaltime is null)
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|