|
@@ -15,9 +15,9 @@
|
|
|
SELECT t1.audit_status,
|
|
|
IFNULL(t1.revieweder_id, '-'),
|
|
|
IFNULL(t1.revieweder, '-'),
|
|
|
- CASE revieweder_id
|
|
|
- WHEN 'financialReview' THEN '财务审核'
|
|
|
- WHEN 'meidaManager' THEN '媒介'
|
|
|
+ CASE
|
|
|
+ WHEN revieweder_id like'financ%' THEN '财务审核'
|
|
|
+ WHEN revieweder_id ='meidaManager' THEN '媒介'
|
|
|
ELSE
|
|
|
t4.role_name
|
|
|
END,
|
|
@@ -105,7 +105,7 @@
|
|
|
</if>
|
|
|
<if test="startDate != null and startDate != '' ">
|
|
|
and t1.create_time >= #{startDate}
|
|
|
- and t1.create_time <= #{endDate}
|
|
|
+ and t1.create_time <= concat(#{endDate},' 23:59:59')
|
|
|
</if>
|
|
|
</where>
|
|
|
GROUP BY t1.id
|