<%= render partial: 'shared/header', locals: { links: [["ライセンス管理", license_path], ["SaxaUTM一覧", show_list_ss3000_path(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 %>


<% num = 0 %> <%= f.fields_for :good_histories, @new_history do |history_field| %> <% next if num > 0 %>

データ更新日

<%= history_field.date_field :date %>

契約開始日

<%= history_field.date_field :date2 %>

契約終了日

<%= history_field.date_field :date3 %>

顧客名

<%= history_field.select :memo4, @customer,{include_blank: true}, class: "mySelect2", style: "width: 90%" %>

機種名

<%= history_field.text_field :memo7 %>

詳細

<%= history_field.text_field :memo %>

レポートサイト

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