Commit 0ee474b3 by 徐高华

群发 放弃状态转成未完成

parent 796eae4d
......@@ -101,6 +101,9 @@ public class GroupChatPlanOwnerLogServiceImpl implements GroupChatPlanOwnerLogSe
dto.setStoreCode(map.get(storeId).getStoreCode());
dto.setStoreName(map.get(storeId).getStoreName());
}
if(dto.getSendStatus()==3) {
dto.setSendStatus(1);
}
});
}
}
......
......@@ -149,7 +149,12 @@
where
a.wx_enterprise_id = #{wxEnterpriseId} and a.plan_id = #{planId} and a.delete_flag = 0
<if test="null != sendStatus">
and send_status = #{sendStatus}
<if test="sendStatus==1">
and send_status in (1,3)
</if>
<if test="sendStatus==2">
and send_status = 2
</if>
</if>
<if test="null != searchParams and ''!=searchParams">
and b.staff_name like #{searchParams}
......
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