scinote-web/app/models/repository_stock_consumption_value.rb

9 lines
206 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RepositoryStockConsumptionValue < RepositoryStockValue
def snapshot!
# Snapshots should be done from RepositoryStockValue
railse NotImplementedError
end
end