Class: Edi::Wayfair::ListingGenerator::Attributes::Wattage

Inherits:
BaseAttribute
  • Object
show all
Defined in:
app/services/edi/wayfair/listing_generator/attributes/wattage.rb

Overview

Maps wattage from Item to Wayfair's Wattage attribute
Taxonomy Attribute ID: 895
Datatype: DECIMAL

Constant Summary

Constants inherited from BaseAttribute

BaseAttribute::UNIT_MAPPINGS

Instance Attribute Summary

Attributes inherited from BaseAttribute

#attribute_definition, #catalog_item, #item, #taxonomy_attribute_id, #wayfair_schema

Instance Method Summary collapse

Methods inherited from BaseAttribute

attribute_name, #attribute_title, #build, #build_attribute_hash, #can_build?, #custom_values_allowed?, #datatype, #fetch_value, #format_boolean, #format_decimal, #initialize, #map_unit, #possible_values, #requirement, set_taxonomy_attribute_id, taxonomy_attribute_id, #valid_value?

Constructor Details

This class inherits a constructor from Edi::Wayfair::ListingGenerator::Attributes::BaseAttribute

Instance Method Details

#valueObject



10
11
12
13
14
15
# File 'app/services/edi/wayfair/listing_generator/attributes/wattage.rb', line 10

def value
  watts = item.watts
  return nil unless watts.present? && watts > 0

  format_decimal(watts)
end