Sha256: 5beba97d0cf2cf11b44e6ef46dd835c9dd24586e6bdc196146d0420222c1c8ec

Contents?: true

Size: 1.31 KB

Versions: 6

Compression:

Stored size: 1.31 KB

Contents

module ViewModel
  module SapSchemaNi172
    class Sap < ViewModel::SapSchemaNi172::CommonSchema
      def assessor_name
        [
          xpath(%w[Home-Inspector Name Prefix]),
          xpath(%w[Home-Inspector Name First-Name]),
          xpath(%w[Home-Inspector Name Surname]),
          xpath(%w[Home-Inspector Name Suffix]),
        ].reject { |e| e.to_s.empty? }.join(" ")
      end

      def property_age_band
        construction_year
      end

      def construction_year
        xpath(%w[Construction-Year])
      end

      def cylinder_insul_thickness
        xpath(%w[Hot-Water-Store-Insulation-Thickness])
      end

      def cylinder_insulation_type
        xpath(%w[Hot-Water-Store-Insulation-Type])
      end

      def cylinder_size
        xpath(%w[Hot-Water-Store-Size])
      end

      def has_cylinder_thermostat
        xpath(%w[Has-Cylinder-Thermostat])
      end

      def mech_vent_sys_index_number
        xpath(%w[Mechanical-Vent-System-Index-Number])&.to_i
      end

      def mechanical_vent_data_source
        xpath(%w[Mechanical-Ventilation-Data-Source])
      end

      def thermal_store
        xpath(%w[Thermal-Store])
      end

      def ventilation_type
        xpath(%w[Ventilation-Type])
      end

      def water_heating_fuel
        xpath(%w[Water-Fuel-Type])
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
epb_view_models-2.0.5 lib/view_model/sap_schema_ni_172/sap.rb
epb_view_models-2.0.4 lib/view_model/sap_schema_ni_172/sap.rb
epb_view_models-2.0.3 lib/view_model/sap_schema_ni_172/sap.rb
epb_view_models-2.0.2 lib/view_model/sap_schema_ni_172/sap.rb
epb_view_models-2.0.1 lib/view_model/sap_schema_ni_172/sap.rb
epb_view_models-2.0.0 lib/view_model/sap_schema_ni_172/sap.rb