28 lines
764 B
Plaintext
28 lines
764 B
Plaintext
<%= simple_form_for(@transactions_sale) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.association :cashier %>
|
|
<%= f.input :cashier_name %>
|
|
<%= f.input :requested_by %>
|
|
<%= f.input :requested_at %>
|
|
<%= f.input :receipt_no %>
|
|
<%= f.input :receipt_date %>
|
|
<%= f.association :customer %>
|
|
<%= f.input :payment_status %>
|
|
<%= f.input :sale_status %>
|
|
<%= f.input :total_amount %>
|
|
<%= f.input :total_discount %>
|
|
<%= f.input :total_tax %>
|
|
<%= f.input :tax_type %>
|
|
<%= f.input :grand_total %>
|
|
<%= f.input :rounding_adjustment %>
|
|
<%= f.input :amount_received %>
|
|
<%= f.input :amount_changed %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|