cloudroam
3 天以前 3a819e4f668c15e8b77b188b322470da12bb7a43
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
<?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.mzl.flower.mapper.comment.FlowerCommentMapperCustom">
 
    <select id="getPage" resultType="com.mzl.flower.dto.response.comment.FlowerCommentVO">
        <include refid="baseSql" />
    </select>
    <select id="getList" resultType="com.mzl.flower.dto.response.comment.FlowerCommentVO">
        <include refid="baseSql" />
    </select>
    <select id="getSupplierAvgScore" resultType="java.math.BigDecimal">
        SELECT
            COALESCE(ROUND(SUM(c.comment_grade) / NULLIF(COUNT(1), 0), 1), 0) AS average_grade
        FROM t_flower_comment c
        WHERE c.deleted = false and c.show_flag=0
          AND c.supplier_id = #{supplierId}
    </select>
 
    <sql id="baseSql">
        select c.*,
            oi.flower_name,
            oi.flower_unit,
            oi.flower_color,
            oi.flower_level,
            oi.flower_category,
            ci.name as customer_name,
            ci.cover as customer_cover,
            o.order_no,
            sui.name as supplier_name,
            sui.contact_name as supplier_contact_name,
            sui.contact_tel as supplier_contact_tel
        from t_flower_comment c
        left join t_order_item oi
        on c.order_item_id=oi.id
        left join t_order o
        on c.order_id=o.id
        left join t_customer_info ci
        on c.customer_id=ci.id
        left join t_supplier_info sui
        on c.supplier_id =sui.id
        where c.deleted=false
        <if test="param.id != null and param.id != ''">
            and c.id = #{param.id}
        </if>
        <if test="param.orderId != null and param.orderId != ''">
            and c.order_id = #{param.orderId}
        </if>
        <if test="param.orderItemId != null and param.orderItemId != ''">
            and c.order_item_id = #{param.orderItemId}
        </if>
        <if test="param.customerId != null ">
            and c.customer_id = #{param.customerId}
        </if>
        <if test="param.supplierId != null">
            and c.supplier_id = #{param.supplierId}
        </if>
        <if test="param.flowerId != null">
            and c.flower_id = #{param.flowerId}
        </if>
        <if test="param.showFlag != null">
            and c.show_flag = #{param.showFlag}
        </if>
 
        <if test="param.orderNo != null and param.orderNo != ''">
            and o.order_no like concat('%', #{param.orderNo}, '%')
        </if>
        <if test="param.flowerName != null and param.flowerName != ''">
            and oi.flower_name like concat('%', #{param.flowerName}, '%')
        </if>
        <if test="param.commentGrade != null">
            and c.comment_grade = #{param.commentGrade}
        </if>
        <if test="param.commentStartDate != null">
            and DATE_FORMAT(c.create_time, '%Y-%m-%d') &gt;= #{param.commentStartDate}
        </if>
        <if test="param.commentEndDate != null">
            and DATE_FORMAT(c.create_time, '%Y-%m-%d') &lt;= #{param.commentEndDate}
        </if>
 
        order by c.create_time desc
 
    </sql>
 
</mapper>