|
@@ -32,7 +32,7 @@
|
32
|
32
|
AND t.signatory_time = NULL
|
33
|
33
|
</when>
|
34
|
34
|
<when test="signatoryStatus == 1">
|
35
|
|
- AND t.signatory_time <> NULL
|
|
35
|
+ AND t.signatory_time is not NULL
|
36
|
36
|
</when>
|
37
|
37
|
<otherwise></otherwise>
|
38
|
38
|
</choose>
|
|
@@ -41,7 +41,7 @@
|
41
|
41
|
AND t.customer_time = NULL
|
42
|
42
|
</when>
|
43
|
43
|
<when test="customerStatus == 1">
|
44
|
|
- AND t.customer_time <> NULL
|
|
44
|
+ AND t.customer_time is not NULL
|
45
|
45
|
</when>
|
46
|
46
|
<otherwise></otherwise>
|
47
|
47
|
</choose>
|
|
@@ -65,6 +65,7 @@
|
65
|
65
|
LEFT JOIN ta_channel_app_relation t5 ON t.org_id = t5.org_id
|
66
|
66
|
LEFT JOIN ta_channel_proxy t6 ON t5.channel_id = t6.channel_id
|
67
|
67
|
<where>
|
|
68
|
+ t.target_type != 'auth'
|
68
|
69
|
<if test=" bo.companyName != null and bo.companyName != ''">
|
69
|
70
|
AND t2.company_name like CONCAT('%',#{bo.companyName} , '%')
|
70
|
71
|
</if>
|