Commit 57355164 by fudahua

待办-今日待办

parent 67c77a4a
......@@ -63,7 +63,8 @@ public interface PendingTaskMapper {
* @param endDate
* @return
*/
public List<TabPendingTask> listPendingTaskByCreateTime(@Param("enterpriseId") String enterpriseId, @Param("storeId") String storeId, @Param("clerkId") String clerkId,
public List<TabPendingTask> listPendingTaskByCreateTime(@Param("enterpriseId") String enterpriseId, @Param("storeId") String storeId,
@Param("clerkId") String clerkId,
@Param("startDate") String startDate, @Param("endDate") String endDate);
}
\ No newline at end of file
......@@ -261,8 +261,9 @@
select
<include refid="Base_Column_List"/>
from tab_haoban_pending_task
where enterprise_id = #{enterpriseId} and store_id =#{storeId}
<if test="clerkId != -1">
where enterprise_id = #{enterpriseId}
and store_id =#{storeId}
<if test="clerkId != null">
and clerk_id = #{clerkId}
</if>
<if test="startDate != null">
......
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