2025-01-23 21:34:23 +00:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
|
|
|
|
2024-07-11 20:06:48 +02:00
|
|
|
class Numeric
|
|
|
|
def to_currency
|
|
|
|
Money.from_amount(self, "EUR").format
|
|
|
|
end
|
2024-08-01 21:14:28 +02:00
|
|
|
end
|
|
|
|
|
2024-11-10 17:30:01 +01:00
|
|
|
class Set
|
2024-08-01 21:14:28 +02:00
|
|
|
def to_table
|
|
|
|
Tables::Table.new(self)
|
|
|
|
end
|
2024-07-11 20:06:48 +02:00
|
|
|
end
|