<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="com.mandi.fendan.mapper.Fd_GbxstdMapper">
|
<select id="counts" parameterType="Map" resultType="int">
|
select count(1) from gbxstd_view a
|
<where>
|
<if test="companyNo !=null and companyNo !=''">
|
EXISTS ( SELECT 1 from fd_company_ywdy b where a.td_ywdybh=b.ywdyNo and b.companyNo=#{companyNo} )
|
<choose>
|
<when test="ztbz==0">
|
and EXISTS (SELECT 1 from fd_wlgs_fhdq b
|
LEFT JOIN nc_dq c on b.fhdqNo=c.code
|
where c.code=a.td_shddbh and b.wlgsNo=#{companyNo} AND a.td_ztbz!='自提'
|
<!-- <if test='cqV >= 0'>
|
<choose>
|
<when test="cqV==0">
|
and b.ywdyNo!='102'
|
</when>
|
<otherwise>
|
and b.ywdyNo='102'
|
</otherwise>
|
</choose>
|
</if> -->
|
)
|
</when>
|
<otherwise>
|
and a.td_ztbz='自提'
|
</otherwise>
|
</choose>
|
</if>
|
<if test="stime !=null ">
|
and a.td_gbsj>=#{stime}+' 00:00:00'
|
</if>
|
<if test="etime !=null ">
|
and a.td_gbsj <= #{etime}+' 23:59:59'
|
</if>
|
<if test="tdbh !=null and tdbh !='' ">
|
and a.td_tdbh like '%'+#{tdbh}+'%'
|
</if>
|
<if test="khmc !=null and khmc !='' ">
|
and ( a.td_khmc like '%'+#{khmc}+'%')
|
</if>
|
<if test="shdd !=null and shdd !='' ">
|
and a.td_shdd = #{shdd}
|
</if>
|
<if test="zdbm !=null and zdbm !='' ">
|
and ( a.td_bmmc like '%'+#{zdbm}+'%')
|
</if>
|
<if test="fpbh !=null and fpbh !='' ">
|
and ( a.td_fpbh like '%'+#{fpbh}+'%')
|
</if>
|
<if test="zdr !=null and zdr !='' ">
|
and ( a.td_zdr like '%'+#{zdr}+'%')
|
</if>
|
</where>
|
</select>
|
|
<select id="getList" parameterType="java.util.Map" resultType="java.util.Map">
|
<choose>
|
<when test="pagesize > 0 ">
|
select top ${pagesize} *
|
</when>
|
<otherwise>
|
select *
|
</otherwise>
|
</choose>
|
from ( select row_number()
|
<choose>
|
<when test="sort!=null and sort!='' ">
|
over (order by ${sort} )
|
</when>
|
<otherwise>
|
over (order by a.td_gbsj desc )
|
</otherwise>
|
</choose>
|
as rownumber,a.* from gbxstd_view a
|
<where>
|
<if test="companyNo !=null and companyNo !=''">
|
EXISTS ( SELECT 1 from fd_company_ywdy b where a.td_ywdybh=b.ywdyNo and b.companyNo=#{companyNo} )
|
<choose>
|
<when test="ztbz==0">
|
and EXISTS (SELECT 1 from fd_wlgs_fhdq b LEFT JOIN nc_dq c on b.fhdqNo=c.code where c.code=a.td_shddbh and b.wlgsNo=#{companyNo} AND a.td_ztbz!='自提'
|
<!-- <if test='cqV >= 0'>
|
<choose>
|
<when test="cqV==0">
|
and b.ywdyNo!='102'
|
</when>
|
<otherwise>
|
and b.ywdyNo='102'
|
</otherwise>
|
</choose>
|
</if> -->
|
)
|
</when>
|
<otherwise>
|
and a.td_ztbz='自提'
|
</otherwise>
|
</choose>
|
</if>
|
<if test="stime !=null ">
|
and a.td_gbsj>=#{stime}+' 00:00:00'
|
</if>
|
<if test="etime !=null ">
|
and a.td_gbsj <= #{etime}+' 23:59:59'
|
</if>
|
<if test="tdbh !=null and tdbh !='' ">
|
and a.td_tdbh like '%'+#{tdbh}+'%'
|
</if>
|
<if test="khmc !=null and khmc !='' ">
|
and ( a.td_khmc like '%'+#{khmc}+'%')
|
</if>
|
<if test="shdd !=null and shdd !='' ">
|
and a.td_shdd = #{shdd}
|
</if>
|
<if test="zdbm !=null and zdbm !='' ">
|
and ( a.td_bmmc like '%'+#{zdbm}+'%')
|
</if>
|
<if test="fpbh !=null and fpbh !='' ">
|
and ( a.td_fpbh like '%'+#{fpbh}+'%')
|
</if>
|
<if test="zdr !=null and zdr !='' ">
|
and ( a.td_zdr like '%'+#{zdr}+'%')
|
</if>
|
</where>
|
) as a where rownumber > #{pagesize}*#{page} order by a.rownumber asc
|
</select>
|
</mapper>
|