Upd:修改计算新老消费者人头数,每日数据生成逻辑

master
dulingling 5 years ago
parent ff779faa60
commit 929dcfb427

@ -9,7 +9,7 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>manage</artifactId> <artifactId>manage</artifactId>
<version>1.3.89</version> <version>1.3.90</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>

@ -406,10 +406,11 @@
<select id="countNewCustomers" resultType="java.lang.Integer"> <select id="countNewCustomers" resultType="java.lang.Integer">
<![CDATA[ <![CDATA[
SELECT COUNT(DISTINCT customer_id) FROM pmt_orders o SELECT COUNT(DISTINCT customer_id) FROM (SELECT o.customer_id FROM pmt_transactions t
INNER JOIN pmt_orders o ON o.order_id = t.order_id
]]> ]]>
<![CDATA[ <![CDATA[
WHERE o.create_time >= #{begin} AND o.create_time < #{end} AND o.status>4 WHERE o.create_time >= #{begin} AND o.create_time < #{end}
]]> ]]>
<if test="client_ids!=null"> <if test="client_ids!=null">
AND o.client_id IN AND o.client_id IN
@ -420,31 +421,30 @@
<if test="client_ids==null and client_id != null"> <if test="client_ids==null and client_id != null">
and o.client_id=#{client_id} and o.client_id=#{client_id}
</if> </if>
<if test="org_id!=null and org_ids==null">and o.org_id=#{org_id}</if> <if test="org_id!=null and org_ids==null">and t.org_id=#{org_id}</if>
<if test="org_ids!=null">and o.org_id in <if test="org_ids!=null">and t.org_id in
<foreach collection="org_ids" item="org_id" open="(" close=")" separator=",">#{org_id}</foreach> <foreach collection="org_ids" item="org_id" open="(" close=")" separator=",">#{org_id}</foreach>
</if> </if>
<if test="channel !=null">and o.channel = #{channel}</if> <if test="channel !=null">and o.channel = #{channel}</if>
AND EXISTS ( <![CDATA[
<![CDATA[ GROUP BY o.customer_id) p
select customer_id from pmt_orders oo where oo.customer_id=o.customer_id where p.customer_id NOT IN (SELECT o.customer_id FROM pmt_transactions t INNER JOIN pmt_orders o ON o.order_id = t.order_id
and oo.create_time < #{begin} AND oo.status>4 ]]>
]]> <![CDATA[
<if test="client_ids!=null"> WHERE o.create_time < #{begin}
AND oo.client_id IN ]]>
<foreach collection="client_ids" open="(" close=")" separator="," item="client_id"> <if test="client_ids!=null">
#{client_id} AND o.client_id IN
</foreach> <foreach collection="client_ids" open="(" close=")" separator="," item="client_id">
</if> #{client_id}
<if test="client_ids==null and client_id != null"> </foreach>
and oo.client_id=#{client_id} </if>
</if> <if test="client_ids==null and client_id != null">
<if test="org_id!=null and org_ids==null">and oo.org_id=#{org_id}</if> and o.client_id=#{client_id}
<if test="org_ids!=null">and oo.org_id in </if>
<foreach collection="org_ids" item="org_id" open="(" close=")" separator=",">#{org_id}</foreach> <![CDATA[
</if>
<if test="channel !=null">and oo.channel = #{channel}</if>
) )
]]>
</select> </select>
<select id="countOldCustomers" resultType="java.lang.Integer"> <select id="countOldCustomers" resultType="java.lang.Integer">
<![CDATA[ <![CDATA[

Loading…
Cancel
Save