Added hour totals to customer job history

This commit is contained in:
2023-01-14 06:38:48 -05:00
parent 6dbf84f401
commit 26433c9020
3 changed files with 7 additions and 2 deletions

View File

@@ -93,6 +93,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