83 lines
2.9 KiB
Plaintext
83 lines
2.9 KiB
Plaintext
<%= error_messages_for *@targets %>
|
|
|
|
<div class="box">
|
|
<div id='goal-form' class="tabular">
|
|
<% if goal_f.object.persisted? %>
|
|
<p><%= render partial: 'goals/show_form', locals: {goal_f: goal_f} %></p>
|
|
<p><%= goal_f.date_field :effective_from, value: @effective_from,
|
|
disabled: !goal_f.object.is_binding? %></p>
|
|
<% else %>
|
|
<%= render partial: 'goals/form' %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<hr style="width: 95%;">
|
|
|
|
<div class="tabular">
|
|
<p class="target">
|
|
<%= goal_f.fields_for :targets, @targets, child_index: '' do |target_f| %>
|
|
<%= target_f.hidden_field :_destroy %>
|
|
<em class="info"><%= t ".choose_quantity" %></em>
|
|
<%= target_f.select :quantity_id, quantity_options,
|
|
{include_blank: true, required: true, label: :field_target},
|
|
onchange: "showQuantityPath(event);" %>
|
|
|
|
<%= target_f.fields_for :thresholds do |threshold_f| %>
|
|
<%= render partial: 'thresholds/form', locals: {threshold_f: threshold_f} %>
|
|
<% end %>
|
|
<% last_quantity = target_f.object.thresholds.last.quantity %>
|
|
<% unless last_quantity.leaf? %>
|
|
<%= target_f.fields_for 'thresholds_attributes', Threshold.new do |threshold_f| %>
|
|
<%= render partial: 'thresholds/form',
|
|
locals: {threshold_f: threshold_f, parent: last_quantity} %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= link_to t(".button_delete_target"), '#', class: 'icon icon-del',
|
|
style: (@targets.many? ? "" : "display:none"),
|
|
onclick: "deleteTarget(); return false;" %>
|
|
<% end %>
|
|
</p>
|
|
<p>
|
|
<%= link_to t(".button_new_target"), '#', class: 'icon icon-add',
|
|
onclick: 'newTarget(); return false;' %>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<%= javascript_tag do %>
|
|
function showQuantityPath(event) {
|
|
$(event.target).prevAll('em').text($('option:selected', event.target)
|
|
.attr('data-path'));
|
|
}
|
|
$(document).ajaxComplete(function() {
|
|
$('p.target select:first-child[id$=__quantity_id]').trigger(jQuery.Event('change'));
|
|
})
|
|
|
|
function newTarget() {
|
|
var form = $(event.target).closest('form');
|
|
var row = form.find('p.target:visible:last');
|
|
var new_row = row.clone().insertAfter(row);
|
|
new_row.find('em').text('<%= t ".choose_quantity" %>');
|
|
new_row.find('input, select').val('');
|
|
new_row.find('select[id$=__unit_id]').val(row.find('select[id$=__unit_id]').val());
|
|
new_row.find('label:first').hide();
|
|
form.find('p.target:visible a.icon-del').show();
|
|
}
|
|
|
|
function deleteTarget() {
|
|
var form = $(event.target).closest('form');
|
|
var row = $(event.target).closest('p.target');
|
|
if (row.find('input[id$=__id]').val()) {
|
|
row.hide();
|
|
row.find('input[id$=__destroy]').val('1');
|
|
} else {
|
|
row.remove();
|
|
}
|
|
form.find('p.target:visible:first label:first').show();
|
|
if (form.find('p.target:visible').length <= 1) {
|
|
form.find('p.target:visible a.icon-del').hide();
|
|
}
|
|
}
|
|
<% end %>
|