Sha256: 1fe8ffa3e8294b3275b7e0e302e1fe2f21ed2319a27419f0c46df5442bb81f78

Contents?: true

Size: 660 Bytes

Versions: 1

Compression:

Stored size: 660 Bytes

Contents

<tr id="unchecked_<%= order.id %>">
  <td>
    <%= form_with url: admin_payment_payment_orders_path(@payment), id: "new_payment_#{order.id}" do |f| %>
    <% end %>
  </td>
  <td>
    <%= link_to order.uuid, admin_order_path(order.id) %>
  </td>
  <td><%= order.amount %></td>
  <td>
    <%= hidden_field_tag 'payment_order[order_id]', order.id, form: "new_payment_#{order.id}" %>
    <%= number_field_tag 'payment_order[check_amount]', order.unreceived_amount, class: 'input', step: 0.01, form: "new_payment_#{order.id}" %>
  </td>
  <td></td>
  <td>
    <%= submit_tag '核销', class: 'ui mini grey button', form: "new_payment_#{order.id}" %>
  </td>
</tr>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails_trade-0.0.3 app/views/trade/admin/payment_orders/_orders.html.erb