class Planik::Lohnausweis::TimeDeziFormatter

Public Class Methods

new() click to toggle source
Calls superclass method Planik::Lohnausweis::Formatter::new
# File lib/lohnausweis/arbeitslistespalten.rb, line 42
def initialize
  super(true)
end

Public Instance Methods

format(time) click to toggle source
Calls superclass method
# File lib/lohnausweis/arbeitslistespalten.rb, line 46
def format time
  #time = nil if time == 0
  time ? super('%.2f', time) : nil
end