Module: SolidusActsAsTenant::VariantDecorator

Defined in:
app/decorators/solidus_acts_as_tenant/variant_decorator.rb

Overview

rubocop:disable Style/ClassAndModuleChildren

Instance Method Summary collapse

Instance Method Details

#product_shipping_categoryObject



12
13
14
15
16
# File 'app/decorators/solidus_acts_as_tenant/variant_decorator.rb', line 12

def product_shipping_category
  return if product.nil?

  super
end

#product_shipping_category_idObject

Fixes errors related to validations added through acts_as_tenant



6
7
8
9
10
# File 'app/decorators/solidus_acts_as_tenant/variant_decorator.rb', line 6

def product_shipping_category_id
  return if product.nil?

  super
end

#product_tax_categoryObject



24
25
26
27
28
# File 'app/decorators/solidus_acts_as_tenant/variant_decorator.rb', line 24

def product_tax_category
  return if product.nil?

  super
end

#product_tax_category_idObject



18
19
20
21
22
# File 'app/decorators/solidus_acts_as_tenant/variant_decorator.rb', line 18

def product_tax_category_id
  return if product.nil?

  super
end