|
|
|
@ -1116,11 +1116,11 @@
|
|
|
|
|
statistics_customer_order so
|
|
|
|
|
inner JOIN sys_clients c ON so.client_id = c.client_id
|
|
|
|
|
AND c.is_valid = 1
|
|
|
|
|
<if test="industry != null 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' and industry!='1'">
|
|
|
|
|
<bind name="industry" value="industry+'%'"/>
|
|
|
|
|
<if test="industry != null and industry!='0'.toString() and industry!='1'">
|
|
|
|
|
<bind name="industry" value="industry +'%'"/>
|
|
|
|
|
AND c.royalpayindustry like #{industry}
|
|
|
|
|
</if>
|
|
|
|
|
and so.date >= #{from}
|
|
|
|
|