Module: SolidusActsAsTenant::VariantDecorator
- Defined in:
- app/decorators/solidus_acts_as_tenant/variant_decorator.rb
Overview
rubocop:disable Style/ClassAndModuleChildren
Instance Method Summary collapse
- #product_shipping_category ⇒ Object
-
#product_shipping_category_id ⇒ Object
Fixes errors related to validations added through acts_as_tenant.
- #product_tax_category ⇒ Object
- #product_tax_category_id ⇒ Object
Instance Method Details
#product_shipping_category ⇒ Object
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_id ⇒ Object
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_category ⇒ Object
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_id ⇒ Object
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 |