|
|
@@ -2317,6 +2317,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="companyUserId != null and companyUserId !=''">
|
|
|
AND company_user_id = #{companyUserId}
|
|
|
</if>
|
|
|
+ <if test="source != null and source !=''">
|
|
|
+ AND source = #{source}
|
|
|
+ </if>
|
|
|
+ <if test="deptId != null and deptId !=''">
|
|
|
+ AND dept_id = #{deptId}
|
|
|
+ </if>
|
|
|
+ <if test="packageName != null and packageName !=''">
|
|
|
+ AND package_name like concat('%', #{packageName}, '%')
|
|
|
+ </if>
|
|
|
</select>
|
|
|
|
|
|
<select id="selectScheduleStatisticsVOList" resultType="com.fs.his.vo.FsStoreOrderScheduleStatisticsVO">
|