@@ -63,13 +63,17 @@ def printable_values
6363 printable [ :gross_salary ] = @gross_salary . nil? ? '' : Field . float_to_string ( @gross_salary )
6464 printable [ :gross_salary_ytd ] = @gross_salary_ytd . nil? ? '' : Field . float_to_string ( @gross_salary_ytd )
6565 printable [ :income_tax_rate ] = @income_tax_rate . nil? ? '' : Field . float_to_string ( @income_tax_rate )
66- printable [ :income_tax_withheld ] = @income_tax_withheld . nil? ? '' : Field . float_to_string ( @income_tax_withheld )
66+ printable [ :income_tax_withheld ] =
67+ @income_tax_withheld . nil? ? '' : Field . float_to_string ( @income_tax_withheld )
6768 printable [ :net_paid ] = @net_paid . nil? ? '' : Field . float_to_string ( @net_paid )
68- printable [ :net_paid_before_tax ] = @net_paid_before_tax . nil? ? '' : Field . float_to_string ( @net_paid_before_tax )
69+ printable [ :net_paid_before_tax ] =
70+ @net_paid_before_tax . nil? ? '' : Field . float_to_string ( @net_paid_before_tax )
6971 printable [ :net_taxable ] = @net_taxable . nil? ? '' : Field . float_to_string ( @net_taxable )
7072 printable [ :net_taxable_ytd ] = @net_taxable_ytd . nil? ? '' : Field . float_to_string ( @net_taxable_ytd )
71- printable [ :total_cost_employer ] = @total_cost_employer . nil? ? '' : Field . float_to_string ( @total_cost_employer )
72- printable [ :total_taxes_and_deductions ] = @total_taxes_and_deductions . nil? ? '' : Field . float_to_string ( @total_taxes_and_deductions )
73+ printable [ :total_cost_employer ] =
74+ @total_cost_employer . nil? ? '' : Field . float_to_string ( @total_cost_employer )
75+ printable [ :total_taxes_and_deductions ] =
76+ @total_taxes_and_deductions . nil? ? '' : Field . float_to_string ( @total_taxes_and_deductions )
7377 printable
7478 end
7579
@@ -79,13 +83,17 @@ def table_printable_values
7983 printable [ :gross_salary ] = @gross_salary . nil? ? '' : Field . float_to_string ( @gross_salary )
8084 printable [ :gross_salary_ytd ] = @gross_salary_ytd . nil? ? '' : Field . float_to_string ( @gross_salary_ytd )
8185 printable [ :income_tax_rate ] = @income_tax_rate . nil? ? '' : Field . float_to_string ( @income_tax_rate )
82- printable [ :income_tax_withheld ] = @income_tax_withheld . nil? ? '' : Field . float_to_string ( @income_tax_withheld )
86+ printable [ :income_tax_withheld ] =
87+ @income_tax_withheld . nil? ? '' : Field . float_to_string ( @income_tax_withheld )
8388 printable [ :net_paid ] = @net_paid . nil? ? '' : Field . float_to_string ( @net_paid )
84- printable [ :net_paid_before_tax ] = @net_paid_before_tax . nil? ? '' : Field . float_to_string ( @net_paid_before_tax )
89+ printable [ :net_paid_before_tax ] =
90+ @net_paid_before_tax . nil? ? '' : Field . float_to_string ( @net_paid_before_tax )
8591 printable [ :net_taxable ] = @net_taxable . nil? ? '' : Field . float_to_string ( @net_taxable )
8692 printable [ :net_taxable_ytd ] = @net_taxable_ytd . nil? ? '' : Field . float_to_string ( @net_taxable_ytd )
87- printable [ :total_cost_employer ] = @total_cost_employer . nil? ? '' : Field . float_to_string ( @total_cost_employer )
88- printable [ :total_taxes_and_deductions ] = @total_taxes_and_deductions . nil? ? '' : Field . float_to_string ( @total_taxes_and_deductions )
93+ printable [ :total_cost_employer ] =
94+ @total_cost_employer . nil? ? '' : Field . float_to_string ( @total_cost_employer )
95+ printable [ :total_taxes_and_deductions ] =
96+ @total_taxes_and_deductions . nil? ? '' : Field . float_to_string ( @total_taxes_and_deductions )
8997 printable
9098 end
9199
0 commit comments