fix conflit

This commit is contained in:
yamin
2017-08-21 16:35:15 +06:30
20 changed files with 312 additions and 142 deletions

View File

@@ -0,0 +1,14 @@
<%= simple_form_for(@commissioner) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :name %>
<%= f.collection_select :emp_id, Employee.all.order('name asc'), :emp_id, :name, {prompt: "Select an Employee"}, {class: "form-control"} %>
<%= f.input :commission_type %>
<label><%= f.check_box :is_active %> Active </label>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>