Sha256: 327cb96d6e5356e811c707e2f92a22250a8cdd762699252751204950eca9c0bc
Contents?: true
Size: 1.48 KB
Versions: 2
Compression:
Stored size: 1.48 KB
Contents
<% if @order.inventory_units.any? &:shipped? %> <div class="toolbar" data-hook="toolbar"> <ul class="actions"> <li> <%= button_link_to t("new_return_authorization"), new_admin_order_return_authorization_url(@order), :icon => 'add' %> </li> </ul> <br class='clear' /> </div> <% end %> <%= render :partial => 'admin/shared/order_tabs', :locals => {:current => "Return Authorizations"} %> <table class="index"> <tr data-hook="rma_header"> <th><%= t("rma_number") %></th> <th><%= t("status") %></th> <th><%= t("amount") %></th> <th><%= "#{t('spree.date')}/#{t('spree.time')}" %></th> <th></th> </tr> <% @return_authorizations.each do |return_authorization| %> <tr id="<%= dom_id(return_authorization) %>" data-hook="rma_row"> <td><%= return_authorization.number %></td> <td><%= t(return_authorization.state.downcase) %></td> <td><%= number_to_currency(return_authorization.amount) %></td> <td><%= return_authorization.created_at.to_s(:date_time24) %></td> <td> <%= link_to_edit return_authorization %> <% unless return_authorization.received? %> <%= link_to_delete return_authorization %> <% end %> </td> </tr> <% end %> <% unless @order.inventory_units.any? &:shipped? %> <tr data-hook="rma_cannont_create"> <td colspan="5"><%= t("cannot_create_returns") %></td> </tr> <% end %> </table> <%= button_link_to t('continue'), admin_orders_url %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_core-0.70.0.rc2 | app/views/admin/return_authorizations/index.html.erb |
spree_core-0.70.RC1 | app/views/admin/return_authorizations/index.html.erb |