Sha256: d79f28c3d942a58caa83912513ca9e26208b68a885e1cea5225d9f9c76656f9c

Contents?: true

Size: 1.44 KB

Versions: 8

Compression:

Stored size: 1.44 KB

Contents

<table class="index return-items-table">
  <thead>
    <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>
    </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"><%= return_item.inventory_unit.variant.name %></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>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree_backend-2.4.10 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-2.4.9 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-2.4.8 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-2.4.7 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-2.4.6 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-2.4.5 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-2.4.4 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-2.4.3 app/views/spree/admin/customer_returns/_return_item_selection.html.erb