Added hour totals to customer job history

This commit is contained in:
2023-01-14 06:20:41 -05:00
parent 1fae647381
commit a531ef4f87
3 changed files with 7 additions and 2 deletions

View File

@@ -86,6 +86,10 @@ class CustomersController < ApplicationController
@billing_address = address_to_s(@customer.billing_address)
@shipping_address = address_to_s(@customer.shipping_address)
@closed_issues = (@issues - @issues.open)
@hours = 0
@closed_hours = 0
@issues.open.each { |i| @hours+= i.total_spent_hours }
@closed_issues.each { |i| @closed_hours+= i.total_spent_hours }
rescue
render_404
end