В Rails форма не правильно устанавливает проверенные поля для строк, как проверено, при отправке, в параметрах контроллера - PullRequest
4 голосов
/ 27 марта 2020

Я бился над этим немного ... У меня есть форма, и я использую fields_for для PurchaseOrderLineItem ассоциаций PurchaseOrder

<%= form_with model: [@quote, @purchase_order], local: true do |form| %>
  <% if purchase_order.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(purchase_order.errors.count, "error") %> prohibited this purchase_order from being saved:</h2>

      <ul>
        <% purchase_order.errors.full_messages.each do |message| %>
          <li><%= message %></li>
        <% end %>
      </ul>
    </div>
  <% end %>

  <div class="text-center text-xl text-bold">
    <%= form.label :number, 'PO Number' %>
    <%= form.text_field :number, class: 'text-field-input' %>
  </div>
  <table>
    <tr>
      <th class='px-4 py-2'>Include in PO</th>
      <th class='px-4 py-2'>Part No.</th>
      <th class='px-4 py-2'>Description</th>
      <th class='px-4 py-2'>Condition</th>
      <th class='px-4 py-2'>Total Quantity Requested</th>
      <th class='px-4 py-2'>Quantity Awarded (So Far)</th>
      <th class='px-4 py-2'>Quantity To Award</th>
      <th class='px-4 py-2'>Quantity Quoted</th>
      <th class='px-4 py-2'>Unit Price</th>
      <th class='px-4 py-2'>Total Price</th>
    </tr>
    <% @quote_line_items.each do |line_item| %>
      <%= form.fields_for 'purchase_order_line_items[]', line_item do |cf| %>
        <%= cf.hidden_field :quote_line_item_id, value: line_item.id %>
        <%= cf.hidden_field :id, value: line_item.po_line_item&.id %>
        <tr class='border px-4 py-2 h-12' data-line-item-id=<%= line_item.id %>>
          <td class='border px-4 py-2'><%= cf.check_box(:being_awarded, {class: 'quote-award-checkbox', checked: !!line_item.po_line_item}) %></td>
          <td class='border px-4 py-2'><%= line_item.part.number %></td>
          <td class='border px-4 py-2'><%= line_item.part.description %></td>
          <td class='border px-4 py-2'>
            <%= select_tag(
              :part_condition,
              options_for_select(part_conditions_for_select_options,
                selected: part_conditions_for_select_options[line_item.part_condition]
              )
            ) %>
          </td>
          <td class='border px-4 py-2'><%= line_item.rfq_line_item.quantity %></td>
          <td class='border px-4 py-2'><%= line_item.rfq_line_item.quantity_fulfilled %></td>
          <td class='border px-4 py-2'><%=
            cf.number_field(
              :quantity,
              {
                  value: line_item.po_line_item&.quantity || 0,
                  min: 0, max: line_item.max_allowed_quantity,
                  class: 'awarded-quantity-input number-field-input'
              })
          %></td>
          <td class='border px-4 py-2 quantity'><%= line_item.quantity %></td>
          <td class='border px-4 py-2'><%=
            cf.number_field(
              :unit_price,
              {
                  value: line_item.po_line_item&.unit_price || line_item.unit_price,
                  step: 0.01,
                  class: 'number-field-input unit-price'
              }
            )
          %></td>
          <td class='border px-4 py-2 total-price'><%= line_item.total_price %></td>
        </tr>
      <% end %>
    <% end %>
  </table>

  <div class="actions text-center m-4">
    <%= form.submit 'Submit', class: 'big-btn px-8 py-4' %>
  </div>
<% end %>

Проблема здесь заключается в том, что флажки дочерней формы не отправляют ожидаемые значения в контроллер

Атрибут being_awarded, в основном, отображается как «непроверенный», а иногда [случайным образом] помечает некоторые из being_awarded флажки как «проверено»

being_awarded определяется как attr_accessor из PurchaseOrderLineItem

1 Ответ

1 голос
/ 31 марта 2020

Это маленькие ошибки, которые сводят нас с ума ...

Я запустил l oop вне дочерней формы, таким образом вызывая fields_for для каждого line_item, и это просто вызывало ошибки c поведение

...