Browse Source

任务结算-工时列表确认修改

master
chentaiyu 4 years ago
parent
commit
98b2857c86
  1. 9
      xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmTaskWorkloadMapper.xml

9
xm-core/src/main/resources/mybatis/mapper/xm/core/dao/XmTaskWorkloadMapper.xml

@ -65,7 +65,14 @@
<update id="updateWorkloadWstatus" parameterType="com.xm.core.entity.XmTaskWorkload"> <update id="updateWorkloadWstatus" parameterType="com.xm.core.entity.XmTaskWorkload">
update xm_task_workload res update xm_task_workload res
<set> <set>
res.wstatus = #{wstatus}
res.wstatus = #{wstatus},
res.sstatus = '1',
<if test="amt==null || amt ==''">
res.amt = 0,
</if>
<if test="samt ==null || samt ==''">
res.samt = 0
</if>
</set> </set>
<where> <where>
<if test=" ids != null"> and (res.id) in <if test=" ids != null"> and (res.id) in

Loading…
Cancel
Save