Browse Source

Merge branch 'dev_1_3_3_20220822' of http://git.dayaedu.com/yonge/cooleshow into dev_1_3_3_20220822

yonge 2 years ago
parent
commit
2499dabbcd

+ 7 - 7
cooleshow-user/user-biz/src/main/resources/config/mybatis/MusicSheetMapper.xml

@@ -295,19 +295,19 @@
         where find_in_set(s.id_,t.music_subject_)  and s.del_flag_ = 0) as subjectNames
         <if test="param.studentId != null">
             ,if(mf.id_ is not null,1,0) as favorite
-            ,case when mspr.id_ is not null then 1
-                when t.charge_type_ = 'FREE' then 1
-                else 0 end as play
+<!--            ,case when mspr.id_ is not null then 1-->
+<!--                when t.charge_type_ = 'FREE' then 1-->
+<!--                else 0 end as play-->
         </if>
         from music_sheet t
         left join sys_user su on t.create_by_ = su.id_
         left join (select count(1) as num,mf.music_sheet_id_
             from music_favorite mf group by mf.music_sheet_id_) t2 on t2.music_sheet_id_ = t.id_
         <if test="param.studentId != null">
-            left join music_sheet_purchase_record mspr
-                on mspr.music_sheet_id_ = t.id_
-                and mspr.student_id_ = #{param.studentId}
-                and order_status_ = 'PAID'
+<!--            left join music_sheet_purchase_record mspr-->
+<!--                on mspr.music_sheet_id_ = t.id_-->
+<!--                and mspr.student_id_ = #{param.studentId}-->
+<!--                and order_status_ = 'PAID'-->
             left join music_favorite mf on t.id_ = mf.music_sheet_id_ and mf.user_id_ = #{param.studentId}
         </if>
         <where>