Skip to content
Snippets Groups Projects
Unverified Commit 7342dc7a authored by Sébastien Gaya's avatar Sébastien Gaya
Browse files

best instead of inherited + qualiopi

parent 60e66fc9
No related branches found
No related tags found
No related merge requests found
...@@ -81,8 +81,8 @@ class Education::Program < ApplicationRecord ...@@ -81,8 +81,8 @@ class Education::Program < ApplicationRecord
"#{name}" "#{name}"
end end
def inherited_description def best_description
description.blank? ? parent&.inherited_description : description description.blank? ? parent&.best_description : description
end end
# Override from WithGithubFiles # Override from WithGithubFiles
......
...@@ -14,48 +14,48 @@ module Education::Program::WithRichTexts ...@@ -14,48 +14,48 @@ module Education::Program::WithRichTexts
has_rich_text :pricing has_rich_text :pricing
has_rich_text :registration has_rich_text :registration
def inherited_accessibility def best_accessibility
accessibility.blank? ? parent&.inherited_accessibility : accessibility accessibility.blank? ? parent&.best_accessibility : accessibility
end end
def inherited_contacts def best_contacts
contacts.blank? ? parent&.inherited_contacts : contacts contacts.blank? ? parent&.best_contacts : contacts
end end
def inherited_duration def best_duration
duration.blank? ? parent&.inherited_duration : duration duration.blank? ? parent&.best_duration : duration
end end
def inherited_evaluation def best_evaluation
evaluation.blank? ? parent&.inherited_evaluation : evaluation evaluation.blank? ? parent&.best_evaluation : evaluation
end end
def inherited_objectives def best_objectives
objectives.blank? ? parent&.inherited_objectives : objectives objectives.blank? ? parent&.best_objectives : objectives
end end
def inherited_opportunities def best_opportunities
opportunities.blank? ? parent&.inherited_opportunities : opportunities opportunities.blank? ? parent&.best_opportunities : opportunities
end end
def inherited_other def best_other
other.blank? ? parent&.inherited_other : other other.blank? ? parent&.best_other : other
end end
def inherited_pedagogy def best_pedagogy
pedagogy.blank? ? parent&.inherited_pedagogy : pedagogy pedagogy.blank? ? parent&.best_pedagogy : pedagogy
end end
def inherited_prerequisites def best_prerequisites
prerequisites.blank? ? parent&.inherited_prerequisites : prerequisites prerequisites.blank? ? parent&.best_prerequisites : prerequisites
end end
def inherited_pricing def best_pricing
pricing.blank? ? parent&.inherited_pricing : pricing pricing.blank? ? parent&.best_pricing : pricing
end end
def inherited_registration def best_registration
registration.blank? ? parent&.inherited_registration : registration registration.blank? ? parent&.best_registration : registration
end end
end end
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<tr> <tr>
<td><%= link_to program, [:admin, program] %></td> <td><%= link_to program, [:admin, program] %></td>
<% @checks.each do |check| %> <% @checks.each do |check| %>
<% valid = !program.send(check).blank? %> <% valid = !program.public_send("best_#{check}").blank? %>
<th> <th>
<% if valid %> <% if valid %>
<span class="fas fa-check text-success"></span> <span class="fas fa-check text-success"></span>
......
...@@ -14,27 +14,27 @@ teachers: ...@@ -14,27 +14,27 @@ teachers:
<% end %> <% end %>
<% end %> <% end %>
accessibility: > accessibility: >
<%= prepare_for_github @program.inherited_accessibility, @program.university %> <%= prepare_for_github @program.best_accessibility, @program.university %>
contacts: > contacts: >
<%= prepare_for_github @program.inherited_contacts, @program.university %> <%= prepare_for_github @program.best_contacts, @program.university %>
description: > description: >
<%= prepare_for_github @program.inherited_description, @program.university %> <%= prepare_for_github @program.best_description, @program.university %>
duration: > duration: >
<%= prepare_for_github @program.inherited_duration, @program.university %> <%= prepare_for_github @program.best_duration, @program.university %>
evaluation: > evaluation: >
<%= prepare_for_github @program.inherited_evaluation, @program.university %> <%= prepare_for_github @program.best_evaluation, @program.university %>
objectives: > objectives: >
<%= prepare_for_github @program.inherited_objectives, @program.university %> <%= prepare_for_github @program.best_objectives, @program.university %>
opportunities: > opportunities: >
<%= prepare_for_github @program.inherited_opportunities, @program.university %> <%= prepare_for_github @program.best_opportunities, @program.university %>
other: > other: >
<%= prepare_for_github @program.inherited_other, @program.university %> <%= prepare_for_github @program.best_other, @program.university %>
pedagogy: > pedagogy: >
<%= prepare_for_github @program.inherited_pedagogy, @program.university %> <%= prepare_for_github @program.best_pedagogy, @program.university %>
prerequisites: > prerequisites: >
<%= prepare_for_github @program.inherited_prerequisites, @program.university %> <%= prepare_for_github @program.best_prerequisites, @program.university %>
pricing: > pricing: >
<%= prepare_for_github @program.inherited_pricing, @program.university %> <%= prepare_for_github @program.best_pricing, @program.university %>
registration: > registration: >
<%= prepare_for_github @program.inherited_registration, @program.university %> <%= prepare_for_github @program.best_registration, @program.university %>
--- ---
...@@ -47,9 +47,25 @@ ...@@ -47,9 +47,25 @@
<div class="card-body"> <div class="card-body">
<% i = 0 %> <% i = 0 %>
<% ['description', 'registration', 'pricing', 'duration', 'contacts', 'accessibility', 'other'].each do |prop| %> <% ['description', 'registration', 'pricing', 'duration', 'contacts', 'accessibility', 'other'].each do |prop| %>
<% next if @program.public_send(prop).blank? %> <%
best_prop_value = @program.public_send("best_#{prop}")
prop_value = @program.public_send(prop)
%>
<% next if best_prop_value.blank? %>
<h3 class="h5 <%= 'mt-4' if i > 0 %>"><%= Education::Program.human_attribute_name(prop) %></h3> <h3 class="h5 <%= 'mt-4' if i > 0 %>"><%= Education::Program.human_attribute_name(prop) %></h3>
<%= @program.public_send prop %> <% if prop_value != best_prop_value %>
<%
if best_prop_value.is_a?(ActionText::RichText)
best_prop_source = best_prop_value.record
else
best_prop_source = @program.ancestors.detect { |ancestor| ancestor.public_send(prop) == best_prop_value }
end
%>
<h4 class="small text-muted">
Par héritage (<%= link_to best_prop_source, [:admin, best_prop_source] %>)
</h4>
<% end %>
<%= best_prop_value %>
<% i += 1 %> <% i += 1 %>
<% end %> <% end %>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment