epb_view_models 1.0.2 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.buildspec.yml +13 -0
- data/.gitignore +5 -0
- data/.ruby-version +1 -0
- data/Gemfile.lock +22 -17
- data/api/schemas/xml/RdSAP-Schema-NI-19.0/RdSAP/Templates/EPC-CollectedData.xsd +13 -12
- data/lib/epb_view_models.rb +1 -1
- data/lib/helper/energy_band_calculator.rb +1 -1
- data/lib/helper/xml_enums_to_output.rb +356 -136
- data/lib/presenter/export/domestic.rb +1 -1
- data/lib/presenter/rd_sap/report.rb +208 -3
- data/lib/presenter/sap/report.rb +208 -2
- data/lib/presenter/sap/summary.rb +1 -1
- data/lib/view_model/domestic_epc_view_model.rb +4 -0
- data/lib/view_model/rd_sap_schema_170/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_171/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_180/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_190/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_200/common_schema.rb +16 -4
- data/lib/view_model/rd_sap_schema_ni_173/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_ni_174/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_ni_180/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_ni_190/common_schema.rb +16 -0
- data/lib/view_model/rd_sap_schema_ni_200/common_schema.rb +16 -4
- data/lib/view_model/rd_sap_wrapper.rb +4 -0
- data/lib/view_model/sap_schema_102/common_schema.rb +33 -6
- data/lib/view_model/sap_schema_102/rdsap.rb +8 -0
- data/lib/view_model/sap_schema_110/common_schema.rb +1 -6
- data/lib/view_model/sap_schema_110/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_110/sap.rb +36 -0
- data/lib/view_model/sap_schema_112/common_schema.rb +1 -6
- data/lib/view_model/sap_schema_112/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_112/sap.rb +36 -0
- data/lib/view_model/sap_schema_120/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_120/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_120/sap.rb +36 -0
- data/lib/view_model/sap_schema_130/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_130/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_130/sap.rb +36 -0
- data/lib/view_model/sap_schema_140/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_140/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_140/sap.rb +36 -0
- data/lib/view_model/sap_schema_141/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_141/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_141/sap.rb +36 -0
- data/lib/view_model/sap_schema_142/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_142/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_142/sap.rb +36 -0
- data/lib/view_model/sap_schema_150/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_150/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_150/sap.rb +36 -0
- data/lib/view_model/sap_schema_160/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_160/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_160/sap.rb +36 -0
- data/lib/view_model/sap_schema_161/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_161/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_161/sap.rb +36 -0
- data/lib/view_model/sap_schema_162/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_162/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_162/sap.rb +36 -0
- data/lib/view_model/sap_schema_163/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_163/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_163/sap.rb +36 -0
- data/lib/view_model/sap_schema_170/common_schema.rb +32 -0
- data/lib/view_model/sap_schema_171/common_schema.rb +32 -0
- data/lib/view_model/sap_schema_1800/common_schema.rb +32 -4
- data/lib/view_model/sap_schema_ni_112/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_112/rdsap.rb +45 -4
- data/lib/view_model/sap_schema_ni_112/sap.rb +35 -0
- data/lib/view_model/sap_schema_ni_120/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_120/rdsap.rb +40 -0
- data/lib/view_model/sap_schema_ni_120/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_130/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_130/rdsap.rb +40 -0
- data/lib/view_model/sap_schema_ni_130/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_140/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_140/rdsap.rb +40 -0
- data/lib/view_model/sap_schema_ni_140/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_141/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_141/rdsap.rb +40 -0
- data/lib/view_model/sap_schema_ni_141/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_142/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_142/rdsap.rb +40 -0
- data/lib/view_model/sap_schema_ni_142/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_150/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_150/rdsap.rb +40 -0
- data/lib/view_model/sap_schema_ni_150/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_160/common_schema.rb +2 -6
- data/lib/view_model/sap_schema_ni_160/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_ni_160/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_161/common_schema.rb +1 -5
- data/lib/view_model/sap_schema_ni_161/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_ni_161/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_170/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_ni_170/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_ni_170/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_171/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_ni_171/rdsap.rb +36 -0
- data/lib/view_model/sap_schema_ni_171/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_172/common_schema.rb +0 -4
- data/lib/view_model/sap_schema_ni_172/rdsap.rb +44 -0
- data/lib/view_model/sap_schema_ni_172/sap.rb +36 -0
- data/lib/view_model/sap_schema_ni_173/common_schema.rb +32 -0
- data/lib/view_model/sap_schema_ni_174/common_schema.rb +32 -0
- data/lib/view_model/sap_schema_ni_1800/common_schema.rb +32 -4
- data/lib/view_model/sap_wrapper.rb +4 -0
- metadata +4 -2
|
@@ -503,6 +503,22 @@ module ViewModel
|
|
|
503
503
|
end
|
|
504
504
|
nil
|
|
505
505
|
end
|
|
506
|
+
|
|
507
|
+
def cylinder_insul_thickness
|
|
508
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
def cylinder_insulation_type
|
|
512
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
513
|
+
end
|
|
514
|
+
|
|
515
|
+
def cylinder_size
|
|
516
|
+
xpath(%w[Cylinder-Size])
|
|
517
|
+
end
|
|
518
|
+
|
|
519
|
+
def has_cylinder_thermostat
|
|
520
|
+
xpath(%w[Cylinder-Thermostat])
|
|
521
|
+
end
|
|
506
522
|
end
|
|
507
523
|
end
|
|
508
524
|
end
|
|
@@ -503,6 +503,22 @@ module ViewModel
|
|
|
503
503
|
end
|
|
504
504
|
nil
|
|
505
505
|
end
|
|
506
|
+
|
|
507
|
+
def cylinder_insul_thickness
|
|
508
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
def cylinder_insulation_type
|
|
512
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
513
|
+
end
|
|
514
|
+
|
|
515
|
+
def cylinder_size
|
|
516
|
+
xpath(%w[Cylinder-Size])
|
|
517
|
+
end
|
|
518
|
+
|
|
519
|
+
def has_cylinder_thermostat
|
|
520
|
+
xpath(%w[Cylinder-Thermostat])
|
|
521
|
+
end
|
|
506
522
|
end
|
|
507
523
|
end
|
|
508
524
|
end
|
|
@@ -333,10 +333,6 @@ module ViewModel
|
|
|
333
333
|
xpath(%w[Floor-Heat-Loss])
|
|
334
334
|
end
|
|
335
335
|
|
|
336
|
-
def water_heating_code
|
|
337
|
-
xpath(%w[Water-Heating-Code])
|
|
338
|
-
end
|
|
339
|
-
|
|
340
336
|
def immersion_heating_type
|
|
341
337
|
xpath(%w[Immersion-Heating-Type])
|
|
342
338
|
end
|
|
@@ -566,6 +562,22 @@ module ViewModel
|
|
|
566
562
|
end
|
|
567
563
|
nil
|
|
568
564
|
end
|
|
565
|
+
|
|
566
|
+
def cylinder_insulation_type
|
|
567
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
568
|
+
end
|
|
569
|
+
|
|
570
|
+
def cylinder_insul_thickness
|
|
571
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
572
|
+
end
|
|
573
|
+
|
|
574
|
+
def cylinder_size
|
|
575
|
+
xpath(%w[Cylinder-Size])
|
|
576
|
+
end
|
|
577
|
+
|
|
578
|
+
def has_cylinder_thermostat
|
|
579
|
+
xpath(%w[Cylinder-Thermostat])
|
|
580
|
+
end
|
|
569
581
|
end
|
|
570
582
|
end
|
|
571
583
|
end
|
|
@@ -244,10 +244,6 @@ module ViewModel
|
|
|
244
244
|
xpath(%w[Secondary-Fuel-Type])
|
|
245
245
|
end
|
|
246
246
|
|
|
247
|
-
def water_heating_fuel
|
|
248
|
-
xpath(%w[Water-Fuel-Type])
|
|
249
|
-
end
|
|
250
|
-
|
|
251
247
|
def type_of_assessment
|
|
252
248
|
case xpath(%w[Report-Type]).to_i
|
|
253
249
|
when 1
|
|
@@ -377,8 +373,7 @@ module ViewModel
|
|
|
377
373
|
end
|
|
378
374
|
|
|
379
375
|
def built_form
|
|
380
|
-
|
|
381
|
-
Helper::XmlEnumsToOutput.xml_value_to_string(built_form_value)
|
|
376
|
+
xpath(%w[Built-Form])
|
|
382
377
|
end
|
|
383
378
|
|
|
384
379
|
def unheated_corridor_length
|
|
@@ -486,6 +481,38 @@ module ViewModel
|
|
|
486
481
|
.search("Main-Heating/Environmental-Efficiency-Rating")
|
|
487
482
|
.map(&:content)
|
|
488
483
|
end
|
|
484
|
+
|
|
485
|
+
def cylinder_insul_thickness
|
|
486
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
487
|
+
end
|
|
488
|
+
|
|
489
|
+
def cylinder_insulation_type
|
|
490
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
491
|
+
end
|
|
492
|
+
|
|
493
|
+
def cylinder_size
|
|
494
|
+
xpath(%w[Cylinder-Size])
|
|
495
|
+
end
|
|
496
|
+
|
|
497
|
+
def has_cylinder_thermostat
|
|
498
|
+
nil
|
|
499
|
+
end
|
|
500
|
+
|
|
501
|
+
def mech_vent_sys_index_number
|
|
502
|
+
nil
|
|
503
|
+
end
|
|
504
|
+
|
|
505
|
+
def mechanical_vent_data_source
|
|
506
|
+
nil
|
|
507
|
+
end
|
|
508
|
+
|
|
509
|
+
def thermal_store
|
|
510
|
+
nil
|
|
511
|
+
end
|
|
512
|
+
|
|
513
|
+
def ventilation_type
|
|
514
|
+
nil
|
|
515
|
+
end
|
|
489
516
|
end
|
|
490
517
|
end
|
|
491
518
|
end
|
|
@@ -248,10 +248,6 @@ module ViewModel
|
|
|
248
248
|
xpath(%w[Secondary-Fuel-Type])
|
|
249
249
|
end
|
|
250
250
|
|
|
251
|
-
def water_heating_fuel
|
|
252
|
-
xpath(%w[Water-Fuel-Type])
|
|
253
|
-
end
|
|
254
|
-
|
|
255
251
|
def type_of_assessment
|
|
256
252
|
case xpath(%w[Report-Type]).to_i
|
|
257
253
|
when 1
|
|
@@ -381,8 +377,7 @@ module ViewModel
|
|
|
381
377
|
end
|
|
382
378
|
|
|
383
379
|
def built_form
|
|
384
|
-
|
|
385
|
-
Helper::XmlEnumsToOutput.xml_value_to_string(built_form_value)
|
|
380
|
+
xpath(%w[Built-Form])
|
|
386
381
|
end
|
|
387
382
|
|
|
388
383
|
def unheated_corridor_length
|
|
@@ -81,6 +81,42 @@ module ViewModel
|
|
|
81
81
|
def energy_tariff
|
|
82
82
|
xpath(%w[Meter-Type])
|
|
83
83
|
end
|
|
84
|
+
|
|
85
|
+
def cylinder_insul_thickness
|
|
86
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def cylinder_insulation_type
|
|
90
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
def cylinder_size
|
|
94
|
+
xpath(%w[Cylinder-Size])
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
def has_cylinder_thermostat
|
|
98
|
+
xpath(%w[Cylinder-Thermostat])
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
def mech_vent_sys_index_number
|
|
102
|
+
nil
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
def mechanical_vent_data_source
|
|
106
|
+
nil
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
def thermal_store
|
|
110
|
+
nil
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def water_heating_fuel
|
|
114
|
+
xpath(%w[Water-Heating-Fuel])
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def ventilation_type
|
|
118
|
+
nil
|
|
119
|
+
end
|
|
84
120
|
end
|
|
85
121
|
end
|
|
86
122
|
end
|
|
@@ -20,6 +20,42 @@ module ViewModel
|
|
|
20
20
|
end
|
|
21
21
|
nil
|
|
22
22
|
end
|
|
23
|
+
|
|
24
|
+
def cylinder_insul_thickness
|
|
25
|
+
xpath(%w[Hot-Water-Store-Insulation-Thickness])
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def cylinder_insulation_type
|
|
29
|
+
xpath(%w[Hot-Water-Store-Insulation-Type])
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def cylinder_size
|
|
33
|
+
xpath(%w[Hot-Water-Store-Size])
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def has_cylinder_thermostat
|
|
37
|
+
xpath(%w[Has-Cylinder-Thermostat])
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def mech_vent_sys_index_number
|
|
41
|
+
xpath(%w[Mechanical-Vent-System-Index-Number])
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def mechanical_vent_data_source
|
|
45
|
+
xpath(%w[Mechanical-Ventilation-Data-Source])
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def thermal_store
|
|
49
|
+
xpath(%w[Thermal-Store])
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def ventilation_type
|
|
53
|
+
xpath(%w[Ventilation-Type])
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def water_heating_fuel
|
|
57
|
+
xpath(%w[Water-Fuel-Type])
|
|
58
|
+
end
|
|
23
59
|
end
|
|
24
60
|
end
|
|
25
61
|
end
|
|
@@ -244,10 +244,6 @@ module ViewModel
|
|
|
244
244
|
xpath(%w[Secondary-Fuel-Type])
|
|
245
245
|
end
|
|
246
246
|
|
|
247
|
-
def water_heating_fuel
|
|
248
|
-
xpath(%w[Water-Fuel-Type])
|
|
249
|
-
end
|
|
250
|
-
|
|
251
247
|
def type_of_assessment
|
|
252
248
|
case xpath(%w[Report-Type]).to_i
|
|
253
249
|
when 1
|
|
@@ -377,8 +373,7 @@ module ViewModel
|
|
|
377
373
|
end
|
|
378
374
|
|
|
379
375
|
def built_form
|
|
380
|
-
|
|
381
|
-
Helper::XmlEnumsToOutput.xml_value_to_string(built_form_value)
|
|
376
|
+
xpath(%w[Built-Form])
|
|
382
377
|
end
|
|
383
378
|
|
|
384
379
|
def heat_loss_corridor
|
|
@@ -81,6 +81,42 @@ module ViewModel
|
|
|
81
81
|
def energy_tariff
|
|
82
82
|
xpath(%w[Meter-Type])
|
|
83
83
|
end
|
|
84
|
+
|
|
85
|
+
def cylinder_insul_thickness
|
|
86
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def cylinder_insulation_type
|
|
90
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
def cylinder_size
|
|
94
|
+
xpath(%w[Cylinder-Size])
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
def has_cylinder_thermostat
|
|
98
|
+
xpath(%w[Cylinder-Thermostat])
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
def mech_vent_sys_index_number
|
|
102
|
+
nil
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
def mechanical_vent_data_source
|
|
106
|
+
nil
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
def thermal_store
|
|
110
|
+
nil
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def ventilation_type
|
|
114
|
+
nil
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def water_heating_fuel
|
|
118
|
+
xpath(%w[Water-Heating-Fuel])
|
|
119
|
+
end
|
|
84
120
|
end
|
|
85
121
|
end
|
|
86
122
|
end
|
|
@@ -26,6 +26,42 @@ module ViewModel
|
|
|
26
26
|
end
|
|
27
27
|
nil
|
|
28
28
|
end
|
|
29
|
+
|
|
30
|
+
def cylinder_insul_thickness
|
|
31
|
+
xpath(%w[Hot-Water-Store-Insulation-Thickness])
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def cylinder_insulation_type
|
|
35
|
+
xpath(%w[Hot-Water-Store-Insulation-Type])
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def cylinder_size
|
|
39
|
+
xpath(%w[Hot-Water-Store-Size])
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def has_cylinder_thermostat
|
|
43
|
+
xpath(%w[Has-Cylinder-Thermostat])
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def mech_vent_sys_index_number
|
|
47
|
+
xpath(%w[Mechanical-Vent-System-Index-Number])
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def mechanical_vent_data_source
|
|
51
|
+
xpath(%w[Mechanical-Ventilation-Data-Source])
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def thermal_store
|
|
55
|
+
xpath(%w[Thermal-Store])
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
def ventilation_type
|
|
59
|
+
xpath(%w[Ventilation-Type])
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def water_heating_fuel
|
|
63
|
+
xpath(%w[Water-Fuel-Type])
|
|
64
|
+
end
|
|
29
65
|
end
|
|
30
66
|
end
|
|
31
67
|
end
|
|
@@ -64,6 +64,42 @@ module ViewModel
|
|
|
64
64
|
def energy_tariff
|
|
65
65
|
xpath(%w[Meter-Type])
|
|
66
66
|
end
|
|
67
|
+
|
|
68
|
+
def cylinder_insul_thickness
|
|
69
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def cylinder_insulation_type
|
|
73
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def cylinder_size
|
|
77
|
+
xpath(%w[Cylinder-Size])
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def has_cylinder_thermostat
|
|
81
|
+
xpath(%w[Cylinder-Thermostat])
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def mech_vent_sys_index_number
|
|
85
|
+
nil
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
def mechanical_vent_data_source
|
|
89
|
+
nil
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def thermal_store
|
|
93
|
+
nil
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def ventilation_type
|
|
97
|
+
nil
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def water_heating_fuel
|
|
101
|
+
xpath(%w[Water-Heating-Fuel])
|
|
102
|
+
end
|
|
67
103
|
end
|
|
68
104
|
end
|
|
69
105
|
end
|
|
@@ -8,6 +8,42 @@ module ViewModel
|
|
|
8
8
|
def construction_year
|
|
9
9
|
xpath(%w[Construction-Year])
|
|
10
10
|
end
|
|
11
|
+
|
|
12
|
+
def cylinder_insul_thickness
|
|
13
|
+
xpath(%w[Hot-Water-Store-Insulation-Thickness])
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def cylinder_insulation_type
|
|
17
|
+
xpath(%w[Hot-Water-Store-Insulation-Type])
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def cylinder_size
|
|
21
|
+
xpath(%w[Hot-Water-Store-Size])
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def has_cylinder_thermostat
|
|
25
|
+
xpath(%w[Has-Cylinder-Thermostat])
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def mech_vent_sys_index_number
|
|
29
|
+
xpath(%w[Mechanical-Vent-System-Index-Number])
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def mechanical_vent_data_source
|
|
33
|
+
xpath(%w[Mechanical-Ventilation-Data-Source])
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def thermal_store
|
|
37
|
+
xpath(%w[Thermal-Store])
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def ventilation_type
|
|
41
|
+
xpath(%w[Ventilation-Type])
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def water_heating_fuel
|
|
45
|
+
xpath(%w[Water-Fuel-Type])
|
|
46
|
+
end
|
|
11
47
|
end
|
|
12
48
|
end
|
|
13
49
|
end
|
|
@@ -64,6 +64,42 @@ module ViewModel
|
|
|
64
64
|
def energy_tariff
|
|
65
65
|
xpath(%w[Meter-Type])
|
|
66
66
|
end
|
|
67
|
+
|
|
68
|
+
def cylinder_insul_thickness
|
|
69
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def cylinder_insulation_type
|
|
73
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def cylinder_size
|
|
77
|
+
xpath(%w[Cylinder-Size])
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def has_cylinder_thermostat
|
|
81
|
+
xpath(%w[Cylinder-Thermostat])
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def mech_vent_sys_index_number
|
|
85
|
+
nil
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
def mechanical_vent_data_source
|
|
89
|
+
nil
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def thermal_store
|
|
93
|
+
nil
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def ventilation_type
|
|
97
|
+
nil
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def water_heating_fuel
|
|
101
|
+
xpath(%w[Water-Heating-Fuel])
|
|
102
|
+
end
|
|
67
103
|
end
|
|
68
104
|
end
|
|
69
105
|
end
|
|
@@ -8,6 +8,42 @@ module ViewModel
|
|
|
8
8
|
def construction_year
|
|
9
9
|
xpath(%w[Construction-Year])
|
|
10
10
|
end
|
|
11
|
+
|
|
12
|
+
def cylinder_insul_thickness
|
|
13
|
+
xpath(%w[Hot-Water-Store-Insulation-Thickness])
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def cylinder_insulation_type
|
|
17
|
+
xpath(%w[Hot-Water-Store-Insulation-Type])
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def cylinder_size
|
|
21
|
+
xpath(%w[Hot-Water-Store-Size])
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def has_cylinder_thermostat
|
|
25
|
+
xpath(%w[Has-Cylinder-Thermostat])
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def mech_vent_sys_index_number
|
|
29
|
+
xpath(%w[Mechanical-Vent-System-Index-Number])
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def mechanical_vent_data_source
|
|
33
|
+
xpath(%w[Mechanical-Ventilation-Data-Source])
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def thermal_store
|
|
37
|
+
xpath(%w[Thermal-Store])
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def ventilation_type
|
|
41
|
+
xpath(%w[Ventilation-Type])
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def water_heating_fuel
|
|
45
|
+
xpath(%w[Water-Fuel-Type])
|
|
46
|
+
end
|
|
11
47
|
end
|
|
12
48
|
end
|
|
13
49
|
end
|
|
@@ -64,6 +64,42 @@ module ViewModel
|
|
|
64
64
|
def energy_tariff
|
|
65
65
|
xpath(%w[Meter-Type])
|
|
66
66
|
end
|
|
67
|
+
|
|
68
|
+
def cylinder_insul_thickness
|
|
69
|
+
xpath(%w[Cylinder-Insulation-Thickness])
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def cylinder_insulation_type
|
|
73
|
+
xpath(%w[Cylinder-Insulation-Type])
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def cylinder_size
|
|
77
|
+
xpath(%w[Cylinder-Size])
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def has_cylinder_thermostat
|
|
81
|
+
xpath(%w[Cylinder-Thermostat])
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def mech_vent_sys_index_number
|
|
85
|
+
nil
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
def mechanical_vent_data_source
|
|
89
|
+
nil
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def thermal_store
|
|
93
|
+
nil
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
def ventilation_type
|
|
97
|
+
nil
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def water_heating_fuel
|
|
101
|
+
xpath(%w[Water-Heating-Fuel])
|
|
102
|
+
end
|
|
67
103
|
end
|
|
68
104
|
end
|
|
69
105
|
end
|
|
@@ -8,6 +8,42 @@ module ViewModel
|
|
|
8
8
|
def construction_year
|
|
9
9
|
xpath(%w[Construction-Year])
|
|
10
10
|
end
|
|
11
|
+
|
|
12
|
+
def cylinder_insul_thickness
|
|
13
|
+
xpath(%w[Hot-Water-Store-Insulation-Thickness])
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def cylinder_insulation_type
|
|
17
|
+
xpath(%w[Hot-Water-Store-Insulation-Type])
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def cylinder_size
|
|
21
|
+
xpath(%w[Hot-Water-Store-Size])
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def has_cylinder_thermostat
|
|
25
|
+
xpath(%w[Has-Cylinder-Thermostat])
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def mech_vent_sys_index_number
|
|
29
|
+
xpath(%w[Mechanical-Vent-System-Index-Number])
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def mechanical_vent_data_source
|
|
33
|
+
xpath(%w[Mechanical-Ventilation-Data-Source])
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def thermal_store
|
|
37
|
+
xpath(%w[Thermal-Store])
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def ventilation_type
|
|
41
|
+
xpath(%w[Ventilation-Type])
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def water_heating_fuel
|
|
45
|
+
xpath(%w[Water-Fuel-Type])
|
|
46
|
+
end
|
|
11
47
|
end
|
|
12
48
|
end
|
|
13
49
|
end
|