Administrator
2023-04-21 195945efc5db921a4c9eb8cf9421c172273293f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?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 &gt;= 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 &lt;= #{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 &gt; 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 &gt;= 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 &lt;= #{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>