My code current works just fine, but I can tell that it could be done better. So I figured I would ask for some input.
For a given expense, the user can submit, or un-submit. This creates a record in the expense_approvals table, and sets the approval_status to 1 or 0.
The complexity comes when someone un-submits an expense, and then later resubmits it, since the record already exists, I had to put in the logic to handle it, and a very ugly view to go with it.
My gut tells me there are things I can do in the model, and/or controller to make this much cleaner.
So my model looks like this:
class Expense < ActiveRecord::Base
attr_accessible :amount, :expense_date, :description
has_one :expense_approval
end
and
class ExpenseApproval < ActiveRecord::Base
attr_accessible :approval_date, :approval_status, :approver_id, :expense_id
belongs_to :expense, foreign_key: :expense_id
validates_uniqueness_of :expense_id
end
and the controller
def submit_expense
@expense_list = Expense.all
expense = Expense.find(params[:id])
if expense.expense_approval
approval = ExpenseApproval.find(expense.expense_approval.id)
approval.approval_status = 1
else
approval = ExpenseApproval.new(approval_status: "1", expense_id: expense.id)
end
if approval.save
#flash[:success] = "You have added an submission."
redirect_to expense_approvals_path
else
flash[:error] = "Error"
redirect_to expense_approvals_path
end
end
def un_submit_expense
@expense_list = Expense.all
@expense = ExpenseApproval.find(params[:id])
@expense.approval_status = 0
if @expense.save
#flash[:success] = "You have un submitted."
redirect_to expense_approvals_path
else
flash[:error] = "Unsubmit Error"
redirect_to expense_approvals_path
end
end
and view
<% if expense_item.expense_approval %>
<%#=expense_item.expense_approval.approval_status%>
<% if expense_item.expense_approval.approval_status == 1 %>
<%= link_to raw('<i class="icon-arrow-down icon-white"> </i>'),
un_submit_expense_path(expense_item.expense_approval[:id]),
class: "btn btn-mini btn-warning",
:confirm => "Are you sure you want to un submit this expense?" %>
<% end %>
<% if expense_item.expense_approval.approval_status == 0 %>
<%= link_to raw('<i class="icon-arrow-up icon-white"> </i>'),
submit_expense_path(expense_item[:id]),
class: "btn btn-mini btn-info",
:confirm => "Are you sure you want to submit this expense?" %>
<% end %>
<% else %>
<%= link_to raw('<i class="icon-arrow-up icon-white"> </i>'),
submit_expense_path(expense_item[:id]),
class: "btn btn-mini btn-info",
:confirm => "Are you sure you want to submit this expense?" %>
<% end %>