diff --git a/app/decorators/tiding_decorator.rb b/app/decorators/tiding_decorator.rb
index 30a325cd3..d1f6f08e6 100644
--- a/app/decorators/tiding_decorator.rb
+++ b/app/decorators/tiding_decorator.rb
@@ -47,13 +47,13 @@ module TidingDecorator
# ================ 各种类消息内容方法 ================
def apply_user_authentication_content
- return if trigger_user_id.zero?
+ t_user = trigger_user || User.find(1)
if tiding_type == 'Apply'
str1, str2 = if container.auth_type == 1
- [trigger_user.show_real_name, trigger_user.ID_number]
+ [t_user.show_real_name, t_user.ID_number]
elsif container.auth_type == 2
- ue = trigger_user.user_extension
+ ue = t_user.user_extension
[[ue.school&.name, ue.department&.name].join('_'), ue.identity_text]
end
I18n.t(locale_format(tiding_type, container.auth_type)) % [str1, str2]
@@ -97,7 +97,7 @@ module TidingDecorator
elsif status == 2
I18n.t(locale_format(tiding_type, "#{status}_#{extra.nil?}"), reason: extra) % [name, second_name]
else
- I18n.t(locale_format(tiding_type, status)) % [name, second_name]
+ I18n.t(locale_format(tiding_type, status), reason: extra) % [name, second_name]
end
end
@@ -106,9 +106,9 @@ module TidingDecorator
if tiding_type == 'Apply'
I18n.t(locale_format(tiding_type)) % name
elsif status == 2
- I18n.t(locale_format(tiding_type, "#{status}_#{extra.nil?}"), reason: extra) % name
+ I18n.t(locale_format(tiding_type, "#{status}_#{extra.nil?}"), name: name, reason: extra)
else
- I18n.t(locale_format(tiding_type, status)) % name
+ I18n.t(locale_format(tiding_type, status), name: name, reason: extra)
end
end
diff --git a/app/models/apply_user_authentication.rb b/app/models/apply_user_authentication.rb
index c7fb5019e..d467eb850 100644
--- a/app/models/apply_user_authentication.rb
+++ b/app/models/apply_user_authentication.rb
@@ -3,8 +3,18 @@
class ApplyUserAuthentication < ApplicationRecord
belongs_to :user
+ has_many :tidings, :as => :container, :dependent => :destroy
+
scope :real_name_auth, -> { where(auth_type: 1) }
scope :professional_auth, -> { where(auth_type: 2) }
scope :processing, -> { where(status: 0) }
scope :passed, -> { where(status: 1) }
+
+ after_create :send_tiding
+
+ private
+
+ def send_tiding
+ self.tidings << Tiding.new(:user_id => '1', :status=> 0, :trigger_user_id => user_id, :belong_container_id => 1, :belong_container_type =>'User', :tiding_type => "Apply")
+ end
end
diff --git a/config/locales/tidings/zh-CN.yml b/config/locales/tidings/zh-CN.yml
index d6b44b26c..3fbfb88fa 100644
--- a/config/locales/tidings/zh-CN.yml
+++ b/config/locales/tidings/zh-CN.yml
@@ -38,8 +38,8 @@
Apply_end: "申请添加单位:%s"
System:
"1_end": "你提交的添加单位申请:%{name},审核已通过"
- "2_reason_end": "你提交的添加单位申请:%{name},审核未通过
原因:%{reason}"
- "2_no_reason_end": "你提交的添加单位申请:%{name},审核未通过"
+ "2_false_end": "你提交的添加单位申请:%{name},审核未通过
原因:%{reason}"
+ "2_true_end": "你提交的添加单位申请:%{name},审核未通过"
"3_end": "你提交的添加单位申请:%{name},已被更改为:%{reason}"
ApplyAction:
ApplyShixun:
diff --git a/public/react/src/modules/message/js/MessagSub.js b/public/react/src/modules/message/js/MessagSub.js
index bbbb7caa3..ea280af75 100644
--- a/public/react/src/modules/message/js/MessagSub.js
+++ b/public/react/src/modules/message/js/MessagSub.js
@@ -212,15 +212,15 @@ class MessagSub extends Component{
return '';
case "HomeworkCommon" :
//学生作业页 homework = parent_container_id
- if(item.homework_type===1){
+ if(item.homework_type==="normal"){
//普通作业
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===3){
+ if(item.homework_type==="group"){
//分组作业
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===4){
+ if(item.homework_type==="practice"){
//实训作业
return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
}
@@ -229,15 +229,15 @@ class MessagSub extends Component{
return window.open(`/courses/${item.belong_container_id}/graduation_topics/${item.parent_container_id}/detail`)
case "StudentWorksScore" :
//学生作业页
- if(item.homework_type===1){
+ if(item.homework_type==="normal"){
//普通作业
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===3){
+ if(item.homework_type==="group"){
//分组作业
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===4){
+ if(item.homework_type==="practice"){
//实训作业
return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
}
@@ -308,100 +308,103 @@ class MessagSub extends Component{
switch (item.parent_container_type) {
case "AnonymousCommentFail" :
// 课堂-作业列表 homework = container_id
- if(item.homework_type===1){
+ if(item.homework_type==="normal"){
//普通作业
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===3){
+ if(item.homework_type==="group"){
//分组作业
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===4){
+ if(item.homework_type==="practice"){
//实训作业
return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
}
case "HomeworkPublish" :
- if(item.homework_type===1){
+ if(item.homework_type==="normal"){
//普通作业
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===3){
+ if(item.homework_type==="group"){
//分组作业
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===4){
+ if(item.homework_type==="practice"){
//实训作业
return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
}
case "AnonymousAppeal" :
- if(item.homework_type===1){
+ if(item.homework_type==="normal"){
//普通作业
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===3){
+ if(item.homework_type==="group"){
//分组作业
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===4){
+ if(item.homework_type==="practice"){
//实训作业
return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
}
default :
// 课堂-作业列表 homework = container_id
- if(item.homework_type===1){
+ if(item.homework_type==="normal"){
//普通作业
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===3){
+ if(item.homework_type==="group"){
//分组作业
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
}
- if(item.homework_type===4){
+ if(item.homework_type==="practice"){
//实训作业
return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
}
}
case "StudentWork" :
//课堂-作业 :id = container_id
- if(item.homework_type===1){
+ if(item.homework_type==="normal"){
//普通作业
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.container_id}/list`)
}
- if(item.homework_type===3){
+ if(item.homework_type==="group"){
//分组作业
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.container_id}/list`)
}
- if(item.homework_type===4){
+ if(item.homework_type==="practice"){
//实训作业
return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.container_id}/list?tab=0`)
}
case "StudentWorksScore" :
//课堂-作业 :id = parent_container_id
- if(item.homework_type===1){
- //普通作业
- return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
- }
- if(item.homework_type===3){
- //分组作业
- return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
- }
- if(item.homework_type===4){
- //实训作业
- return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
- }
+ // if(item.homework_type==="normal"){
+ // //普通作业
+ // return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
+ // }
+ // if(item.homework_type==="group"){
+ // //分组作业
+ // return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
+ // }
+ // if(item.homework_type==="practice"){
+ // //实训作业
+ // return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
+ // }
+ return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.trigger_user.id}/${item.parent_container_id}/appraise`);
+
case "StudentWorksScoresAppeal" :
- if(item.homework_type===1){
- //普通作业
- return window.open(`courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
- }
- if(item.homework_type===3){
- //分组作业
- return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
- }
- if(item.homework_type===4){
- //实训作业
- return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
- }
+ // if(item.homework_type==="normal"){
+ // //普通作业
+ // return window.open(`courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/list`)
+ // }
+ // if(item.homework_type==="group"){
+ // //分组作业
+ // return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/list`)
+ // }
+ // if(item.homework_type==="practice"){
+ // //实训作业
+ // return window.open(`/courses/${item.belong_container_id}/shixun_homeworks/${item.parent_container_id}/list?tab=0`)
+ // }
+ return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.trigger_user.id}/${item.parent_container_id}/appraise`);
case "ChallengeWorkScore" :
return '';
case "SendMessage" :
@@ -412,7 +415,7 @@ class MessagSub extends Component{
return window.open(`/projects/${item.parent_container_id}/issues?remote=true`)
case "Issue" :
//项目Issue页 :id = container_id
- return window.open(`/projects/${item.container_id}/issues?remote=true`)
+ return window.open(`/issues/${item.container_id}`)
case "PullRequest" :
// 项目pull request页 :id = parent_container_id
return window.open(`/projects/${item.parent_container_id}/pull_requests`)
@@ -441,6 +444,8 @@ class MessagSub extends Component{
return window.open(`/crowdsourcing/${item.container_id}`)
// }
}
+ case "Discuss":
+ return window.open(`/shixuns/${item.identifier}/shixun_discuss`);
default :
return window.open("/")
}
@@ -462,7 +467,7 @@ class MessagSub extends Component{