fix 商户分类统计

master
luoyang 5 years ago
parent a1465a7a3b
commit d160dd54f5

@ -9,7 +9,7 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>manage</artifactId> <artifactId>manage</artifactId>
<version>1.4.9</version> <version>1.4.11</version>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jib-maven-plugin.version>1.8.0</jib-maven-plugin.version> <jib-maven-plugin.version>1.8.0</jib-maven-plugin.version>

@ -1116,13 +1116,13 @@
statistics_customer_order so statistics_customer_order so
inner JOIN sys_clients c ON so.client_id = c.client_id inner JOIN sys_clients c ON so.client_id = c.client_id
AND c.is_valid = 1 AND c.is_valid = 1
<if test="industry != null and industry!=0 and industry!=1"> <if test="industry != null and industry=='1'.toString()">
AND (c.royalpayindustry =1 or c.royalpayindustry like '100%')
</if>
<if test="industry != null and industry!='0'.toString() and industry!='1'">
<bind name="industry" value="industry +'%'"/> <bind name="industry" value="industry +'%'"/>
AND c.royalpayindustry like #{industry} AND c.royalpayindustry like #{industry}
</if> </if>
<if test="industry != null and industry==1">
AND (c.royalpayindustry =1 or c.royalpayindustry like '100%')
</if>
and so.date >= #{from} and so.date >= #{from}
and so.date &lt; #{to} and so.date &lt; #{to}
and so.client_id!=0 and so.client_id!=0
@ -1147,13 +1147,13 @@
statistics_customer_order so statistics_customer_order so
inner JOIN sys_clients c ON so.client_id = c.client_id inner JOIN sys_clients c ON so.client_id = c.client_id
AND c.is_valid = 1 AND c.is_valid = 1
<if test="industry != null and industry!=0 and industry!=1"> <if test="industry != null and industry=='1'.toString()">
AND (c.royalpayindustry =1 or c.royalpayindustry like '100%')
</if>
<if test="industry != null and industry!='0'.toString() and industry!='1'.toString()">
<bind name="industry" value="industry+'%'"/> <bind name="industry" value="industry+'%'"/>
AND c.royalpayindustry like #{industry} AND c.royalpayindustry like #{industry}
</if> </if>
<if test="industry != null and industry==1">
AND (c.royalpayindustry =1 or c.royalpayindustry like '100%')
</if>
and so.date= #{transDate} and so.date= #{transDate}
and so.client_id!=0 and so.client_id!=0
<if test="bd_user!=null"> <if test="bd_user!=null">

@ -89,13 +89,13 @@
<if test="business_structure!=null"> <if test="business_structure!=null">
AND c.business_structure=#{business_structure} AND c.business_structure=#{business_structure}
</if> </if>
<if test="industry!=null and industry != 0 and industry and industry!=1"> <if test="industry != null and industry == '1'.toString()">
AND (c.royalpayindustry =1 or c.royalpayindustry like '100%')
</if>
<if test="industry!=null and industry != '0'.toString() and industry and industry!='1'">
<bind name="industry" value="industry+'%'"/> <bind name="industry" value="industry+'%'"/>
AND c.royalpayindustry like #{industry} AND c.royalpayindustry like #{industry}
</if> </if>
<if test="industry != null and industry==1">
AND (c.royalpayindustry =1 or c.royalpayindustry like '100%')
</if>
<if test="create_start_time!=null"> <if test="create_start_time!=null">
AND c.create_time >= #{create_start_time} AND c.create_time >= #{create_start_time}
</if> </if>

Loading…
Cancel
Save