Commit cf3a3039 by fudahua

fix:igbore被删除了修复

parent c98c6563
......@@ -34,6 +34,7 @@ public class PendingTaskServiceImpl implements PendingTaskService {
tabPendingTask.setUpdateTime(new Date());
if (pendingTask != null) {
tabPendingTask.setId(pendingTask.getId());
tabPendingTask.setDeleteFlag(0);
pendingTaskMapper.updateByPrimaryKeySelective(tabPendingTask);
} else {
tabPendingTask.setCreateTime(new Date());
......
......@@ -255,7 +255,10 @@
select
<include refid="Base_Column_List"/>
from tab_haoban_pending_task
where enterprise_id = #{enterpriseId} and store_id =#{storeId} and task_status_flag=0 and delete_flag=0
where enterprise_id = #{enterpriseId}
and store_id =#{storeId}
and task_status_flag=0
and delete_flag=0
<if test="finishFlag != -1">
and finish_flag = #{finishFlag}
</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