tab/app/helpers/transactions_helper.rb

6 lines
116 B
Ruby
Raw Normal View History

2015-09-08 13:25:54 +00:00
module TransactionsHelper
def amount a
a.zero? ? nil : number_with_precision(a/100.0, precision: 2)
end
2015-09-08 13:25:54 +00:00
end