Sha256: b2fad85b0639adc5be8466f122720bed4cd3051e75fce0086dd4d592d610760f

Contents?: true

Size: 1.9 KB

Versions: 12

Compression:

Stored size: 1.9 KB

Contents

<div class="table-responsive border rounded bg-white">
  <table class="table table-condensed border rounded">
    <thead class="text-muted">
      <tr>
        <th>
          <%= check_box_tag 'select-all' %>
        </th>
        <th><%= Spree.t(:product) %></th>
        <th><%= Spree.t(:sku) %></th>
        <th><%= Spree.t(:pre_tax_amount) %></th>
        <th><%= Spree.t(:exchange_for) %></th>
        <th><%= Spree.t(:resellable) %></th>
      </tr>
    </thead>
    <tbody>
      <%= f.fields_for :return_items, return_items do |item_fields| %>
        <% return_item = item_fields.object %>
        <tr>
          <td class="align-center" class="inventory-unit-checkbox">
            <div style="display:none">
              <%= item_fields.hidden_field :inventory_unit_id %>
              <%= item_fields.hidden_field :return_authorization_id %>
              <%= item_fields.hidden_field :pre_tax_amount %>
            </div>
            <%= item_fields.check_box :returned, {checked: false, class: 'add-item', "data-price" => return_item.pre_tax_amount}, '1', '0' %>
          </td>
          <td>
            <div class="variant-name">
              <%= link_to return_item.inventory_unit.variant.name, spree.edit_admin_product_path(return_item.inventory_unit.variant.product) %>
            </div>
            <div class="variant-options"><%= return_item.inventory_unit.variant.options_text %></div>
          </td>
          <td>
            <%= return_item.inventory_unit.variant.sku %>
          </td>
          <td class="align-center">
            <%= return_item.display_pre_tax_amount %>
          </td>
          <td class="align-center">
            <%= return_item.exchange_variant.try(:exchange_name) %>
          </td>
          <td class="align-center">
            <%= item_fields.check_box :resellable, { checked: return_item.resellable } %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
spree_backend-4.8.4 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.8.3 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.8.2 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.8.1 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.7.2 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.6.2 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.7.1 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.7.0 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.6.1 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.6.0 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.5.1 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.5.0 app/views/spree/admin/customer_returns/_return_item_selection.html.erb