|
@@ -275,12 +275,21 @@
|
|
|
w.ticketnum,
|
|
|
w.principal,
|
|
|
w.deptgroup1,
|
|
|
- w.startdate,
|
|
|
- w.enddate,
|
|
|
+ t.description2,
|
|
|
+ t.address,
|
|
|
+ w.wspeed,
|
|
|
+ CASE WHEN w.startdate IS NULL THEN w.applyfirestarttime ELSE w.startdate END AS startdate,
|
|
|
+ CASE WHEN w.enddate IS NULL THEN w.applyfireendtime ELSE w.enddate END AS enddate,
|
|
|
+ w.signatory,
|
|
|
+ w.inceptdate,
|
|
|
+ CASE WHEN w.fiatuser1 IS NULL THEN w.fiatuser ELSE w.fiatuser1 END AS fiatuser1,
|
|
|
+ w.fiatdate,
|
|
|
+ w.startworktime,
|
|
|
w.newdate,
|
|
|
w.finaltime,
|
|
|
w.status,
|
|
|
w.workdept,
|
|
|
+ w.remark3 persons,
|
|
|
e.description,
|
|
|
w.wtickettype,
|
|
|
CASE WHEN w.finaltime IS NULL THEN '1' ELSE '0' END AS tag,
|
|
@@ -289,6 +298,7 @@
|
|
|
workticket w
|
|
|
LEFT JOIN LOCATIONS e ON w.wtnum = e.LOCATION
|
|
|
LEFT JOIN WINDFARM f ON w.WORKDEPT = f.WFNAME
|
|
|
+ LEFT JOIN WOWORKTASK t ON t.WONUM = w.wonum
|
|
|
<where>
|
|
|
<if test="st !=null and et !=null">
|
|
|
|
|
@@ -317,7 +327,7 @@
|
|
|
</where>
|
|
|
|
|
|
)
|
|
|
- select * from cte1 order by ticketnum,startdate
|
|
|
+ select * from cte1 order by ticketnum desc
|
|
|
|
|
|
</select>
|
|
|
|