|
|
|
@@ -85,6 +85,10 @@ class Api::Pm::Issues::UpdateService < ApplicationService |
|
|
|
@updated_issue.root_id = @root_id unless @root_id.nil? #不为 nil的时候更新 |
|
|
|
@updated_issue.root_id = nil if @root_id.try(:zero?) #为 0 的时候设置为 nil |
|
|
|
@updated_issue.time_scale = @time_scale unless @time_scale.nil? |
|
|
|
if @project_id.present? && @updated_issue.project_id.to_i == 0 |
|
|
|
add_project = Project.find_by(id: @project_id) |
|
|
|
@updated_issue.project_issues_index = add_project.get_last_project_issues_index + 1 if add_project.present? |
|
|
|
end |
|
|
|
@updated_issue.project_id = @project_id unless @project_id.nil? |
|
|
|
@updated_issue.updated_on = Time.now |
|
|
|
@updated_issue.changer_id = @current_user.id |
|
|
|
|