Commit ec0b48f4 by huluobin

Merge branch 'master' into 3.0

parents ccd9f174 80e2ab03
...@@ -149,6 +149,7 @@ ...@@ -149,6 +149,7 @@
from cost t1 from cost t1
left join cost_current_reviewer tt on t1.cost_no = tt.cost_no left join cost_current_reviewer tt on t1.cost_no = tt.cost_no
where tt.oa_user_id =#{req.oaUserId} where tt.oa_user_id =#{req.oaUserId}
and t1.cost_status != 5
<if test=" req.startTime!=null"> <if test=" req.startTime!=null">
and t1.create_time &gt;=#{req.startTime} and t1.create_time &gt;=#{req.startTime}
</if> </if>
...@@ -169,7 +170,7 @@ ...@@ -169,7 +170,7 @@
select * select *
from cost from cost
where create_userid = #{req.oaUserId} where create_userid = #{req.oaUserId}
and cost_status in (6,7,8,9) and cost_status in (4,6,7,8,9)
<if test=" req.startTime!=null"> <if test=" req.startTime!=null">
and create_time &gt;=#{req.startTime} and create_time &gt;=#{req.startTime}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment