class Fbe::Award::Bill

def points

Returns:
  • (Integer) - The sum of all point values, rounded to an integer
def points
  @lines.sum { |l| l[:v] }.to_f.round.to_i
end