<%= form_for(@shipment) do |f| %> <% if @shipment.errors.any? %>

<%= pluralize(@shipment.errors.count, "error") %> prohibited this shipment from being saved:

<% end %>
<%= f.label :order_line_id %>
<%= f.number_field :order_line_id %>
<%= f.label :shipping_date %>
<%= f.datetime_select :shipping_date %>
<%= f.label :shipping_quantity %>
<%= f.text_field :shipping_quantity %>
<%= f.label :arriving_date %>
<%= f.datetime_select :arriving_date %>
<%= f.label :status %>
<%= f.text_field :status %>
<%= f.submit %>
<% end %>