mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
16 lines
280 B
Ruby
16 lines
280 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class DataPresenter
|
|
class Base
|
|
include ::ActionView::Helpers::NumberHelper
|
|
attr_reader :data
|
|
|
|
def initialize(data)
|
|
@data = data
|
|
end
|
|
extend Invoice::DataPresenterAttributes
|
|
end
|
|
end
|
|
end
|