update 企业端可报名会议列表回显isWasic
This commit is contained in:
+7
-1
@@ -29,11 +29,13 @@
|
||||
<result column="director_phone" property="directorPhone"/>
|
||||
<result column="hotel_name" property="hotelName"/>
|
||||
<result column="hotel_address" property="hotelAddress"/>
|
||||
<result column="hotel_contacts" property="hotelContacts"/>
|
||||
<result column="remark" property="remark"/>
|
||||
<result column="pay_mode" property="payMode"/>
|
||||
<result column="meetingStatus" property="meetingStatus"/>
|
||||
<result column="register_check_result" property="registerCheckResult"/>
|
||||
<result column="is_wasic" property="isWasic"/>
|
||||
<result column="link_topics" property="linkTopics"/>
|
||||
|
||||
</resultMap>
|
||||
|
||||
<!-- 将原有id改为会议id, 新增situationId 为成员id -->
|
||||
@@ -75,6 +77,8 @@
|
||||
notice,
|
||||
pm.id,
|
||||
pm.create_time as create_time,
|
||||
pm.is_wasic,
|
||||
pm.link_topics,
|
||||
GROUP_CONCAT(pms.company_contact_id) company_contact_ids,
|
||||
(case
|
||||
when start_time > #{now} then 2
|
||||
@@ -131,6 +135,8 @@
|
||||
pms.id as situationId,
|
||||
pm.id,
|
||||
pm.create_time as create_time,
|
||||
pm.is_wasic,
|
||||
pm.link_topics,
|
||||
(case
|
||||
when start_time > #{now} then 2
|
||||
when start_time <![CDATA[<=]]> #{now}
|
||||
|
||||
+3
@@ -1171,6 +1171,9 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl<PayMeetingSituat
|
||||
Integer isWasic = payMeeting.getIsWasic();
|
||||
if (PayProjectCommon.YES.equals(isWasic)){
|
||||
String linkTopics = payMeeting.getLinkTopics();
|
||||
if (StringUtils.isBlank(linkTopics)) {
|
||||
throw new JeroBootException("课题名称选择错误");
|
||||
}
|
||||
List<String> linkTopicList = Arrays.asList(linkTopics.split(","));
|
||||
//先判断是否有免费专题
|
||||
String choiceTopic = payMeetingSituation.getChoiceTopic();
|
||||
|
||||
Reference in New Issue
Block a user