fix
Helius
2021-09-23 b40f2583b36aaf41b204003f6e9c4c8d66fde56e
src/main/resources/mapper/modules/MallOrderInfoMapper.xml
@@ -53,6 +53,7 @@
        <result column="longitude" property="longitude" />
        <result column="latitude" property="latitude" />
        <result column="remark" property="remark" />
        <result column="del_flag" property="delFlag" />
        <collection property="items" ofType="cc.mrbird.febs.mall.entity.MallOrderItem">
            <id property="id" column="item_id" />
            <result property="orderId" column="order_id" />
@@ -89,10 +90,10 @@
            <if test="record.query != null and record.query != ''">
                and (b.goods_name like CONCAT('%', CONCAT(#{record.query}, '%')) or b.style_name like CONCAT('%', CONCAT(#{record.query}, '%')) or b.sku_name like CONCAT('%', CONCAT(#{record.query}, '%')))
            </if>
            <if test="record.status == 4">
            <if test="record.status == 4 and record.status != 0">
                and a.status in (5,6)
            </if>
            <if test="record.status != 4">
            <if test="record.status != 4 and record.status != 0">
                and a.status = #{record.status}
            </if>
        </where>
@@ -115,7 +116,7 @@
            b.amount
        from mall_order_info a
             inner join mall_order_item b on a.id=b.order_id
        where id=#{id}
        where a.id=#{id}
    </select>
    <select id="selectMemberOrderStatusCnt" resultType="java.util.Map">
@@ -126,4 +127,13 @@
        where del_flag=2 and member_id=#{memberId}
        group by status
    </select>
    <select id="getMallOrderDetailById" resultType="cc.mrbird.febs.mall.vo.AdminOrderDetailVo">
        select * from mall_order_info a where a.id = #{id}
    </select>
    <select id="getMallOrderItemByOrderId" resultType="cc.mrbird.febs.mall.entity.MallOrderItem">
        select * from mall_order_item where order_id = #{id}
    </select>
</mapper>