mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-15 23:57:48 +00:00
7 lines
227 B
Ruby
7 lines
227 B
Ruby
class VariantOverrideSet < ModelSet
|
|
def initialize(attributes={})
|
|
super(VariantOverride, VariantOverride.all, attributes, nil,
|
|
proc { |attrs| attrs['price'].blank? && attrs['count_on_hand'].blank? } )
|
|
end
|
|
end
|