<%= render partial: 'shared/header', locals: { links: [["在庫一覧", goods_show_path(@id1, @id2, @id3,1)], ["在庫情報", '#']]} %>

<%= @good.name.truncate(30) %> 価格設定


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

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

<% end %>


<%= f.fields_for :good_histories, @new_history do |history_field| %>

更新日

<%= history_field.date_field :date %>

仕入れ価格

<%= history_field.text_field :memo2 %>

販売価格

<%= history_field.text_field :memo3 %>

詳細

<%= history_field.text_field :memo %>
<% end %>
<%= f.submit "更新", class: "w8-button l-blue small"%>
<% end %>