Sha256: 35e1b6cacadc1a70b06263fc73a6419aefe88746040116c67ef5ca3e7db9b53e

Contents?: true

Size: 614 Bytes

Versions: 4

Compression:

Stored size: 614 Bytes

Contents

<% if @order.paypal_payment %>

<b><%= t("Paypal Transaction") %></b>

  <table class="basic-table">
    <tr>
      <th><%= t("Amount") %></th>
      <th><%= t("Fee") %></th>
      <th><%= t("Status") %></th>
      <th><%= t("Transaction Id") %></th>
      <th><%= t("Received At") %></th>
    </tr>
    <% @order.paypal_payment.txns.each do |t| %>
      <tr>
        <td><%=number_to_currency t.amount %></td>
        <td><%=number_to_currency t.fee %></td>
        <td><%=t.status %></td>
        <td><%=t.transaction_id %></td>
        <td><%=t.received_at %></td>
      </tr>
    <% end %>
  </table>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree_paypal_website_standard-0.8.4 app/views/admin/orders/_pp_standard_txns.html.erb
spree_paypal_website_standard-0.8.3 app/views/admin/orders/_pp_standard_txns.html.erb
spree_paypal_website_standard-0.8.1 app/views/admin/orders/_pp_standard_txns.html.erb
spree_paypal_website_standard-0.8.2 app/views/admin/orders/_pp_standard_txns.html.erb