trabajo-afectivo/lib/sequencer/unit/import/common/model/statistics/total.rb
2022-01-01 14:38:12 +01:00

31 lines
761 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Sequencer
class Unit
module Import
module Common
module Model
module Statistics
class Total < Sequencer::Unit::Base
include ::Sequencer::Unit::Import::Common::Model::Statistics::Mixin::EmptyDiff
def process
state.provide(:statistics_diff) do
diff.merge(
total: total
)
end
end
private
def total
raise "Missing implementation if total method for class #{self.class.name}"
end
end
end
end
end
end
end
end