Procházet zdrojové kódy

sop群发缺失chat_id问题,刷单小程序展示问题处理

yjwang před 2 dny
rodič
revize
7db06094d8

+ 3 - 2
fs-service/src/main/resources/mapper/course/FsCourseLinkMapper.xml

@@ -135,7 +135,7 @@
         link, real_link, create_time, update_time,
         company_id, company_user_id, qw_user_id, video_id,
         corp_id, course_id, qw_external_id, link_type,
-        is_room
+        is_room,chat_id
         )
         VALUES
         <foreach collection="courseLinks" item="item" separator=",">
@@ -152,7 +152,8 @@
             #{item.courseId,jdbcType=BIGINT},
             #{item.qwExternalId,jdbcType=BIGINT},
             #{item.linkType,jdbcType=BIGINT},
-            #{item.isRoom,jdbcType=VARCHAR}
+            #{item.isRoom,jdbcType=VARCHAR},
+            #{item.chatId,jdbcType=VARCHAR}
             )
         </foreach>
     </insert>

+ 1 - 1
fs-user-app/src/main/java/com/fs/app/controller/store/ProductScrmController.java

@@ -382,7 +382,7 @@ public class ProductScrmController extends AppBaseController {
     //分类数据拆分
     public List<FsStoreProductCategoryScrm> dataSplit(Integer isDrug,List<FsStoreProductCategoryScrm> list){
         if(isDrug != null && isDrug == 1){
-            return list.stream().filter(item -> !item.getCateName().equals("活动专区") && !item.getCateName().equals("中药饮")&& !item.getCateName().equals("保健食品")).collect(Collectors.toList());
+            return list.stream().filter(item -> !item.getCateName().equals("活动专区") && !item.getCateName().equals("中药饮")&& !item.getCateName().equals("保健食品")).collect(Collectors.toList());
         }
         return list;
     }