appraisermetrics_report_service 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/appraisermetrics_report_service/version.rb +1 -1
- data/lib/closed_sale.rb +17 -4
- data/lib/eval_report.rb +16 -3
- data/lib/report_utils.rb +13 -5
- data/spec/lib/report_utils_spec.rb +2 -2
- data/spec/test_data/sampler.rb +774 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56b4b3c4201e49937a29aeee527fea7443813dc8
|
4
|
+
data.tar.gz: 8fefaee04fc20e6a0fd0e6ff0675e245de590648
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae93112d46bc3993f2b8dd4433ae827daf530e510306ce9b597529f986a64c058f089ae9df10274562c9d6624f7f6c6739816065fe986bce749d6487d2367a01
|
7
|
+
data.tar.gz: b875ebde3429be5be6ec26e5531a53ce58d08d1db322e696173678ebc8e27d12e56eb8ee8539070687e18e32de78f76057044786e7d1d2f897a976a2baf00ede
|
data/lib/closed_sale.rb
CHANGED
@@ -424,7 +424,7 @@ class ClosedSale < Prawn::Document
|
|
424
424
|
["Sale Price $:", price, "Sale Date:", datemaker(@rep[:sale_date])],
|
425
425
|
["Cond. Adjust $:", '(' + adjustment +')', "Adj. CE Sale $:", ce_sale_price],
|
426
426
|
["Unit Description:", "#{@rep[:unit]}", "No. of Units:", '%.2f' % no_nil_number(@rep[:num_of_units])],
|
427
|
-
["Instrument No.:", "#{@rep[:
|
427
|
+
["Instrument No.:", "#{@rep[:public_rec_ref_number]}", "$/Unit:", moneymaker(@rep[:cesaleunitprice], true)],
|
428
428
|
["Seller:", "#{@rep[:grantor]}", "Buyer:", "#{@rep[:grantee]}"],
|
429
429
|
["Extent of Verification:", {content: no_nil_array(@rep[:verifications]).join(', '), colspan: 3}],
|
430
430
|
[{content: "#{@rep[:grantor]}" + " #{@rep[:information_source_contact]}",
|
@@ -593,9 +593,9 @@ class ClosedSale < Prawn::Document
|
|
593
593
|
end
|
594
594
|
|
595
595
|
def improvements
|
596
|
-
improvements_array = @rep[:improvements]
|
596
|
+
improvements_array = no_nil_array(@rep[:improvements])
|
597
597
|
|
598
|
-
sorted_array = flip_improvements_array(improvements_array)
|
598
|
+
sorted_array = flip_improvements_array(improvements_array[0..6], 1)
|
599
599
|
|
600
600
|
table(sorted_array) do
|
601
601
|
columns(0..7).width = 67.5
|
@@ -604,7 +604,20 @@ class ClosedSale < Prawn::Document
|
|
604
604
|
cells.padding = [1, 2.5]
|
605
605
|
cells.style(border_width: 0)
|
606
606
|
row(1).style(border_bottom_width: 0.5, font_style: nil)
|
607
|
-
end
|
607
|
+
end
|
608
|
+
|
609
|
+
if improvements_array[7]
|
610
|
+
second_sorted_array = flip_improvements_array(improvements_array[7..13], 2)
|
611
|
+
|
612
|
+
table(second_sorted_array) do
|
613
|
+
columns(0..7).width = 67.5
|
614
|
+
columns(1..7).style(font_style: :bold)
|
615
|
+
row(0).style(align: :center, background_color: 'd7d7d7', size: 11, font_style: :bold)
|
616
|
+
cells.padding = [1, 2.5]
|
617
|
+
cells.style(border_width: 0)
|
618
|
+
row(1).style(border_bottom_width: 0.5, font_style: nil)
|
619
|
+
end
|
620
|
+
end
|
608
621
|
end
|
609
622
|
|
610
623
|
def water_rights
|
data/lib/eval_report.rb
CHANGED
@@ -1188,9 +1188,9 @@ class EvalReport < Prawn::Document
|
|
1188
1188
|
end
|
1189
1189
|
|
1190
1190
|
def improvements
|
1191
|
-
improvements_array = @sub[:improvements]
|
1191
|
+
improvements_array = no_nil_array(@sub[:improvements])
|
1192
1192
|
|
1193
|
-
sorted_array = flip_improvements_array(improvements_array)
|
1193
|
+
sorted_array = flip_improvements_array(improvements_array[0..6], 1)
|
1194
1194
|
|
1195
1195
|
table(sorted_array) do
|
1196
1196
|
columns(0..7).width = 67.5
|
@@ -1199,7 +1199,20 @@ class EvalReport < Prawn::Document
|
|
1199
1199
|
cells.padding = [1, 2.5]
|
1200
1200
|
cells.style(border_width: 0)
|
1201
1201
|
row(1).style(border_bottom_width: 0.5, font_style: nil)
|
1202
|
-
end
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
if improvements_array[7]
|
1205
|
+
second_sorted_array = flip_improvements_array(improvements_array[7..13], 2)
|
1206
|
+
|
1207
|
+
table(second_sorted_array) do
|
1208
|
+
columns(0..7).width = 67.5
|
1209
|
+
columns(1..7).style(font_style: :bold)
|
1210
|
+
row(0).style(align: :center, background_color: 'd7d7d7', size: 11, font_style: :bold)
|
1211
|
+
cells.padding = [1, 2.5]
|
1212
|
+
cells.style(border_width: 0)
|
1213
|
+
row(1).style(border_bottom_width: 0.5, font_style: nil)
|
1214
|
+
end
|
1215
|
+
end
|
1203
1216
|
# no new page
|
1204
1217
|
end
|
1205
1218
|
|
data/lib/report_utils.rb
CHANGED
@@ -89,7 +89,7 @@ module ReportUtils
|
|
89
89
|
end
|
90
90
|
module_function :minimum_land_val
|
91
91
|
|
92
|
-
def flip_improvements_array(improv_array)
|
92
|
+
def flip_improvements_array(improv_array, table_num)
|
93
93
|
type, size, unit_of_measure, foundation, const_class = ["Type"], ["Size"], ["Unit of Measure"], ["Foundation"], ["Const. Class"]
|
94
94
|
floor, const_quality, cond_utility, year_built = ["Floor"], ["Const. Quality"], ["Cond Utility"], ["Year Built"]
|
95
95
|
total_econ_al, eff_age, remaining_al, rcn, def_maint = ["Total Economic AL"], ["Remaining AL:"], ["RCN:"], ["Deferred Maint:"], ["% Physical Deprec."]
|
@@ -125,10 +125,18 @@ module ReportUtils
|
|
125
125
|
end
|
126
126
|
end
|
127
127
|
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
128
|
+
if table_num == 1
|
129
|
+
parsed_array = [
|
130
|
+
[{content: "Improvements", colspan: 8}],
|
131
|
+
%w(Description Imprv.1 Imprv.2 Imprv.3 Imprv.4 Imprv.5 Imprv.6 Imprv.7)
|
132
|
+
]
|
133
|
+
else
|
134
|
+
parsed_array = [
|
135
|
+
[{content: "Improvements Continued", colspan: 8}],
|
136
|
+
%w(Description Imprv.8 Imprv.9 Imprv.10 Imprv.11 Imprv.12 Imprv.13 Imprv.14)
|
137
|
+
]
|
138
|
+
end
|
139
|
+
|
132
140
|
parsed_array.push(type, size, unit_of_measure, foundation, const_class, floor, const_quality, cond_utility, year_built,
|
133
141
|
total_econ_al, eff_age, remaining_al, rcn, def_maint, phys_dep, func_dep, economic, total_cont_val)
|
134
142
|
# this method creates a 2 dimensional array to pass in to prawn table
|
@@ -123,7 +123,7 @@ describe ReportUtils do
|
|
123
123
|
context "non-empty array" do
|
124
124
|
it "produces an array of attributes for a given improvement within a 2D array" do
|
125
125
|
c = ClosedSale.new
|
126
|
-
sorted_a = c.flip_improvements_array(Sampler.improv_array)
|
126
|
+
sorted_a = c.flip_improvements_array(Sampler.improv_array, 1)
|
127
127
|
expect(sorted_a).to eq([[{:content=>"Improvements", :colspan=>8}],
|
128
128
|
["Description", "Imprv.1", "Imprv.2", "Imprv.3", "Imprv.4", "Imprv.5", "Imprv.6", "Imprv.7"],
|
129
129
|
["Type", "Shop", "Granary", "Apple Storage Building"],
|
@@ -150,7 +150,7 @@ describe ReportUtils do
|
|
150
150
|
context 'empty array' do
|
151
151
|
it 'produces an array of headers and row titles' do
|
152
152
|
c = ClosedSale.new
|
153
|
-
sorted_a = c.flip_improvements_array([])
|
153
|
+
sorted_a = c.flip_improvements_array([], 1)
|
154
154
|
expect(sorted_a).to eq([[{:content=>"Improvements", :colspan=>8}],
|
155
155
|
["Description", "Imprv.1", "Imprv.2", "Imprv.3", "Imprv.4", "Imprv.5", "Imprv.6", "Imprv.7"],
|
156
156
|
["Type"],
|
data/spec/test_data/sampler.rb
CHANGED
@@ -1419,4 +1419,778 @@ class Sampler
|
|
1419
1419
|
]
|
1420
1420
|
end
|
1421
1421
|
|
1422
|
+
def self.get_bad_comp
|
1423
|
+
bad_comp = {
|
1424
|
+
_id: "5515952a3238330007000000",
|
1425
|
+
_type: "Comp",
|
1426
|
+
accessibility: "The subject has good road access along Tear, Braden and Hornby roads. All roads are well maintained and accessible year round.",
|
1427
|
+
allowed_uses_and_limitations: "All common ag land uses are allowed by zoning. Confined animal operations are allowed by conditional use permit and filing of a nutrient management plan.",
|
1428
|
+
any_water_rights: "Yes",
|
1429
|
+
atmarket_trans: "Yes",
|
1430
|
+
cesaleprice: {
|
1431
|
+
cents: 275000000,
|
1432
|
+
currency_iso: "USD"
|
1433
|
+
},
|
1434
|
+
cesaleunitprice: {
|
1435
|
+
cents: 1494890,
|
1436
|
+
currency_iso: "USD"
|
1437
|
+
},
|
1438
|
+
change_of_use: "There is little potential for a change in use due to high profits in dairy and good profits in agriculture as a whole. The subject's improvements were in average condition and contributed significantly to value.",
|
1439
|
+
city: "Grandview",
|
1440
|
+
conf_type: "Conforming",
|
1441
|
+
county: 3070,
|
1442
|
+
county_state: "Yakima County,WA",
|
1443
|
+
created_at: "2015-03-27T17:36:42.876Z",
|
1444
|
+
date_inspected: "2015-03-24T00:00:00Z",
|
1445
|
+
date_last_verified: "2015-03-26T00:00:00Z",
|
1446
|
+
development_potential: "The property is unlikely to see a change in land use due to high profitability in dairy and good profits in agriculture generally.",
|
1447
|
+
directions_or_ownership_comments: "The property lies mainly near the intersection of Braden Road and Tear Roads near Grandview, WA. A small tract of property lies in the NE corner of the intersection of Hornby and Tear Road.",
|
1448
|
+
east_land: "Irrigated Cropland",
|
1449
|
+
flood_zone: [
|
1450
|
+
"Not in a Flood Zone"
|
1451
|
+
],
|
1452
|
+
general_comments: "The sale is between two local dairy operators. The seller planned to reloacte to Idaho so that he could expand his operation and the buyer was interested in a local property.",
|
1453
|
+
grantee: "Rollinger",
|
1454
|
+
grantor: "Visser",
|
1455
|
+
guarantors_email: "5097783332",
|
1456
|
+
has_legal_access: "Yes",
|
1457
|
+
has_physical_access: "Yes",
|
1458
|
+
improvements: [
|
1459
|
+
{
|
1460
|
+
_id: "5515a4883238330007b90300",
|
1461
|
+
improvtype: "Cow Shades",
|
1462
|
+
unitsize: 23360,
|
1463
|
+
unitdescr: "Sq. Ft.",
|
1464
|
+
effage: 15,
|
1465
|
+
depval: {
|
1466
|
+
cents: 5793280,
|
1467
|
+
currency_iso: "USD"
|
1468
|
+
},
|
1469
|
+
constrclass: "Class-Pole",
|
1470
|
+
qualityconstr: "Average",
|
1471
|
+
condition: "Average",
|
1472
|
+
totalecoage: 40,
|
1473
|
+
rplccost: {
|
1474
|
+
cents: 400,
|
1475
|
+
currency_iso: "USD"
|
1476
|
+
},
|
1477
|
+
deffmaintenance: {
|
1478
|
+
cents: 0,
|
1479
|
+
currency_iso: "USD"
|
1480
|
+
},
|
1481
|
+
fnctldeprication: 0,
|
1482
|
+
extdeprication: 0
|
1483
|
+
},
|
1484
|
+
{
|
1485
|
+
_id: "5515a4883238330007ba0300",
|
1486
|
+
improvtype: "Milking Parlor",
|
1487
|
+
unitsize: 4712,
|
1488
|
+
unitdescr: "Sq. Ft.",
|
1489
|
+
effage: 15,
|
1490
|
+
depval: {
|
1491
|
+
cents: 15549600,
|
1492
|
+
currency_iso: "USD"
|
1493
|
+
},
|
1494
|
+
constrclass: "Class C",
|
1495
|
+
qualityconstr: "Average",
|
1496
|
+
condition: "Average",
|
1497
|
+
totalecoage: 60,
|
1498
|
+
rplccost: {
|
1499
|
+
cents: 4400,
|
1500
|
+
currency_iso: "USD"
|
1501
|
+
},
|
1502
|
+
deffmaintenance: {
|
1503
|
+
cents: 0,
|
1504
|
+
currency_iso: "USD"
|
1505
|
+
},
|
1506
|
+
fnctldeprication: 0,
|
1507
|
+
extdeprication: 0
|
1508
|
+
},
|
1509
|
+
{
|
1510
|
+
_id: "5515a4883238330007bb0300",
|
1511
|
+
improvtype: "Commodity Barn",
|
1512
|
+
unitsize: 3000,
|
1513
|
+
unitdescr: "Sq. Ft.",
|
1514
|
+
effage: 15,
|
1515
|
+
depval: {
|
1516
|
+
cents: 2700000,
|
1517
|
+
currency_iso: "USD"
|
1518
|
+
},
|
1519
|
+
constrclass: "Class D",
|
1520
|
+
qualityconstr: "Average",
|
1521
|
+
condition: "Average",
|
1522
|
+
totalecoage: 60,
|
1523
|
+
rplccost: {
|
1524
|
+
cents: 1200,
|
1525
|
+
currency_iso: "USD"
|
1526
|
+
},
|
1527
|
+
deffmaintenance: {
|
1528
|
+
cents: 0,
|
1529
|
+
currency_iso: "USD"
|
1530
|
+
},
|
1531
|
+
fnctldeprication: 0,
|
1532
|
+
extdeprication: 0
|
1533
|
+
},
|
1534
|
+
{
|
1535
|
+
_id: "5515a4883238330007bc0300",
|
1536
|
+
improvtype: "Home",
|
1537
|
+
unitsize: 2052,
|
1538
|
+
unitdescr: "Sq. Ft.",
|
1539
|
+
effage: 30,
|
1540
|
+
depval: {
|
1541
|
+
cents: 11450160,
|
1542
|
+
currency_iso: "USD"
|
1543
|
+
},
|
1544
|
+
constrclass: "Class D",
|
1545
|
+
qualityconstr: "Average",
|
1546
|
+
condition: "Average",
|
1547
|
+
totalecoage: 80,
|
1548
|
+
rplccost: {
|
1549
|
+
cents: 9000,
|
1550
|
+
currency_iso: "USD"
|
1551
|
+
},
|
1552
|
+
deffmaintenance: {
|
1553
|
+
cents: 0,
|
1554
|
+
currency_iso: "USD"
|
1555
|
+
},
|
1556
|
+
fnctldeprication: 0,
|
1557
|
+
extdeprication: 0
|
1558
|
+
},
|
1559
|
+
{
|
1560
|
+
_id: "5515a4883238330007bd0300",
|
1561
|
+
improvtype: "Home",
|
1562
|
+
unitsize: 1380,
|
1563
|
+
unitdescr: "Sq. Ft.",
|
1564
|
+
effage: 45,
|
1565
|
+
depval: {
|
1566
|
+
cents: 5464800,
|
1567
|
+
currency_iso: "USD"
|
1568
|
+
},
|
1569
|
+
totalecoage: 80,
|
1570
|
+
rplccost: {
|
1571
|
+
cents: 9000,
|
1572
|
+
currency_iso: "USD"
|
1573
|
+
},
|
1574
|
+
deffmaintenance: {
|
1575
|
+
cents: 0,
|
1576
|
+
currency_iso: "USD"
|
1577
|
+
},
|
1578
|
+
fnctldeprication: 0,
|
1579
|
+
extdeprication: 0
|
1580
|
+
},
|
1581
|
+
{
|
1582
|
+
_id: "5515a4883238330007be0300",
|
1583
|
+
improvtype: "Garage",
|
1584
|
+
unitsize: 840,
|
1585
|
+
unitdescr: "Sq. Ft.",
|
1586
|
+
effage: 30,
|
1587
|
+
depval: {
|
1588
|
+
cents: 1587600,
|
1589
|
+
currency_iso: "USD"
|
1590
|
+
},
|
1591
|
+
qualityconstr: "Average",
|
1592
|
+
condition: "Average",
|
1593
|
+
totalecoage: 65,
|
1594
|
+
rplccost: {
|
1595
|
+
cents: 3500,
|
1596
|
+
currency_iso: "USD"
|
1597
|
+
},
|
1598
|
+
deffmaintenance: {
|
1599
|
+
cents: 0,
|
1600
|
+
currency_iso: "USD"
|
1601
|
+
},
|
1602
|
+
fnctldeprication: 0,
|
1603
|
+
extdeprication: 0
|
1604
|
+
},
|
1605
|
+
{
|
1606
|
+
_id: "5515a4883238330007bf0300",
|
1607
|
+
improvtype: "Barns",
|
1608
|
+
unitsize: 2612,
|
1609
|
+
unitdescr: "Sq. Ft.",
|
1610
|
+
effage: 15,
|
1611
|
+
depval: {
|
1612
|
+
cents: 2938500,
|
1613
|
+
currency_iso: "USD"
|
1614
|
+
},
|
1615
|
+
totalecoage: 60,
|
1616
|
+
rplccost: {
|
1617
|
+
cents: 1500,
|
1618
|
+
currency_iso: "USD"
|
1619
|
+
},
|
1620
|
+
deffmaintenance: {
|
1621
|
+
cents: 0,
|
1622
|
+
currency_iso: "USD"
|
1623
|
+
},
|
1624
|
+
fnctldeprication: 0,
|
1625
|
+
extdeprication: 0
|
1626
|
+
},
|
1627
|
+
{
|
1628
|
+
_id: "5515a4883238330007c00300",
|
1629
|
+
improvtype: "Shop",
|
1630
|
+
unitsize: 2160,
|
1631
|
+
unitdescr: "",
|
1632
|
+
effage: 15,
|
1633
|
+
depval: {
|
1634
|
+
cents: 2430000,
|
1635
|
+
currency_iso: "USD"
|
1636
|
+
},
|
1637
|
+
totalecoage: 60,
|
1638
|
+
rplccost: {
|
1639
|
+
cents: 1500,
|
1640
|
+
currency_iso: "USD"
|
1641
|
+
},
|
1642
|
+
deffmaintenance: {
|
1643
|
+
cents: 0,
|
1644
|
+
currency_iso: "USD"
|
1645
|
+
},
|
1646
|
+
fnctldeprication: 0,
|
1647
|
+
extdeprication: 0
|
1648
|
+
},
|
1649
|
+
{
|
1650
|
+
_id: "5515a4883238330007c10300",
|
1651
|
+
improvtype: "Cow Stands",
|
1652
|
+
unitsize: 2267,
|
1653
|
+
unitdescr: "Linear Foot",
|
1654
|
+
effage: 15,
|
1655
|
+
depval: {
|
1656
|
+
cents: 4250625,
|
1657
|
+
currency_iso: "USD"
|
1658
|
+
},
|
1659
|
+
totalecoage: 60,
|
1660
|
+
rplccost: {
|
1661
|
+
cents: 2500,
|
1662
|
+
currency_iso: "USD"
|
1663
|
+
},
|
1664
|
+
deffmaintenance: {
|
1665
|
+
cents: 0,
|
1666
|
+
currency_iso: "USD"
|
1667
|
+
},
|
1668
|
+
fnctldeprication: 0,
|
1669
|
+
extdeprication: 0
|
1670
|
+
},
|
1671
|
+
{
|
1672
|
+
_id: "5515a4883238330007c20300",
|
1673
|
+
improvtype: "Feed Lane",
|
1674
|
+
unitsize: 2267,
|
1675
|
+
unitdescr: "Linear Foot",
|
1676
|
+
effage: 15,
|
1677
|
+
depval: {
|
1678
|
+
cents: 4250625,
|
1679
|
+
currency_iso: "USD"
|
1680
|
+
},
|
1681
|
+
totalecoage: 60,
|
1682
|
+
rplccost: {
|
1683
|
+
cents: 2500,
|
1684
|
+
currency_iso: "USD"
|
1685
|
+
},
|
1686
|
+
deffmaintenance: {
|
1687
|
+
cents: 0,
|
1688
|
+
currency_iso: "USD"
|
1689
|
+
},
|
1690
|
+
fnctldeprication: 0,
|
1691
|
+
extdeprication: 0
|
1692
|
+
},
|
1693
|
+
{
|
1694
|
+
_id: "5515a4883238330007c30300",
|
1695
|
+
improvtype: "Lockups",
|
1696
|
+
unitsize: 1100,
|
1697
|
+
unitdescr: "Head",
|
1698
|
+
effage: 15,
|
1699
|
+
depval: {
|
1700
|
+
cents: 3069000,
|
1701
|
+
currency_iso: "USD"
|
1702
|
+
},
|
1703
|
+
totalecoage: 40,
|
1704
|
+
rplccost: {
|
1705
|
+
cents: 4500,
|
1706
|
+
currency_iso: "USD"
|
1707
|
+
},
|
1708
|
+
deffmaintenance: {
|
1709
|
+
cents: 0,
|
1710
|
+
currency_iso: "USD"
|
1711
|
+
},
|
1712
|
+
fnctldeprication: 0,
|
1713
|
+
extdeprication: 0
|
1714
|
+
},
|
1715
|
+
{
|
1716
|
+
_id: "5515a4883238330007c40300",
|
1717
|
+
improvtype: "Parlor Equip",
|
1718
|
+
unitsize: 32,
|
1719
|
+
unitdescr: "Head",
|
1720
|
+
effage: 15,
|
1721
|
+
depval: {
|
1722
|
+
cents: 39680000,
|
1723
|
+
currency_iso: "USD"
|
1724
|
+
},
|
1725
|
+
totalecoage: 40,
|
1726
|
+
rplccost: {
|
1727
|
+
cents: 2000000,
|
1728
|
+
currency_iso: "USD"
|
1729
|
+
},
|
1730
|
+
deffmaintenance: {
|
1731
|
+
cents: 0,
|
1732
|
+
currency_iso: "USD"
|
1733
|
+
},
|
1734
|
+
fnctldeprication: 0,
|
1735
|
+
extdeprication: 0
|
1736
|
+
},
|
1737
|
+
{
|
1738
|
+
_id: "5515a4883238330007c50300",
|
1739
|
+
improvtype: "Pivots",
|
1740
|
+
unitsize: 13,
|
1741
|
+
unitdescr: "",
|
1742
|
+
effage: 10,
|
1743
|
+
depval: {
|
1744
|
+
cents: 6175000,
|
1745
|
+
currency_iso: "USD"
|
1746
|
+
},
|
1747
|
+
totalecoage: 20,
|
1748
|
+
rplccost: {
|
1749
|
+
cents: 950000,
|
1750
|
+
currency_iso: "USD"
|
1751
|
+
},
|
1752
|
+
deffmaintenance: {
|
1753
|
+
cents: 0,
|
1754
|
+
currency_iso: "USD"
|
1755
|
+
},
|
1756
|
+
fnctldeprication: 0,
|
1757
|
+
extdeprication: 0
|
1758
|
+
}
|
1759
|
+
],
|
1760
|
+
imprv_unitprice: {
|
1761
|
+
cents: 587393,
|
1762
|
+
currency_iso: "USD"
|
1763
|
+
},
|
1764
|
+
instrument_of_conveyance: "No",
|
1765
|
+
is_survey_or_plat_uploaded: "Yes",
|
1766
|
+
is_title_report_uploaded: "No",
|
1767
|
+
land_use_ordinance: "Yes",
|
1768
|
+
land_use_zone: "Agriculture",
|
1769
|
+
landclassifications: [
|
1770
|
+
{
|
1771
|
+
_id: "5515a4883238330007b60300",
|
1772
|
+
landclass: "Cropland-Pivot/Pipe Irrig",
|
1773
|
+
soilclass: "0",
|
1774
|
+
numacres: 139.75,
|
1775
|
+
priceperacre: {
|
1776
|
+
cents: 920000,
|
1777
|
+
currency_iso: "USD"
|
1778
|
+
}
|
1779
|
+
},
|
1780
|
+
{
|
1781
|
+
_id: "5515a4883238330007b70300",
|
1782
|
+
landclass: "Home/Building Site",
|
1783
|
+
soilclass: "0",
|
1784
|
+
numacres: 41.71,
|
1785
|
+
priceperacre: {
|
1786
|
+
cents: 920000,
|
1787
|
+
currency_iso: "USD"
|
1788
|
+
}
|
1789
|
+
},
|
1790
|
+
{
|
1791
|
+
_id: "5515a4883238330007b80300",
|
1792
|
+
landclass: "Roads/Waste",
|
1793
|
+
soilclass: "0",
|
1794
|
+
numacres: 2.5,
|
1795
|
+
priceperacre: {
|
1796
|
+
cents: 0,
|
1797
|
+
currency_iso: "USD"
|
1798
|
+
}
|
1799
|
+
}
|
1800
|
+
],
|
1801
|
+
legal_description: "Pt of Section 23",
|
1802
|
+
meridian: "Willamette",
|
1803
|
+
north_land: "Irrigated Cropland",
|
1804
|
+
num_of_units: 183.96,
|
1805
|
+
occupancy: "Owner-Operated",
|
1806
|
+
ordinance_authority: "Yakima County",
|
1807
|
+
owner_tenant_id: 4,
|
1808
|
+
position: [
|
1809
|
+
-119.973,
|
1810
|
+
46.287
|
1811
|
+
],
|
1812
|
+
primary_ag_use: "Other Primary Land Use",
|
1813
|
+
property_address_number: 0,
|
1814
|
+
property_improvement_comments: "The subject is a well improved dairy facility that is reported to accomodate roughly 1050 wet cattle. The property is a dry lot facility with lockups and a double 16 parlor in good condition. The milking parlor is concrete block, shades are pole and shops are metal clad. The property was in good condition as of my inspection in March 2015.",
|
1815
|
+
property_inclusions: [
|
1816
|
+
"Improved with Ag Use Improvements"
|
1817
|
+
],
|
1818
|
+
property_name: "Visser to Rollinger",
|
1819
|
+
property_rights: "Fee Simple",
|
1820
|
+
public_rec_ref_number: "437898",
|
1821
|
+
rangeINT: 4,
|
1822
|
+
readpermissions: 2,
|
1823
|
+
record_created_by: "Zac Moore",
|
1824
|
+
record_date: "2015-03-27T17:36:42.871Z",
|
1825
|
+
record_edited: "2015-03-27T18:51:31.017Z",
|
1826
|
+
record_modified_by: "Zac Moore",
|
1827
|
+
record_owned_by: 42,
|
1828
|
+
sale_adjustment: {
|
1829
|
+
cents: 0,
|
1830
|
+
currency_iso: "USD"
|
1831
|
+
},
|
1832
|
+
sale_adjustment_prefix: 1,
|
1833
|
+
sale_date: "2014-10-30T00:00:00Z",
|
1834
|
+
sale_price: {
|
1835
|
+
cents: 275000000,
|
1836
|
+
currency_iso: "USD"
|
1837
|
+
},
|
1838
|
+
secondary_ag_use: "Cropland-Pivot/Pipe Irrig",
|
1839
|
+
sequence: 1237,
|
1840
|
+
south_land: "Irrigated Cropland",
|
1841
|
+
state: 49,
|
1842
|
+
status: "SAVED",
|
1843
|
+
street_or_road_name: "Hornby Road",
|
1844
|
+
taxes: [
|
1845
|
+
{
|
1846
|
+
_id: "5515a4883238330007c60300",
|
1847
|
+
tax_parcel_no: "23090433001",
|
1848
|
+
assessed_value_land_only: {
|
1849
|
+
cents: 7750000,
|
1850
|
+
currency_iso: "USD"
|
1851
|
+
},
|
1852
|
+
assessed_value_improvements_only: {
|
1853
|
+
cents: 0,
|
1854
|
+
currency_iso: "USD"
|
1855
|
+
},
|
1856
|
+
assessed_value: {
|
1857
|
+
cents: 7750000,
|
1858
|
+
currency_iso: "USD"
|
1859
|
+
},
|
1860
|
+
RET: {
|
1861
|
+
cents: 33588,
|
1862
|
+
currency_iso: "USD"
|
1863
|
+
},
|
1864
|
+
numofunits: 24.22,
|
1865
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
1866
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
1867
|
+
},
|
1868
|
+
{
|
1869
|
+
_id: "5515a4883238330007c70300",
|
1870
|
+
tax_parcel_no: "23090534003",
|
1871
|
+
assessed_value_land_only: {
|
1872
|
+
cents: 11970000,
|
1873
|
+
currency_iso: "USD"
|
1874
|
+
},
|
1875
|
+
assessed_value_improvements_only: {
|
1876
|
+
cents: 0,
|
1877
|
+
currency_iso: "USD"
|
1878
|
+
},
|
1879
|
+
assessed_value: {
|
1880
|
+
cents: 11970000,
|
1881
|
+
currency_iso: "USD"
|
1882
|
+
},
|
1883
|
+
RET: {
|
1884
|
+
cents: 10777,
|
1885
|
+
currency_iso: "USD"
|
1886
|
+
},
|
1887
|
+
numofunits: 37.41,
|
1888
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
1889
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
1890
|
+
},
|
1891
|
+
{
|
1892
|
+
_id: "5515a4883238330007c80300",
|
1893
|
+
tax_parcel_no: "23090543001",
|
1894
|
+
assessed_value_land_only: {
|
1895
|
+
cents: 4490000,
|
1896
|
+
currency_iso: "USD"
|
1897
|
+
},
|
1898
|
+
assessed_value_improvements_only: {
|
1899
|
+
cents: 800000,
|
1900
|
+
currency_iso: "USD"
|
1901
|
+
},
|
1902
|
+
assessed_value: {
|
1903
|
+
cents: 5290000,
|
1904
|
+
currency_iso: "USD"
|
1905
|
+
},
|
1906
|
+
RET: {
|
1907
|
+
cents: 10619,
|
1908
|
+
currency_iso: "USD"
|
1909
|
+
},
|
1910
|
+
numofunits: 10.21,
|
1911
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
1912
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
1913
|
+
},
|
1914
|
+
{
|
1915
|
+
_id: "5515a4883238330007c90300",
|
1916
|
+
tax_parcel_no: "23090543003",
|
1917
|
+
assessed_value_land_only: {
|
1918
|
+
cents: 3680000,
|
1919
|
+
currency_iso: "USD"
|
1920
|
+
},
|
1921
|
+
assessed_value_improvements_only: {
|
1922
|
+
cents: 0,
|
1923
|
+
currency_iso: "USD"
|
1924
|
+
},
|
1925
|
+
assessed_value: {
|
1926
|
+
cents: 3680000,
|
1927
|
+
currency_iso: "USD"
|
1928
|
+
},
|
1929
|
+
RET: {
|
1930
|
+
cents: 3294,
|
1931
|
+
currency_iso: "USD"
|
1932
|
+
},
|
1933
|
+
numofunits: 4.7,
|
1934
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
1935
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
1936
|
+
},
|
1937
|
+
{
|
1938
|
+
_id: "5515a4883238330007ca0300",
|
1939
|
+
tax_parcel_no: "23090543004",
|
1940
|
+
assessed_value_land_only: {
|
1941
|
+
cents: 3750000,
|
1942
|
+
currency_iso: "USD"
|
1943
|
+
},
|
1944
|
+
assessed_value_improvements_only: {
|
1945
|
+
cents: 460000,
|
1946
|
+
currency_iso: "USD"
|
1947
|
+
},
|
1948
|
+
assessed_value: {
|
1949
|
+
cents: 4210000,
|
1950
|
+
currency_iso: "USD"
|
1951
|
+
},
|
1952
|
+
RET: {
|
1953
|
+
cents: 5574,
|
1954
|
+
currency_iso: "USD"
|
1955
|
+
},
|
1956
|
+
numofunits: 5.11,
|
1957
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
1958
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
1959
|
+
},
|
1960
|
+
{
|
1961
|
+
_id: "5515a4883238330007cb0300",
|
1962
|
+
tax_parcel_no: "23090543005",
|
1963
|
+
assessed_value_land_only: {
|
1964
|
+
cents: 3790000,
|
1965
|
+
currency_iso: "USD"
|
1966
|
+
},
|
1967
|
+
assessed_value_improvements_only: {
|
1968
|
+
cents: 500000,
|
1969
|
+
currency_iso: "USD"
|
1970
|
+
},
|
1971
|
+
assessed_value: {
|
1972
|
+
cents: 4290000,
|
1973
|
+
currency_iso: "USD"
|
1974
|
+
},
|
1975
|
+
RET: {
|
1976
|
+
cents: 5942,
|
1977
|
+
currency_iso: "USD"
|
1978
|
+
},
|
1979
|
+
numofunits: 5.39,
|
1980
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
1981
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
1982
|
+
},
|
1983
|
+
{
|
1984
|
+
_id: "5515a4883238330007cc0300",
|
1985
|
+
tax_parcel_no: "23090543006",
|
1986
|
+
assessed_value_land_only: {
|
1987
|
+
cents: 4530000,
|
1988
|
+
currency_iso: "USD"
|
1989
|
+
},
|
1990
|
+
assessed_value_improvements_only: {
|
1991
|
+
cents: 1640000,
|
1992
|
+
currency_iso: "USD"
|
1993
|
+
},
|
1994
|
+
assessed_value: {
|
1995
|
+
cents: 6170000,
|
1996
|
+
currency_iso: "USD"
|
1997
|
+
},
|
1998
|
+
RET: {
|
1999
|
+
cents: 14891,
|
2000
|
+
currency_iso: "USD"
|
2001
|
+
},
|
2002
|
+
numofunits: 2.93,
|
2003
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
2004
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
2005
|
+
},
|
2006
|
+
{
|
2007
|
+
_id: "5515a4883238330007cd0300",
|
2008
|
+
tax_parcel_no: "23090813005",
|
2009
|
+
assessed_value_land_only: {
|
2010
|
+
cents: 7540000,
|
2011
|
+
currency_iso: "USD"
|
2012
|
+
},
|
2013
|
+
assessed_value_improvements_only: {
|
2014
|
+
cents: 0,
|
2015
|
+
currency_iso: "USD"
|
2016
|
+
},
|
2017
|
+
assessed_value: {
|
2018
|
+
cents: 7540000,
|
2019
|
+
currency_iso: "USD"
|
2020
|
+
},
|
2021
|
+
RET: {
|
2022
|
+
cents: 16508,
|
2023
|
+
currency_iso: "USD"
|
2024
|
+
},
|
2025
|
+
numofunits: 23.57,
|
2026
|
+
updated_at: "2015-03-27T18:42:16.749Z",
|
2027
|
+
created_at: "2015-03-27T18:42:16.749Z"
|
2028
|
+
},
|
2029
|
+
{
|
2030
|
+
_id: "5515a4883238330007ce0300",
|
2031
|
+
tax_parcel_no: "23090821002",
|
2032
|
+
assessed_value_land_only: {
|
2033
|
+
cents: 2870000,
|
2034
|
+
currency_iso: "USD"
|
2035
|
+
},
|
2036
|
+
assessed_value_improvements_only: {
|
2037
|
+
cents: 0,
|
2038
|
+
currency_iso: "USD"
|
2039
|
+
},
|
2040
|
+
assessed_value: {
|
2041
|
+
cents: 2870000,
|
2042
|
+
currency_iso: "USD"
|
2043
|
+
},
|
2044
|
+
RET: {
|
2045
|
+
cents: 5116,
|
2046
|
+
currency_iso: "USD"
|
2047
|
+
},
|
2048
|
+
numofunits: 1.54,
|
2049
|
+
updated_at: "2015-03-27T18:42:16.750Z",
|
2050
|
+
created_at: "2015-03-27T18:42:16.750Z"
|
2051
|
+
},
|
2052
|
+
{
|
2053
|
+
_id: "5515a4883238330007cf0300",
|
2054
|
+
tax_parcel_no: "23090821004",
|
2055
|
+
assessed_value_land_only: {
|
2056
|
+
cents: 10660000,
|
2057
|
+
currency_iso: "USD"
|
2058
|
+
},
|
2059
|
+
assessed_value_improvements_only: {
|
2060
|
+
cents: 24720000,
|
2061
|
+
currency_iso: "USD"
|
2062
|
+
},
|
2063
|
+
assessed_value: {
|
2064
|
+
cents: 35380000,
|
2065
|
+
currency_iso: "USD"
|
2066
|
+
},
|
2067
|
+
RET: {
|
2068
|
+
cents: 55126,
|
2069
|
+
currency_iso: "USD"
|
2070
|
+
},
|
2071
|
+
numofunits: 29.55,
|
2072
|
+
updated_at: "2015-03-27T18:42:16.750Z",
|
2073
|
+
created_at: "2015-03-27T18:42:16.750Z"
|
2074
|
+
},
|
2075
|
+
{
|
2076
|
+
_id: "5515a4883238330007d00300",
|
2077
|
+
tax_parcel_no: "23090821005",
|
2078
|
+
assessed_value_land_only: {
|
2079
|
+
cents: 4060000,
|
2080
|
+
currency_iso: "USD"
|
2081
|
+
},
|
2082
|
+
assessed_value_improvements_only: {
|
2083
|
+
cents: 19380000,
|
2084
|
+
currency_iso: "USD"
|
2085
|
+
},
|
2086
|
+
assessed_value: {
|
2087
|
+
cents: 23440000,
|
2088
|
+
currency_iso: "USD"
|
2089
|
+
},
|
2090
|
+
RET: {
|
2091
|
+
cents: 36878,
|
2092
|
+
currency_iso: "USD"
|
2093
|
+
},
|
2094
|
+
numofunits: 1.22,
|
2095
|
+
updated_at: "2015-03-27T18:42:16.750Z",
|
2096
|
+
created_at: "2015-03-27T18:42:16.750Z"
|
2097
|
+
},
|
2098
|
+
{
|
2099
|
+
_id: "5515a4883238330007d10300",
|
2100
|
+
tax_parcel_no: "23090821401",
|
2101
|
+
assessed_value_land_only: {
|
2102
|
+
cents: 2840000,
|
2103
|
+
currency_iso: "USD"
|
2104
|
+
},
|
2105
|
+
assessed_value_improvements_only: {
|
2106
|
+
cents: 0,
|
2107
|
+
currency_iso: "USD"
|
2108
|
+
},
|
2109
|
+
assessed_value: {
|
2110
|
+
cents: 2840000,
|
2111
|
+
currency_iso: "USD"
|
2112
|
+
},
|
2113
|
+
RET: {
|
2114
|
+
cents: 5062,
|
2115
|
+
currency_iso: "USD"
|
2116
|
+
},
|
2117
|
+
numofunits: 1.45,
|
2118
|
+
updated_at: "2015-03-27T18:42:16.750Z",
|
2119
|
+
created_at: "2015-03-27T18:42:16.750Z"
|
2120
|
+
},
|
2121
|
+
{
|
2122
|
+
_id: "5515a4883238330007d20300",
|
2123
|
+
tax_parcel_no: "23090821402",
|
2124
|
+
assessed_value_land_only: {
|
2125
|
+
cents: 7140000,
|
2126
|
+
currency_iso: "USD"
|
2127
|
+
},
|
2128
|
+
assessed_value_improvements_only: {
|
2129
|
+
cents: 7760000,
|
2130
|
+
currency_iso: "USD"
|
2131
|
+
},
|
2132
|
+
assessed_value: {
|
2133
|
+
cents: 14900000,
|
2134
|
+
currency_iso: "USD"
|
2135
|
+
},
|
2136
|
+
RET: {
|
2137
|
+
cents: 26844,
|
2138
|
+
currency_iso: "USD"
|
2139
|
+
},
|
2140
|
+
numofunits: 16.5,
|
2141
|
+
updated_at: "2015-03-27T18:42:16.750Z",
|
2142
|
+
created_at: "2015-03-27T18:42:16.750Z"
|
2143
|
+
},
|
2144
|
+
{
|
2145
|
+
_id: "5515a4883238330007d30300",
|
2146
|
+
tax_parcel_no: "23090822005",
|
2147
|
+
assessed_value_land_only: {
|
2148
|
+
cents: 6450000,
|
2149
|
+
currency_iso: "USD"
|
2150
|
+
},
|
2151
|
+
assessed_value_improvements_only: {
|
2152
|
+
cents: 4860000,
|
2153
|
+
currency_iso: "USD"
|
2154
|
+
},
|
2155
|
+
assessed_value: {
|
2156
|
+
cents: 11310000,
|
2157
|
+
currency_iso: "USD"
|
2158
|
+
},
|
2159
|
+
RET: {
|
2160
|
+
cents: 13223,
|
2161
|
+
currency_iso: "USD"
|
2162
|
+
},
|
2163
|
+
numofunits: 20.16,
|
2164
|
+
updated_at: "2015-03-27T18:42:16.750Z",
|
2165
|
+
created_at: "2015-03-27T18:42:16.750Z"
|
2166
|
+
}
|
2167
|
+
],
|
2168
|
+
thumbnailname: "IMG_3481.JPG",
|
2169
|
+
total_RET: "2434.42",
|
2170
|
+
total_assessed_value: "1416400.00",
|
2171
|
+
total_imprv_budget: {
|
2172
|
+
cents: 108056800,
|
2173
|
+
currency_iso: "USD"
|
2174
|
+
},
|
2175
|
+
townshipINT: 9,
|
2176
|
+
type_of_transaction: "Closed Sale",
|
2177
|
+
unit: "Cow/Calf",
|
2178
|
+
updated_at: "2015-03-27T18:51:33.214Z",
|
2179
|
+
verification_comments: "Information was verified indirectly via several routes. Price was verified at the County while capacity was verified by local realtor as well as inspection of the parlor by the appraiser.",
|
2180
|
+
verification_guarantor: "Zac Moore, MAI",
|
2181
|
+
verifications: [
|
2182
|
+
"Personally inspected the property",
|
2183
|
+
"County Assessor",
|
2184
|
+
"MLS, Loopnet or CoStar or similar services"
|
2185
|
+
],
|
2186
|
+
version: 94,
|
2187
|
+
water_rights_comment: "The subject has access to SVID rights, as do lands all around the subject. Current cost of SVID water is $104.50/acre of land.",
|
2188
|
+
websoilrep_uploaded: "Yes",
|
2189
|
+
west_land: "Irrigated Cropland",
|
2190
|
+
wetlands: "No",
|
2191
|
+
year_of_assessment: 2015,
|
2192
|
+
year_of_real_estate_taxes: 2014
|
2193
|
+
}
|
2194
|
+
|
2195
|
+
end
|
1422
2196
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appraisermetrics_report_service
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- StackPoint
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ttfunk
|
@@ -210,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
210
|
version: '0'
|
211
211
|
requirements: []
|
212
212
|
rubyforge_project:
|
213
|
-
rubygems_version: 2.
|
213
|
+
rubygems_version: 2.2.2
|
214
214
|
signing_key:
|
215
215
|
specification_version: 4
|
216
216
|
summary: '["A service to generate pdf reports"]'
|