Sha256: 716df5f0e2743e1542478b5598007974e4045849e27f66508fd3646b425d6ec4

Contents?: true

Size: 1.63 KB

Versions: 133

Compression:

Stored size: 1.63 KB

Contents

<table class="table table-condensed table-bordered">
  <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>
      <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"><%= 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>
        <td class="align-center">
          <%= item_fields.check_box :resellable, { checked: return_item.resellable } %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

133 entries across 133 versions & 2 rubygems

Version Path
goca-spree-backend-3.1.14.rails.5.0 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.0.9 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.1.15 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.1.14 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.0.8 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-3.7.14.1 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.1.13.1 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.0.7.1 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.0.7 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-3.7.14 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.1.13 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.0.6 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-3.7.13 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.0.5 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.1.12 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-3.7.12 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.0.4 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-3.7.11 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.1.11 app/views/spree/admin/customer_returns/_return_item_selection.html.erb
spree_backend-4.1.10 app/views/spree/admin/customer_returns/_return_item_selection.html.erb