<%= select_tag "p_stage", options_for_select(EducodeSales::Project.p_stages.keys), { 'lay-filter': 'p_stage', include_blank: true } %>
<%= select_tag "p_state", options_for_select([["正常", 0], ["延期", 1]]), { include_blank: true } %>
<%= select_tag "p_staff_id", options_for_select(EducodeSales::Staff.where(id: EducodeSales::Project.all.pluck(:p_staff_id)).map { |d| [d.user&.real_name, d.id] }, @project&.p_special), { 'lay-filter': 'p_special', include_blank: true } %>
<%= select_tag "p_sale_staff_id", options_for_select(EducodeSales::Staff.where(id: EducodeSales::Project.all.pluck(:p_sale_staff_id)).map { |d| [d.user&.real_name, d.id] }, @project&.p_special), { 'lay-filter': 'p_special', include_blank: true } %>
<%= select_tag "p_difficulty", options_for_select(EducodeSales::Project.p_difficulties.keys), { 'lay-filter': 'p_difficulty', include_blank: true } %>
<%= select_tag "p_special", options_for_select(EducodeSales::Project.p_specials.keys), { 'lay-filter': 'p_special', include_blank: true } %>
<%= select_tag "o_business_deployment", options_for_select(EducodeSales::FollowUp::BUSINESS_DEPLOYMENT[1..-1]), { include_blank: true } %>