casperreports 0.0.4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/casper_reports.rb +4 -3
- data/readme.md +20 -11
- data/spec/casper_reports_spec.rb +2 -2
- metadata +4 -6
- data/include/patients.xml +0 -1157
- data/include/test.rb +0 -8
- data/include/testreport.jrxml +0 -61
data/lib/casper_reports.rb
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
# Example:
|
10
10
|
#
|
11
11
|
# c = Casper.new
|
12
|
-
# pdf_data = c.compile open('text.jrxml'), open('data.xml'), '//node'
|
12
|
+
# pdf_data = c.compile open('text.jrxml'), open('data.xml'), '//node', 'pdf'
|
13
13
|
# open('mypdf.pdf', 'wb').write pdf_data
|
14
14
|
|
15
15
|
# Requirements
|
@@ -29,9 +29,10 @@ $CLASSPATH << File.join(File.dirname(__FILE__), '..', 'include')
|
|
29
29
|
|
30
30
|
# Provide a simple class interface to running a jasper report
|
31
31
|
class CasperReports
|
32
|
+
VERSION = '0.1.0'
|
32
33
|
|
33
|
-
def compile(jrxml, data, xpath, type)
|
34
|
+
def compile(jrxml, data, xpath, type='pdf')
|
34
35
|
String.from_java_bytes(Java::XmlDataReportProducer.compile(jrxml, data, xpath, type))
|
35
36
|
end
|
36
37
|
|
37
|
-
end
|
38
|
+
end
|
data/readme.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
-
#
|
1
|
+
# CasperReports
|
2
2
|
|
3
|
-
|
3
|
+
V 0.1.0
|
4
|
+
|
5
|
+
Casper wraps a jRuby sheet over the jasper reporting engineto make it
|
6
|
+
more ruby friendly. Just like your friendly ghost :-)
|
4
7
|
|
5
|
-
Is a jruby library that takes a jrxml document, a xmldocument, and a xpath selection string, to create a pdf report.
|
6
8
|
|
7
9
|
# Requirements
|
8
10
|
|
@@ -14,16 +16,18 @@ This gem requires jruby > 1.6.0
|
|
14
16
|
gem install casperreports
|
15
17
|
```
|
16
18
|
|
17
|
-
# Input
|
19
|
+
# Input Paramters
|
18
20
|
|
19
|
-
* JasperReport Template or jrxml file
|
20
|
-
* Xml Data
|
21
|
-
* XPath Selection
|
22
|
-
*
|
21
|
+
* JasperReport Template or jrxml file (String of XML)
|
22
|
+
* Xml Data (String of XML)
|
23
|
+
* XPath Selection (String)
|
24
|
+
* Type ('pdf','xls')
|
23
25
|
|
24
|
-
#
|
26
|
+
# How does it work?
|
25
27
|
|
26
|
-
Casper will use the JasperReports library to
|
28
|
+
Casper will use the JasperReports library to take the two xml documents
|
29
|
+
along with the filter string to build a jasper report return the report
|
30
|
+
as a pdf or xls, based on the type parameter.
|
27
31
|
|
28
32
|
# Output
|
29
33
|
|
@@ -31,9 +35,14 @@ A pdf document in string of bytes
|
|
31
35
|
|
32
36
|
# Usage Examples
|
33
37
|
|
38
|
+
``` ruby
|
39
|
+
|
40
|
+
require 'casper_reports'
|
41
|
+
|
34
42
|
movie_jrxml = open('moviereport.jrxml').read
|
35
43
|
movies = open('movies.xml').read
|
36
44
|
|
37
|
-
pdf_string = Casper.new.compile(movie_jrxml, movies, '//movie'
|
45
|
+
pdf_string = Casper.new.compile(movie_jrxml, movies, '//movie')
|
38
46
|
open('movie.pdf', 'wb').write(pdf_string)
|
39
47
|
|
48
|
+
```
|
data/spec/casper_reports_spec.rb
CHANGED
@@ -6,6 +6,6 @@ describe CasperReports do
|
|
6
6
|
jrxml = open(File.join(File.dirname(__FILE__), 'data','testreport.jrxml')).read
|
7
7
|
xmldata = open(File.join(File.dirname(__FILE__), 'data','patients.xml')).read
|
8
8
|
#open('test.pdf', 'wb').write subject.compile(jrxml, xmldata, '//patient')
|
9
|
-
subject.compile(jrxml, xmldata, '//patient'
|
9
|
+
subject.compile(jrxml, xmldata, '//patient').length.should > 1000
|
10
10
|
end
|
11
|
-
end
|
11
|
+
end
|
metadata
CHANGED
@@ -2,15 +2,16 @@
|
|
2
2
|
name: casperreports
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0
|
5
|
+
version: 0.1.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Tom Wilson
|
9
|
+
- Daniel Tamiosso
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
13
|
|
13
|
-
date: 2011-06-
|
14
|
+
date: 2011-06-27 00:00:00 -04:00
|
14
15
|
default_executable:
|
15
16
|
dependencies:
|
16
17
|
- !ruby/object:Gem::Dependency
|
@@ -24,7 +25,7 @@ dependencies:
|
|
24
25
|
version: 2.5.0
|
25
26
|
type: :development
|
26
27
|
version_requirements: *id001
|
27
|
-
description: "A simple library that allows you to send a jrxml document, xml document, and
|
28
|
+
description: "A simple library that allows you to send a jrxml document, xml document, selector, and type ('pdf','xls') to generate a jaspser report. "
|
28
29
|
email:
|
29
30
|
- tom@jackhq.com
|
30
31
|
executables: []
|
@@ -35,9 +36,6 @@ extra_rdoc_files: []
|
|
35
36
|
|
36
37
|
files:
|
37
38
|
- lib/casper_reports.rb
|
38
|
-
- include/patients.xml
|
39
|
-
- include/test.rb
|
40
|
-
- include/testreport.jrxml
|
41
39
|
- include/XmlDataReportProducer.class
|
42
40
|
- include/XmlDataReportProducer.java
|
43
41
|
- include/dist/jasperreports-4.0.1.jar
|
data/include/patients.xml
DELETED
@@ -1,1157 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<patients type="array">
|
3
|
-
<patient>
|
4
|
-
<address>01634 Norberto Park</address>
|
5
|
-
<caregiver-first-name>Maya</caregiver-first-name>
|
6
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
7
|
-
<city>Port Kiratown</city>
|
8
|
-
<slug>TurnerDougFri Sep 21 00:00:00 UTC 1934female</slug>
|
9
|
-
<status-history type="array">
|
10
|
-
<status-history>
|
11
|
-
<changed-by type="integer">3</changed-by>
|
12
|
-
<current-status>Nursing Home</current-status>
|
13
|
-
<changed-at type="datetime">2011-01-21T09:03:16-08:00</changed-at>
|
14
|
-
</status-history>
|
15
|
-
<status-history>
|
16
|
-
<changed-by type="integer">3</changed-by>
|
17
|
-
<current-status>HOSPITAL</current-status>
|
18
|
-
<changed-at type="datetime">2011-01-21T09:09:01-08:00</changed-at>
|
19
|
-
</status-history>
|
20
|
-
<status-history>
|
21
|
-
<changed-by type="integer">3</changed-by>
|
22
|
-
<current-status>Vacation</current-status>
|
23
|
-
<changed-at type="datetime">2011-01-21T09:09:20-08:00</changed-at>
|
24
|
-
</status-history>
|
25
|
-
<status-history>
|
26
|
-
<changed-by type="integer">1</changed-by>
|
27
|
-
<current-status>Assisted Living Facility</current-status>
|
28
|
-
<changed-at type="datetime">2011-01-21T09:21:37-08:00</changed-at>
|
29
|
-
</status-history>
|
30
|
-
<status-history>
|
31
|
-
<changed-by type="integer">3</changed-by>
|
32
|
-
<current-status>HOME Pre-pour</current-status>
|
33
|
-
<changed-at type="datetime">2011-01-21T10:16:40-08:00</changed-at>
|
34
|
-
</status-history>
|
35
|
-
<status-history>
|
36
|
-
<changed-by type="integer">3</changed-by>
|
37
|
-
<current-status>Vacation</current-status>
|
38
|
-
<changed-at type="datetime">2011-01-21T10:16:57-08:00</changed-at>
|
39
|
-
</status-history>
|
40
|
-
<status-history>
|
41
|
-
<changed-by type="integer">3</changed-by>
|
42
|
-
<current-status>HOME Independent</current-status>
|
43
|
-
<changed-at type="datetime">2011-01-21T10:26:30-08:00</changed-at>
|
44
|
-
</status-history>
|
45
|
-
<status-history>
|
46
|
-
<changed-by type="integer">64</changed-by>
|
47
|
-
<current-status>Vacation</current-status>
|
48
|
-
<changed-at type="datetime">2011-01-28T09:24:38-08:00</changed-at>
|
49
|
-
</status-history>
|
50
|
-
<status-history>
|
51
|
-
<changed-by type="integer">3</changed-by>
|
52
|
-
<current-status>Assisted Living Facility</current-status>
|
53
|
-
<changed-at type="datetime">2011-01-31T14:13:11-08:00</changed-at>
|
54
|
-
</status-history>
|
55
|
-
<status-history>
|
56
|
-
<changed-by type="integer">3</changed-by>
|
57
|
-
<current-status>HOME CareGiver</current-status>
|
58
|
-
<changed-at type="datetime">2011-01-31T14:13:21-08:00</changed-at>
|
59
|
-
</status-history>
|
60
|
-
</status-history>
|
61
|
-
<work-phone>031-036-4482</work-phone>
|
62
|
-
<address2>Apt. 522</address2>
|
63
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
64
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
65
|
-
<caffine-use>More than 2 a day</caffine-use>
|
66
|
-
<created-at type="datetime">2011-01-09T21:44:24-05:00</created-at>
|
67
|
-
<dob type="datetime">1934-09-20T20:00:00-04:00</dob>
|
68
|
-
<ma-control-no>7697951256</ma-control-no>
|
69
|
-
<zip>70211-7746</zip>
|
70
|
-
<caregiver-phone>762-392-6564</caregiver-phone>
|
71
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
72
|
-
<enrollment-date type="datetime">2011-01-08T00:00:00-05:00</enrollment-date>
|
73
|
-
<esrd type="boolean">false</esrd>
|
74
|
-
<ethnicity>Caucasian</ethnicity>
|
75
|
-
<background></background>
|
76
|
-
<discharge-reason nil="true"></discharge-reason>
|
77
|
-
<has-allergies type="integer">1</has-allergies>
|
78
|
-
<insurance-status>Private pay</insurance-status>
|
79
|
-
<ssn>080-74-5944</ssn>
|
80
|
-
<updated-at type="datetime">2011-04-15T10:42:10-04:00</updated-at>
|
81
|
-
<activity>Does not excercise</activity>
|
82
|
-
<alcohol-use>Drinks Socially</alcohol-use>
|
83
|
-
<language>English</language>
|
84
|
-
<salutation nil="true"></salutation>
|
85
|
-
<weight>450</weight>
|
86
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
87
|
-
<caregiver-last-name>Treutel</caregiver-last-name>
|
88
|
-
<facility></facility>
|
89
|
-
<gender>female</gender>
|
90
|
-
<home-phone>351-952-0735</home-phone>
|
91
|
-
<id type="integer">283</id>
|
92
|
-
<lng>-79.9396514</lng>
|
93
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
94
|
-
<cell-phone>047-699-4877</cell-phone>
|
95
|
-
<current-status>HOME CareGiver</current-status>
|
96
|
-
<mi></mi>
|
97
|
-
<height>72</height>
|
98
|
-
<last-name>Turner</last-name>
|
99
|
-
<medicare-no>414026695</medicare-no>
|
100
|
-
<serum-creatinine></serum-creatinine>
|
101
|
-
<care-type nil="true"></care-type>
|
102
|
-
<discharge-comments nil="true"></discharge-comments>
|
103
|
-
<religion>Catholic</religion>
|
104
|
-
<residence>Home</residence>
|
105
|
-
<suffix></suffix>
|
106
|
-
<workflow-state>active</workflow-state>
|
107
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
108
|
-
<lat>32.7776107</lat>
|
109
|
-
<marital-status nil="true"></marital-status>
|
110
|
-
<tobacco-use>1 - 2 packs a day</tobacco-use>
|
111
|
-
<caregiver-cell>166-320-0976</caregiver-cell>
|
112
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
113
|
-
<email>sibyl_brekke@hansenrau.info</email>
|
114
|
-
<first-name>Doug</first-name>
|
115
|
-
<state>SD</state>
|
116
|
-
</patient>
|
117
|
-
<patient>
|
118
|
-
<address>68111 Johns Bypass</address>
|
119
|
-
<caregiver-first-name>Dortha</caregiver-first-name>
|
120
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
121
|
-
<city>Theodorestad</city>
|
122
|
-
<slug>777477784182653145091137081</slug>
|
123
|
-
<status-history type="yaml" nil="true"></status-history>
|
124
|
-
<work-phone>061-898-8442</work-phone>
|
125
|
-
<address2>Suite 874</address2>
|
126
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
127
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
128
|
-
<caffine-use></caffine-use>
|
129
|
-
<created-at type="datetime">2010-12-23T15:47:50-05:00</created-at>
|
130
|
-
<dob type="datetime">1930-05-08T20:00:00-04:00</dob>
|
131
|
-
<ma-control-no>6103340610</ma-control-no>
|
132
|
-
<zip>59704</zip>
|
133
|
-
<caregiver-phone>504-169-6658</caregiver-phone>
|
134
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
135
|
-
<enrollment-date type="datetime">2009-07-31T00:00:00-04:00</enrollment-date>
|
136
|
-
<esrd type="boolean">false</esrd>
|
137
|
-
<ethnicity>African American</ethnicity>
|
138
|
-
<background></background>
|
139
|
-
<discharge-reason nil="true"></discharge-reason>
|
140
|
-
<has-allergies type="integer">2</has-allergies>
|
141
|
-
<insurance-status>Dual eligible</insurance-status>
|
142
|
-
<ssn>262-09-0906</ssn>
|
143
|
-
<updated-at type="datetime">2011-03-09T10:27:07-05:00</updated-at>
|
144
|
-
<activity></activity>
|
145
|
-
<alcohol-use></alcohol-use>
|
146
|
-
<language>English</language>
|
147
|
-
<salutation nil="true"></salutation>
|
148
|
-
<weight></weight>
|
149
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
150
|
-
<caregiver-last-name>Robel</caregiver-last-name>
|
151
|
-
<facility></facility>
|
152
|
-
<gender>male</gender>
|
153
|
-
<home-phone>363-446-9526</home-phone>
|
154
|
-
<id type="integer">174</id>
|
155
|
-
<lng>-75.089505</lng>
|
156
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
157
|
-
<cell-phone>715-195-7370</cell-phone>
|
158
|
-
<current-status>HOME Independent</current-status>
|
159
|
-
<mi></mi>
|
160
|
-
<height></height>
|
161
|
-
<last-name>Rolfson</last-name>
|
162
|
-
<medicare-no>674664568</medicare-no>
|
163
|
-
<serum-creatinine></serum-creatinine>
|
164
|
-
<care-type nil="true"></care-type>
|
165
|
-
<discharge-comments nil="true"></discharge-comments>
|
166
|
-
<religion></religion>
|
167
|
-
<residence></residence>
|
168
|
-
<suffix></suffix>
|
169
|
-
<workflow-state>active</workflow-state>
|
170
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
171
|
-
<lat>39.944911</lat>
|
172
|
-
<marital-status nil="true"></marital-status>
|
173
|
-
<tobacco-use></tobacco-use>
|
174
|
-
<caregiver-cell>443-292-4728</caregiver-cell>
|
175
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
176
|
-
<email>adella.haag@nitzscheherman.info</email>
|
177
|
-
<first-name>Alex</first-name>
|
178
|
-
<state>IN</state>
|
179
|
-
</patient>
|
180
|
-
<patient>
|
181
|
-
<address>2586 Kuhlman Centers</address>
|
182
|
-
<caregiver-first-name>Jonathan</caregiver-first-name>
|
183
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
184
|
-
<city>North Clareton</city>
|
185
|
-
<slug>943188456259960871223007849</slug>
|
186
|
-
<status-history type="yaml" nil="true"></status-history>
|
187
|
-
<work-phone>620-281-1388</work-phone>
|
188
|
-
<address2>Apt. 767</address2>
|
189
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
190
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
191
|
-
<caffine-use></caffine-use>
|
192
|
-
<created-at type="datetime">2010-12-23T15:53:32-05:00</created-at>
|
193
|
-
<dob type="datetime">1931-07-02T20:00:00-04:00</dob>
|
194
|
-
<ma-control-no>7091396840</ma-control-no>
|
195
|
-
<zip>40970</zip>
|
196
|
-
<caregiver-phone>309-595-0686</caregiver-phone>
|
197
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
198
|
-
<enrollment-date type="datetime">2009-07-31T20:00:00-04:00</enrollment-date>
|
199
|
-
<esrd type="boolean">false</esrd>
|
200
|
-
<ethnicity>African American</ethnicity>
|
201
|
-
<background></background>
|
202
|
-
<discharge-reason nil="true"></discharge-reason>
|
203
|
-
<has-allergies type="integer">1</has-allergies>
|
204
|
-
<insurance-status>Dual eligible</insurance-status>
|
205
|
-
<ssn>141-09-2898</ssn>
|
206
|
-
<updated-at type="datetime">2011-03-09T10:24:48-05:00</updated-at>
|
207
|
-
<activity></activity>
|
208
|
-
<alcohol-use></alcohol-use>
|
209
|
-
<language>English</language>
|
210
|
-
<salutation nil="true"></salutation>
|
211
|
-
<weight></weight>
|
212
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
213
|
-
<caregiver-last-name>Kling</caregiver-last-name>
|
214
|
-
<facility></facility>
|
215
|
-
<gender>female</gender>
|
216
|
-
<home-phone>292-815-2445</home-phone>
|
217
|
-
<id type="integer">183</id>
|
218
|
-
<lng>-75.089505</lng>
|
219
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
220
|
-
<cell-phone>522-558-8342</cell-phone>
|
221
|
-
<current-status>HOME CareGiver</current-status>
|
222
|
-
<mi></mi>
|
223
|
-
<height></height>
|
224
|
-
<last-name>Schowalter</last-name>
|
225
|
-
<medicare-no>222420377</medicare-no>
|
226
|
-
<serum-creatinine></serum-creatinine>
|
227
|
-
<care-type nil="true"></care-type>
|
228
|
-
<discharge-comments nil="true"></discharge-comments>
|
229
|
-
<religion></religion>
|
230
|
-
<residence></residence>
|
231
|
-
<suffix></suffix>
|
232
|
-
<workflow-state>active</workflow-state>
|
233
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
234
|
-
<lat>39.944911</lat>
|
235
|
-
<marital-status nil="true"></marital-status>
|
236
|
-
<tobacco-use></tobacco-use>
|
237
|
-
<caregiver-cell>800-641-6038</caregiver-cell>
|
238
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
239
|
-
<email>carlee.oconner@lesch.name</email>
|
240
|
-
<first-name>Raven</first-name>
|
241
|
-
<state>IA</state>
|
242
|
-
</patient>
|
243
|
-
<patient>
|
244
|
-
<address>40709 Grace Rest</address>
|
245
|
-
<caregiver-first-name>Magdalen</caregiver-first-name>
|
246
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
247
|
-
<city>South Reba</city>
|
248
|
-
<slug>595101953471790683941829146</slug>
|
249
|
-
<status-history type="yaml" nil="true"></status-history>
|
250
|
-
<work-phone>513-781-9970</work-phone>
|
251
|
-
<address2>Suite 001</address2>
|
252
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
253
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
254
|
-
<caffine-use></caffine-use>
|
255
|
-
<created-at type="datetime">2010-12-23T15:29:39-05:00</created-at>
|
256
|
-
<dob type="datetime">1952-03-04T19:00:00-05:00</dob>
|
257
|
-
<ma-control-no>7545690167</ma-control-no>
|
258
|
-
<zip>44906-0461</zip>
|
259
|
-
<caregiver-phone>783-867-3431</caregiver-phone>
|
260
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
261
|
-
<enrollment-date type="datetime">2010-08-31T20:00:00-04:00</enrollment-date>
|
262
|
-
<esrd type="boolean">false</esrd>
|
263
|
-
<ethnicity>Hispanic</ethnicity>
|
264
|
-
<background></background>
|
265
|
-
<discharge-reason nil="true"></discharge-reason>
|
266
|
-
<has-allergies type="integer">0</has-allergies>
|
267
|
-
<insurance-status>Medicaid only</insurance-status>
|
268
|
-
<ssn>794-73-8795</ssn>
|
269
|
-
<updated-at type="datetime">2011-03-09T10:23:10-05:00</updated-at>
|
270
|
-
<activity></activity>
|
271
|
-
<alcohol-use></alcohol-use>
|
272
|
-
<language></language>
|
273
|
-
<salutation nil="true"></salutation>
|
274
|
-
<weight></weight>
|
275
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
276
|
-
<caregiver-last-name>Mraz</caregiver-last-name>
|
277
|
-
<facility></facility>
|
278
|
-
<gender>male</gender>
|
279
|
-
<home-phone>176-067-3050</home-phone>
|
280
|
-
<id type="integer">156</id>
|
281
|
-
<lng>-75.084232</lng>
|
282
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
283
|
-
<cell-phone>428-991-6249</cell-phone>
|
284
|
-
<current-status>HOME CareGiver</current-status>
|
285
|
-
<mi></mi>
|
286
|
-
<height></height>
|
287
|
-
<last-name>Kulas</last-name>
|
288
|
-
<medicare-no>906298255</medicare-no>
|
289
|
-
<serum-creatinine></serum-creatinine>
|
290
|
-
<care-type nil="true"></care-type>
|
291
|
-
<discharge-comments nil="true"></discharge-comments>
|
292
|
-
<religion></religion>
|
293
|
-
<residence></residence>
|
294
|
-
<suffix></suffix>
|
295
|
-
<workflow-state>active</workflow-state>
|
296
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
297
|
-
<lat>39.949404</lat>
|
298
|
-
<marital-status nil="true"></marital-status>
|
299
|
-
<tobacco-use></tobacco-use>
|
300
|
-
<caregiver-cell>328-442-3706</caregiver-cell>
|
301
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
302
|
-
<email>ashleigh.schultz@casper.org</email>
|
303
|
-
<first-name>Vivienne</first-name>
|
304
|
-
<state>FM</state>
|
305
|
-
</patient>
|
306
|
-
<patient>
|
307
|
-
<address>1933 Saige Forest</address>
|
308
|
-
<caregiver-first-name>Wilton</caregiver-first-name>
|
309
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
310
|
-
<city>East Tamara</city>
|
311
|
-
<slug>248927070074174504361951475</slug>
|
312
|
-
<status-history type="yaml" nil="true"></status-history>
|
313
|
-
<work-phone>154-322-8594</work-phone>
|
314
|
-
<address2>Apt. 239</address2>
|
315
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
316
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
317
|
-
<caffine-use></caffine-use>
|
318
|
-
<created-at type="datetime">2010-12-23T15:27:39-05:00</created-at>
|
319
|
-
<dob type="datetime">1949-04-13T19:00:00-05:00</dob>
|
320
|
-
<ma-control-no>6859433500</ma-control-no>
|
321
|
-
<zip>87674-8902</zip>
|
322
|
-
<caregiver-phone>637-504-3569</caregiver-phone>
|
323
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
324
|
-
<enrollment-date type="datetime">2009-07-31T00:00:00-04:00</enrollment-date>
|
325
|
-
<esrd type="boolean">false</esrd>
|
326
|
-
<ethnicity>African American</ethnicity>
|
327
|
-
<background></background>
|
328
|
-
<discharge-reason nil="true"></discharge-reason>
|
329
|
-
<has-allergies type="integer">0</has-allergies>
|
330
|
-
<insurance-status>Medicaid only</insurance-status>
|
331
|
-
<ssn>728-90-6698</ssn>
|
332
|
-
<updated-at type="datetime">2011-03-09T10:13:09-05:00</updated-at>
|
333
|
-
<activity></activity>
|
334
|
-
<alcohol-use></alcohol-use>
|
335
|
-
<language>English</language>
|
336
|
-
<salutation nil="true"></salutation>
|
337
|
-
<weight></weight>
|
338
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
339
|
-
<caregiver-last-name>Rippin</caregiver-last-name>
|
340
|
-
<facility></facility>
|
341
|
-
<gender>female</gender>
|
342
|
-
<home-phone>285-374-4282</home-phone>
|
343
|
-
<id type="integer">154</id>
|
344
|
-
<lng>-75.0803697</lng>
|
345
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
346
|
-
<cell-phone>021-524-5557</cell-phone>
|
347
|
-
<current-status>HOME Independent</current-status>
|
348
|
-
<mi></mi>
|
349
|
-
<height></height>
|
350
|
-
<last-name>Becker</last-name>
|
351
|
-
<medicare-no>031394858</medicare-no>
|
352
|
-
<serum-creatinine></serum-creatinine>
|
353
|
-
<care-type nil="true"></care-type>
|
354
|
-
<discharge-comments nil="true"></discharge-comments>
|
355
|
-
<religion></religion>
|
356
|
-
<residence></residence>
|
357
|
-
<suffix></suffix>
|
358
|
-
<workflow-state>active</workflow-state>
|
359
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
360
|
-
<lat>39.9096696</lat>
|
361
|
-
<marital-status nil="true"></marital-status>
|
362
|
-
<tobacco-use></tobacco-use>
|
363
|
-
<caregiver-cell>989-935-1614</caregiver-cell>
|
364
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
365
|
-
<email>pat.vonrueden@witting.biz</email>
|
366
|
-
<first-name>Wilton</first-name>
|
367
|
-
<state>ND</state>
|
368
|
-
</patient>
|
369
|
-
<patient>
|
370
|
-
<address>51894 Jamarcus Plaza</address>
|
371
|
-
<caregiver-first-name>Jennie</caregiver-first-name>
|
372
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
373
|
-
<city>Fisherbury</city>
|
374
|
-
<slug>659225950869014698396925292</slug>
|
375
|
-
<status-history type="array">
|
376
|
-
<status-history>
|
377
|
-
<changed-by type="integer">64</changed-by>
|
378
|
-
<current-status>HOME Independent</current-status>
|
379
|
-
<changed-at type="datetime">2011-01-27T09:39:45-08:00</changed-at>
|
380
|
-
</status-history>
|
381
|
-
</status-history>
|
382
|
-
<work-phone>142-582-7561</work-phone>
|
383
|
-
<address2>Apt. 125</address2>
|
384
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
385
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
386
|
-
<caffine-use></caffine-use>
|
387
|
-
<created-at type="datetime">2010-12-10T14:32:52-05:00</created-at>
|
388
|
-
<dob type="datetime">1919-01-24T19:00:00-05:00</dob>
|
389
|
-
<ma-control-no>2055748520</ma-control-no>
|
390
|
-
<zip>50291-8170</zip>
|
391
|
-
<caregiver-phone>590-787-3179</caregiver-phone>
|
392
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
393
|
-
<enrollment-date type="datetime">2010-02-28T19:00:00-05:00</enrollment-date>
|
394
|
-
<esrd type="boolean">false</esrd>
|
395
|
-
<ethnicity>African American</ethnicity>
|
396
|
-
<background></background>
|
397
|
-
<discharge-reason nil="true"></discharge-reason>
|
398
|
-
<has-allergies type="integer">2</has-allergies>
|
399
|
-
<insurance-status>Dual eligible</insurance-status>
|
400
|
-
<ssn>865-42-2337</ssn>
|
401
|
-
<updated-at type="datetime">2011-03-09T09:55:53-05:00</updated-at>
|
402
|
-
<activity></activity>
|
403
|
-
<alcohol-use></alcohol-use>
|
404
|
-
<language>English</language>
|
405
|
-
<salutation nil="true"></salutation>
|
406
|
-
<weight></weight>
|
407
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
408
|
-
<caregiver-last-name>Boyer</caregiver-last-name>
|
409
|
-
<facility></facility>
|
410
|
-
<gender>male</gender>
|
411
|
-
<home-phone>627-221-4822</home-phone>
|
412
|
-
<id type="integer">108</id>
|
413
|
-
<lng>-74.766841</lng>
|
414
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
415
|
-
<cell-phone>768-893-0999</cell-phone>
|
416
|
-
<current-status>HOME Independent</current-status>
|
417
|
-
<mi></mi>
|
418
|
-
<height></height>
|
419
|
-
<last-name>Bergstrom</last-name>
|
420
|
-
<medicare-no>899608533</medicare-no>
|
421
|
-
<serum-creatinine></serum-creatinine>
|
422
|
-
<care-type nil="true"></care-type>
|
423
|
-
<discharge-comments nil="true"></discharge-comments>
|
424
|
-
<religion></religion>
|
425
|
-
<residence>Home</residence>
|
426
|
-
<suffix></suffix>
|
427
|
-
<workflow-state>active</workflow-state>
|
428
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
429
|
-
<lat>40.225616</lat>
|
430
|
-
<marital-status nil="true"></marital-status>
|
431
|
-
<tobacco-use></tobacco-use>
|
432
|
-
<caregiver-cell>598-532-0089</caregiver-cell>
|
433
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
434
|
-
<email>roderick@kunde.biz</email>
|
435
|
-
<first-name>Nicole</first-name>
|
436
|
-
<state>DC</state>
|
437
|
-
</patient>
|
438
|
-
<patient>
|
439
|
-
<address>8909 Morar Mount</address>
|
440
|
-
<caregiver-first-name>Margarita</caregiver-first-name>
|
441
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
442
|
-
<city>South Baby</city>
|
443
|
-
<slug>923388664790385439173131855</slug>
|
444
|
-
<status-history type="array">
|
445
|
-
<status-history>
|
446
|
-
<changed-by type="integer">3</changed-by>
|
447
|
-
<current-status>HOME Independent</current-status>
|
448
|
-
<changed-at type="datetime">2011-01-21T09:05:40-08:00</changed-at>
|
449
|
-
</status-history>
|
450
|
-
<status-history>
|
451
|
-
<changed-by type="integer">1</changed-by>
|
452
|
-
<current-status>HOME CareGiver</current-status>
|
453
|
-
<changed-at type="datetime">2011-01-21T09:13:55-08:00</changed-at>
|
454
|
-
</status-history>
|
455
|
-
<status-history>
|
456
|
-
<changed-by type="integer">1</changed-by>
|
457
|
-
<current-status>HOME Independent</current-status>
|
458
|
-
<changed-at type="datetime">2011-01-21T09:15:04-08:00</changed-at>
|
459
|
-
</status-history>
|
460
|
-
<status-history>
|
461
|
-
<changed-by type="integer">1</changed-by>
|
462
|
-
<current-status>HOME Pre-pour</current-status>
|
463
|
-
<changed-at type="datetime">2011-01-21T09:15:23-08:00</changed-at>
|
464
|
-
</status-history>
|
465
|
-
<status-history>
|
466
|
-
<changed-by type="integer">1</changed-by>
|
467
|
-
<current-status>HOME Independent</current-status>
|
468
|
-
<changed-at type="datetime">2011-01-21T09:20:49-08:00</changed-at>
|
469
|
-
</status-history>
|
470
|
-
<status-history>
|
471
|
-
<changed-by type="integer">1</changed-by>
|
472
|
-
<current-status>HOSPITAL</current-status>
|
473
|
-
<changed-at type="datetime">2011-01-21T09:25:30-08:00</changed-at>
|
474
|
-
</status-history>
|
475
|
-
<status-history>
|
476
|
-
<changed-by type="integer">1</changed-by>
|
477
|
-
<current-status>HOME Independent</current-status>
|
478
|
-
<changed-at type="datetime">2011-01-21T09:27:40-08:00</changed-at>
|
479
|
-
</status-history>
|
480
|
-
<status-history>
|
481
|
-
<changed-by type="integer">3</changed-by>
|
482
|
-
<current-status>HOSPITAL</current-status>
|
483
|
-
<changed-at type="datetime">2011-01-21T09:54:20-08:00</changed-at>
|
484
|
-
</status-history>
|
485
|
-
<status-history>
|
486
|
-
<changed-by type="integer">3</changed-by>
|
487
|
-
<current-status>HOME Pre-pour</current-status>
|
488
|
-
<changed-at type="datetime">2011-01-21T09:57:28-08:00</changed-at>
|
489
|
-
</status-history>
|
490
|
-
<status-history>
|
491
|
-
<changed-by type="integer">3</changed-by>
|
492
|
-
<current-status>Vacation</current-status>
|
493
|
-
<changed-at type="datetime">2011-01-21T10:18:32-08:00</changed-at>
|
494
|
-
</status-history>
|
495
|
-
<status-history>
|
496
|
-
<changed-by type="integer">3</changed-by>
|
497
|
-
<current-status>HOSPITAL</current-status>
|
498
|
-
<changed-at type="datetime">2011-01-21T10:19:17-08:00</changed-at>
|
499
|
-
</status-history>
|
500
|
-
<status-history>
|
501
|
-
<changed-by type="integer">3</changed-by>
|
502
|
-
<current-status>Nursing Home</current-status>
|
503
|
-
<changed-at type="datetime">2011-01-21T10:19:24-08:00</changed-at>
|
504
|
-
</status-history>
|
505
|
-
<status-history>
|
506
|
-
<changed-by type="integer">3</changed-by>
|
507
|
-
<current-status>HOME Independent</current-status>
|
508
|
-
<changed-at type="datetime">2011-01-21T10:19:29-08:00</changed-at>
|
509
|
-
</status-history>
|
510
|
-
<status-history>
|
511
|
-
<changed-by type="integer">3</changed-by>
|
512
|
-
<current-status>Nursing Home</current-status>
|
513
|
-
<changed-at type="datetime">2011-01-21T10:19:39-08:00</changed-at>
|
514
|
-
</status-history>
|
515
|
-
<status-history>
|
516
|
-
<changed-by type="integer">3</changed-by>
|
517
|
-
<current-status>HOSPITAL</current-status>
|
518
|
-
<changed-at type="datetime">2011-01-21T10:19:51-08:00</changed-at>
|
519
|
-
</status-history>
|
520
|
-
<status-history>
|
521
|
-
<changed-by type="integer">3</changed-by>
|
522
|
-
<current-status>HOME Pre-pour</current-status>
|
523
|
-
<changed-at type="datetime">2011-01-21T10:20:52-08:00</changed-at>
|
524
|
-
</status-history>
|
525
|
-
<status-history>
|
526
|
-
<changed-by type="integer">3</changed-by>
|
527
|
-
<current-status>HOME CareGiver</current-status>
|
528
|
-
<changed-at type="datetime">2011-01-21T10:20:59-08:00</changed-at>
|
529
|
-
</status-history>
|
530
|
-
<status-history>
|
531
|
-
<changed-by type="integer">3</changed-by>
|
532
|
-
<current-status>Vacation</current-status>
|
533
|
-
<changed-at type="datetime">2011-01-21T10:21:04-08:00</changed-at>
|
534
|
-
</status-history>
|
535
|
-
<status-history>
|
536
|
-
<changed-by type="integer">3</changed-by>
|
537
|
-
<current-status>HOME CareGiver</current-status>
|
538
|
-
<changed-at type="datetime">2011-01-21T10:26:39-08:00</changed-at>
|
539
|
-
</status-history>
|
540
|
-
<status-history>
|
541
|
-
<changed-by type="integer">3</changed-by>
|
542
|
-
<current-status>HOSPITAL</current-status>
|
543
|
-
<changed-at type="datetime">2011-01-26T18:30:11-08:00</changed-at>
|
544
|
-
</status-history>
|
545
|
-
<status-history>
|
546
|
-
<changed-by type="integer">64</changed-by>
|
547
|
-
<current-status>HOME Independent</current-status>
|
548
|
-
<changed-at type="datetime">2011-01-27T13:04:59-08:00</changed-at>
|
549
|
-
</status-history>
|
550
|
-
<status-history>
|
551
|
-
<changed-by type="integer">2</changed-by>
|
552
|
-
<current-status>HOSPITAL</current-status>
|
553
|
-
<changed-at type="datetime">2011-01-31T09:14:40-08:00</changed-at>
|
554
|
-
</status-history>
|
555
|
-
</status-history>
|
556
|
-
<work-phone>991-556-0776</work-phone>
|
557
|
-
<address2>Suite 681</address2>
|
558
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
559
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
560
|
-
<caffine-use></caffine-use>
|
561
|
-
<created-at type="datetime">2011-01-13T17:05:13-05:00</created-at>
|
562
|
-
<dob type="datetime">2010-11-18T19:00:00-05:00</dob>
|
563
|
-
<ma-control-no>1055902804</ma-control-no>
|
564
|
-
<zip>03522-9141</zip>
|
565
|
-
<caregiver-phone>307-672-5562</caregiver-phone>
|
566
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
567
|
-
<enrollment-date type="datetime">2011-01-12T00:00:00-05:00</enrollment-date>
|
568
|
-
<esrd type="boolean">false</esrd>
|
569
|
-
<ethnicity>Caucasian</ethnicity>
|
570
|
-
<background></background>
|
571
|
-
<discharge-reason nil="true"></discharge-reason>
|
572
|
-
<has-allergies type="integer">0</has-allergies>
|
573
|
-
<insurance-status></insurance-status>
|
574
|
-
<ssn>297-81-4601</ssn>
|
575
|
-
<updated-at type="datetime">2011-03-09T09:43:16-05:00</updated-at>
|
576
|
-
<activity></activity>
|
577
|
-
<alcohol-use></alcohol-use>
|
578
|
-
<language>English</language>
|
579
|
-
<salutation nil="true"></salutation>
|
580
|
-
<weight></weight>
|
581
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
582
|
-
<caregiver-last-name>McCullough</caregiver-last-name>
|
583
|
-
<facility>pace test</facility>
|
584
|
-
<gender>female</gender>
|
585
|
-
<home-phone>658-096-4421</home-phone>
|
586
|
-
<id type="integer">288</id>
|
587
|
-
<lng>-74.7976</lng>
|
588
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
589
|
-
<cell-phone>070-298-3424</cell-phone>
|
590
|
-
<current-status>HOSPITAL</current-status>
|
591
|
-
<mi>A</mi>
|
592
|
-
<height></height>
|
593
|
-
<last-name>Kirlin</last-name>
|
594
|
-
<medicare-no>941606599</medicare-no>
|
595
|
-
<serum-creatinine></serum-creatinine>
|
596
|
-
<care-type nil="true"></care-type>
|
597
|
-
<discharge-comments nil="true"></discharge-comments>
|
598
|
-
<religion></religion>
|
599
|
-
<residence></residence>
|
600
|
-
<suffix></suffix>
|
601
|
-
<workflow-state>active</workflow-state>
|
602
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
603
|
-
<lat>39.9758</lat>
|
604
|
-
<marital-status nil="true"></marital-status>
|
605
|
-
<tobacco-use></tobacco-use>
|
606
|
-
<caregiver-cell>836-996-2683</caregiver-cell>
|
607
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
608
|
-
<email>kaycee_lockman@lueilwitz.net</email>
|
609
|
-
<first-name>Ethyl</first-name>
|
610
|
-
<state>MO</state>
|
611
|
-
</patient>
|
612
|
-
<patient>
|
613
|
-
<address>3606 Hosea Branch</address>
|
614
|
-
<caregiver-first-name>Ben</caregiver-first-name>
|
615
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
616
|
-
<city>North Kiel</city>
|
617
|
-
<slug>033726587156711358612477386</slug>
|
618
|
-
<status-history type="array">
|
619
|
-
<status-history>
|
620
|
-
<changed-by type="integer">64</changed-by>
|
621
|
-
<current-status>HOME Independent</current-status>
|
622
|
-
<changed-at type="datetime">2011-01-27T09:40:07-08:00</changed-at>
|
623
|
-
</status-history>
|
624
|
-
</status-history>
|
625
|
-
<work-phone>308-718-0099</work-phone>
|
626
|
-
<address2>Suite 815</address2>
|
627
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
628
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
629
|
-
<caffine-use></caffine-use>
|
630
|
-
<created-at type="datetime">2010-12-10T14:37:26-05:00</created-at>
|
631
|
-
<dob type="datetime">1950-08-08T20:00:00-04:00</dob>
|
632
|
-
<ma-control-no>8804226864</ma-control-no>
|
633
|
-
<zip>11107-4912</zip>
|
634
|
-
<caregiver-phone>011-628-8554</caregiver-phone>
|
635
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
636
|
-
<enrollment-date type="datetime">2010-09-30T20:00:00-04:00</enrollment-date>
|
637
|
-
<esrd type="boolean">false</esrd>
|
638
|
-
<ethnicity>African American</ethnicity>
|
639
|
-
<background></background>
|
640
|
-
<discharge-reason nil="true"></discharge-reason>
|
641
|
-
<has-allergies type="integer">0</has-allergies>
|
642
|
-
<insurance-status>Medicaid only</insurance-status>
|
643
|
-
<ssn>569-81-1399</ssn>
|
644
|
-
<updated-at type="datetime">2011-03-09T09:28:14-05:00</updated-at>
|
645
|
-
<activity></activity>
|
646
|
-
<alcohol-use></alcohol-use>
|
647
|
-
<language>English</language>
|
648
|
-
<salutation nil="true"></salutation>
|
649
|
-
<weight></weight>
|
650
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
651
|
-
<caregiver-last-name>Hills</caregiver-last-name>
|
652
|
-
<facility></facility>
|
653
|
-
<gender>female</gender>
|
654
|
-
<home-phone>403-176-5103</home-phone>
|
655
|
-
<id type="integer">111</id>
|
656
|
-
<lng>-74.7218052</lng>
|
657
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
658
|
-
<cell-phone>940-106-9422</cell-phone>
|
659
|
-
<current-status>HOME Independent</current-status>
|
660
|
-
<mi></mi>
|
661
|
-
<height></height>
|
662
|
-
<last-name>Bayer</last-name>
|
663
|
-
<medicare-no>455387373</medicare-no>
|
664
|
-
<serum-creatinine></serum-creatinine>
|
665
|
-
<care-type nil="true"></care-type>
|
666
|
-
<discharge-comments nil="true"></discharge-comments>
|
667
|
-
<religion></religion>
|
668
|
-
<residence>Home</residence>
|
669
|
-
<suffix></suffix>
|
670
|
-
<workflow-state>active</workflow-state>
|
671
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
672
|
-
<lat>40.1908392</lat>
|
673
|
-
<marital-status nil="true"></marital-status>
|
674
|
-
<tobacco-use></tobacco-use>
|
675
|
-
<caregiver-cell>274-641-2745</caregiver-cell>
|
676
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
677
|
-
<email>ollie_cartwright@sauercrist.biz</email>
|
678
|
-
<first-name>Annabelle</first-name>
|
679
|
-
<state>CO</state>
|
680
|
-
</patient>
|
681
|
-
<patient>
|
682
|
-
<address>880 Filiberto Ramp</address>
|
683
|
-
<caregiver-first-name>Christian</caregiver-first-name>
|
684
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
685
|
-
<city>New Katlynn</city>
|
686
|
-
<slug>103227483406013090186306211</slug>
|
687
|
-
<status-history type="yaml" nil="true"></status-history>
|
688
|
-
<work-phone>822-112-2234</work-phone>
|
689
|
-
<address2>Suite 517</address2>
|
690
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
691
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
692
|
-
<caffine-use></caffine-use>
|
693
|
-
<created-at type="datetime">2011-01-06T10:58:17-05:00</created-at>
|
694
|
-
<dob type="datetime">2010-12-31T19:00:00-05:00</dob>
|
695
|
-
<ma-control-no>4466531325</ma-control-no>
|
696
|
-
<zip>17085</zip>
|
697
|
-
<caregiver-phone>890-362-1921</caregiver-phone>
|
698
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
699
|
-
<enrollment-date type="datetime">2011-01-05T19:00:00-05:00</enrollment-date>
|
700
|
-
<esrd type="boolean">false</esrd>
|
701
|
-
<ethnicity></ethnicity>
|
702
|
-
<background></background>
|
703
|
-
<discharge-reason nil="true"></discharge-reason>
|
704
|
-
<has-allergies type="integer">1</has-allergies>
|
705
|
-
<insurance-status>Private pay</insurance-status>
|
706
|
-
<ssn>353-97-7130</ssn>
|
707
|
-
<updated-at type="datetime">2011-03-09T09:24:55-05:00</updated-at>
|
708
|
-
<activity></activity>
|
709
|
-
<alcohol-use></alcohol-use>
|
710
|
-
<language>English</language>
|
711
|
-
<salutation nil="true"></salutation>
|
712
|
-
<weight></weight>
|
713
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
714
|
-
<caregiver-last-name>Cole</caregiver-last-name>
|
715
|
-
<facility></facility>
|
716
|
-
<gender>male</gender>
|
717
|
-
<home-phone>309-724-9505</home-phone>
|
718
|
-
<id type="integer">277</id>
|
719
|
-
<lng>-75.0954213</lng>
|
720
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
721
|
-
<cell-phone>461-282-9974</cell-phone>
|
722
|
-
<current-status nil="true"></current-status>
|
723
|
-
<mi></mi>
|
724
|
-
<height></height>
|
725
|
-
<last-name>Orn</last-name>
|
726
|
-
<medicare-no>340369575</medicare-no>
|
727
|
-
<serum-creatinine></serum-creatinine>
|
728
|
-
<care-type nil="true"></care-type>
|
729
|
-
<discharge-comments nil="true"></discharge-comments>
|
730
|
-
<religion></religion>
|
731
|
-
<residence>Facility</residence>
|
732
|
-
<suffix></suffix>
|
733
|
-
<workflow-state>active</workflow-state>
|
734
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
735
|
-
<lat>39.9268588</lat>
|
736
|
-
<marital-status nil="true"></marital-status>
|
737
|
-
<tobacco-use></tobacco-use>
|
738
|
-
<caregiver-cell>083-242-0156</caregiver-cell>
|
739
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
740
|
-
<email>breanne@green.info</email>
|
741
|
-
<first-name>Ada</first-name>
|
742
|
-
<state>FM</state>
|
743
|
-
</patient>
|
744
|
-
<patient>
|
745
|
-
<address>52677 Bailee Avenue</address>
|
746
|
-
<caregiver-first-name>Deja</caregiver-first-name>
|
747
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
748
|
-
<city>Doyleview</city>
|
749
|
-
<slug>042588419811720380959981144</slug>
|
750
|
-
<status-history type="array">
|
751
|
-
<status-history>
|
752
|
-
<changed-by type="integer">64</changed-by>
|
753
|
-
<current-status>Nursing Home</current-status>
|
754
|
-
<changed-at type="datetime">2011-01-24T13:07:21-08:00</changed-at>
|
755
|
-
</status-history>
|
756
|
-
<status-history>
|
757
|
-
<changed-by type="integer">64</changed-by>
|
758
|
-
<current-status>Assisted Living Facility</current-status>
|
759
|
-
<changed-at type="datetime">2011-01-27T09:47:53-08:00</changed-at>
|
760
|
-
</status-history>
|
761
|
-
</status-history>
|
762
|
-
<work-phone>471-361-0961</work-phone>
|
763
|
-
<address2>Suite 210</address2>
|
764
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
765
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
766
|
-
<caffine-use></caffine-use>
|
767
|
-
<created-at type="datetime">2010-12-10T11:34:52-05:00</created-at>
|
768
|
-
<dob type="datetime">1927-10-29T19:00:00-05:00</dob>
|
769
|
-
<ma-control-no>4877184429</ma-control-no>
|
770
|
-
<zip>39896-0983</zip>
|
771
|
-
<caregiver-phone>710-828-1261</caregiver-phone>
|
772
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
773
|
-
<enrollment-date type="datetime">2009-12-31T00:00:00-05:00</enrollment-date>
|
774
|
-
<esrd type="boolean">false</esrd>
|
775
|
-
<ethnicity>African American</ethnicity>
|
776
|
-
<background></background>
|
777
|
-
<discharge-reason nil="true"></discharge-reason>
|
778
|
-
<has-allergies type="integer">1</has-allergies>
|
779
|
-
<insurance-status>Dual eligible</insurance-status>
|
780
|
-
<ssn>723-21-2339</ssn>
|
781
|
-
<updated-at type="datetime">2011-03-09T08:01:30-05:00</updated-at>
|
782
|
-
<activity></activity>
|
783
|
-
<alcohol-use></alcohol-use>
|
784
|
-
<language>English</language>
|
785
|
-
<salutation nil="true"></salutation>
|
786
|
-
<weight></weight>
|
787
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
788
|
-
<caregiver-last-name>Emard</caregiver-last-name>
|
789
|
-
<facility>Trent Center</facility>
|
790
|
-
<gender>female</gender>
|
791
|
-
<home-phone>154-101-7283</home-phone>
|
792
|
-
<id type="integer">30</id>
|
793
|
-
<lng>-74.7507456</lng>
|
794
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
795
|
-
<cell-phone>670-906-7944</cell-phone>
|
796
|
-
<current-status>Assisted Living Facility</current-status>
|
797
|
-
<mi>L</mi>
|
798
|
-
<height></height>
|
799
|
-
<last-name>Quigley</last-name>
|
800
|
-
<medicare-no>755782641</medicare-no>
|
801
|
-
<serum-creatinine></serum-creatinine>
|
802
|
-
<care-type nil="true"></care-type>
|
803
|
-
<discharge-comments nil="true"></discharge-comments>
|
804
|
-
<religion></religion>
|
805
|
-
<residence>Assisted Living</residence>
|
806
|
-
<suffix></suffix>
|
807
|
-
<workflow-state>active</workflow-state>
|
808
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
809
|
-
<lat>40.2177721</lat>
|
810
|
-
<marital-status nil="true"></marital-status>
|
811
|
-
<tobacco-use></tobacco-use>
|
812
|
-
<caregiver-cell>671-573-7234</caregiver-cell>
|
813
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
814
|
-
<email>buck_johns@nolan.net</email>
|
815
|
-
<first-name>Kaylie</first-name>
|
816
|
-
<state>MD</state>
|
817
|
-
</patient>
|
818
|
-
<patient>
|
819
|
-
<address>11419 Bernie Path</address>
|
820
|
-
<caregiver-first-name>Brianne</caregiver-first-name>
|
821
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
822
|
-
<city>Abshirestad</city>
|
823
|
-
<slug>775993700024890177466031736</slug>
|
824
|
-
<status-history type="yaml" nil="true"></status-history>
|
825
|
-
<work-phone>754-005-2517</work-phone>
|
826
|
-
<address2>Apt. 020</address2>
|
827
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
828
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
829
|
-
<caffine-use></caffine-use>
|
830
|
-
<created-at type="datetime">2011-02-24T12:44:00-05:00</created-at>
|
831
|
-
<dob type="datetime">1941-05-05T20:00:00-04:00</dob>
|
832
|
-
<ma-control-no>3148553212</ma-control-no>
|
833
|
-
<zip>04346</zip>
|
834
|
-
<caregiver-phone>003-908-5847</caregiver-phone>
|
835
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
836
|
-
<enrollment-date type="datetime">2011-03-01T00:00:00-05:00</enrollment-date>
|
837
|
-
<esrd type="boolean">false</esrd>
|
838
|
-
<ethnicity>Hispanic</ethnicity>
|
839
|
-
<background></background>
|
840
|
-
<discharge-reason nil="true"></discharge-reason>
|
841
|
-
<has-allergies type="integer">1</has-allergies>
|
842
|
-
<insurance-status></insurance-status>
|
843
|
-
<ssn>695-91-9851</ssn>
|
844
|
-
<updated-at type="datetime">2011-03-09T07:21:19-05:00</updated-at>
|
845
|
-
<activity></activity>
|
846
|
-
<alcohol-use></alcohol-use>
|
847
|
-
<language>Spanish</language>
|
848
|
-
<salutation nil="true"></salutation>
|
849
|
-
<weight></weight>
|
850
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
851
|
-
<caregiver-last-name>Dietrich</caregiver-last-name>
|
852
|
-
<facility nil="true"></facility>
|
853
|
-
<gender>female</gender>
|
854
|
-
<home-phone>021-074-5225</home-phone>
|
855
|
-
<id type="integer">314</id>
|
856
|
-
<lng>-74.728119</lng>
|
857
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
858
|
-
<cell-phone>400-245-2460</cell-phone>
|
859
|
-
<current-status>HOME CareGiver</current-status>
|
860
|
-
<mi></mi>
|
861
|
-
<height></height>
|
862
|
-
<last-name>Gerlach</last-name>
|
863
|
-
<medicare-no>084901747</medicare-no>
|
864
|
-
<serum-creatinine></serum-creatinine>
|
865
|
-
<care-type nil="true"></care-type>
|
866
|
-
<discharge-comments nil="true"></discharge-comments>
|
867
|
-
<religion></religion>
|
868
|
-
<residence>Home</residence>
|
869
|
-
<suffix></suffix>
|
870
|
-
<workflow-state>active</workflow-state>
|
871
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
872
|
-
<lat>40.229719</lat>
|
873
|
-
<marital-status nil="true"></marital-status>
|
874
|
-
<tobacco-use></tobacco-use>
|
875
|
-
<caregiver-cell>329-347-3490</caregiver-cell>
|
876
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
877
|
-
<email>nathen@lindgren.org</email>
|
878
|
-
<first-name>Hadley</first-name>
|
879
|
-
<state>KY</state>
|
880
|
-
</patient>
|
881
|
-
<patient>
|
882
|
-
<address>2874 Leonora Burg</address>
|
883
|
-
<caregiver-first-name>Murphy</caregiver-first-name>
|
884
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
885
|
-
<city>North Darrionhaven</city>
|
886
|
-
<slug>157570093953306796751439098</slug>
|
887
|
-
<status-history type="array">
|
888
|
-
<status-history>
|
889
|
-
<changed-by type="integer">64</changed-by>
|
890
|
-
<current-status>HOME CareGiver</current-status>
|
891
|
-
<changed-at type="datetime">2011-01-27T08:54:27-08:00</changed-at>
|
892
|
-
</status-history>
|
893
|
-
</status-history>
|
894
|
-
<work-phone>390-362-2740</work-phone>
|
895
|
-
<address2>Suite 925</address2>
|
896
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
897
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
898
|
-
<caffine-use></caffine-use>
|
899
|
-
<created-at type="datetime">2010-12-10T10:43:50-05:00</created-at>
|
900
|
-
<dob type="datetime">1933-01-14T19:00:00-05:00</dob>
|
901
|
-
<ma-control-no>1943758238</ma-control-no>
|
902
|
-
<zip>50495-6596</zip>
|
903
|
-
<caregiver-phone>909-875-2063</caregiver-phone>
|
904
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
905
|
-
<enrollment-date type="datetime">2010-10-31T00:00:00-04:00</enrollment-date>
|
906
|
-
<esrd type="boolean">false</esrd>
|
907
|
-
<ethnicity>Caucasian</ethnicity>
|
908
|
-
<background></background>
|
909
|
-
<discharge-reason nil="true"></discharge-reason>
|
910
|
-
<has-allergies type="integer">1</has-allergies>
|
911
|
-
<insurance-status>Dual eligible</insurance-status>
|
912
|
-
<ssn>037-82-8376</ssn>
|
913
|
-
<updated-at type="datetime">2011-03-09T07:20:25-05:00</updated-at>
|
914
|
-
<activity></activity>
|
915
|
-
<alcohol-use></alcohol-use>
|
916
|
-
<language>English</language>
|
917
|
-
<salutation nil="true"></salutation>
|
918
|
-
<weight></weight>
|
919
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
920
|
-
<caregiver-last-name>Rath</caregiver-last-name>
|
921
|
-
<facility></facility>
|
922
|
-
<gender>female</gender>
|
923
|
-
<home-phone>144-347-4359</home-phone>
|
924
|
-
<id type="integer">6</id>
|
925
|
-
<lng>-74.687771</lng>
|
926
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
927
|
-
<cell-phone>906-366-1900</cell-phone>
|
928
|
-
<current-status>HOME CareGiver</current-status>
|
929
|
-
<mi></mi>
|
930
|
-
<height></height>
|
931
|
-
<last-name>Koelpin</last-name>
|
932
|
-
<medicare-no>460214457</medicare-no>
|
933
|
-
<serum-creatinine></serum-creatinine>
|
934
|
-
<care-type nil="true"></care-type>
|
935
|
-
<discharge-comments nil="true"></discharge-comments>
|
936
|
-
<religion></religion>
|
937
|
-
<residence></residence>
|
938
|
-
<suffix></suffix>
|
939
|
-
<workflow-state>active</workflow-state>
|
940
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
941
|
-
<lat>40.255031</lat>
|
942
|
-
<marital-status nil="true"></marital-status>
|
943
|
-
<tobacco-use></tobacco-use>
|
944
|
-
<caregiver-cell>484-441-0521</caregiver-cell>
|
945
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
946
|
-
<email>odessa.denesik@sipes.net</email>
|
947
|
-
<first-name>Brandon</first-name>
|
948
|
-
<state>FM</state>
|
949
|
-
</patient>
|
950
|
-
<patient>
|
951
|
-
<address>0781 Cali Stravenue</address>
|
952
|
-
<caregiver-first-name>Bryon</caregiver-first-name>
|
953
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
954
|
-
<city>Jasenberg</city>
|
955
|
-
<slug>268364872923422622579287479</slug>
|
956
|
-
<status-history type="array">
|
957
|
-
<status-history>
|
958
|
-
<changed-by type="integer">64</changed-by>
|
959
|
-
<current-status>HOME Independent</current-status>
|
960
|
-
<changed-at type="datetime">2011-01-27T09:31:07-08:00</changed-at>
|
961
|
-
</status-history>
|
962
|
-
</status-history>
|
963
|
-
<work-phone>086-303-1096</work-phone>
|
964
|
-
<address2>Apt. 317</address2>
|
965
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
966
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
967
|
-
<caffine-use></caffine-use>
|
968
|
-
<created-at type="datetime">2010-12-10T12:49:53-05:00</created-at>
|
969
|
-
<dob type="datetime">1943-05-09T20:00:00-04:00</dob>
|
970
|
-
<ma-control-no>2266936376</ma-control-no>
|
971
|
-
<zip>71261-7901</zip>
|
972
|
-
<caregiver-phone>338-732-2810</caregiver-phone>
|
973
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
974
|
-
<enrollment-date type="datetime">2009-12-31T00:00:00-05:00</enrollment-date>
|
975
|
-
<esrd type="boolean">false</esrd>
|
976
|
-
<ethnicity>Caucasian</ethnicity>
|
977
|
-
<background>Please note Albuterol inhaler, Robitussin and Z-pack obtained from ATM.</background>
|
978
|
-
<discharge-reason nil="true"></discharge-reason>
|
979
|
-
<has-allergies type="integer">0</has-allergies>
|
980
|
-
<insurance-status>Dual eligible</insurance-status>
|
981
|
-
<ssn>920-12-7330</ssn>
|
982
|
-
<updated-at type="datetime">2011-03-09T07:19:33-05:00</updated-at>
|
983
|
-
<activity></activity>
|
984
|
-
<alcohol-use></alcohol-use>
|
985
|
-
<language>English</language>
|
986
|
-
<salutation nil="true"></salutation>
|
987
|
-
<weight></weight>
|
988
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
989
|
-
<caregiver-last-name>Kuphal</caregiver-last-name>
|
990
|
-
<facility></facility>
|
991
|
-
<gender>female</gender>
|
992
|
-
<home-phone>415-607-1071</home-phone>
|
993
|
-
<id type="integer">63</id>
|
994
|
-
<lng>-74.7614349</lng>
|
995
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
996
|
-
<cell-phone>488-510-3063</cell-phone>
|
997
|
-
<current-status>HOME Independent</current-status>
|
998
|
-
<mi>A</mi>
|
999
|
-
<height></height>
|
1000
|
-
<last-name>Robel</last-name>
|
1001
|
-
<medicare-no>960708304</medicare-no>
|
1002
|
-
<serum-creatinine></serum-creatinine>
|
1003
|
-
<care-type nil="true"></care-type>
|
1004
|
-
<discharge-comments nil="true"></discharge-comments>
|
1005
|
-
<religion></religion>
|
1006
|
-
<residence>Home</residence>
|
1007
|
-
<suffix></suffix>
|
1008
|
-
<workflow-state>active</workflow-state>
|
1009
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
1010
|
-
<lat>40.2151505</lat>
|
1011
|
-
<marital-status nil="true"></marital-status>
|
1012
|
-
<tobacco-use></tobacco-use>
|
1013
|
-
<caregiver-cell>513-007-8230</caregiver-cell>
|
1014
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
1015
|
-
<email>myra@braun.org</email>
|
1016
|
-
<first-name>Eliezer</first-name>
|
1017
|
-
<state>TN</state>
|
1018
|
-
</patient>
|
1019
|
-
<patient>
|
1020
|
-
<address>652 Ryleigh Shoal</address>
|
1021
|
-
<caregiver-first-name>Pasquale</caregiver-first-name>
|
1022
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
1023
|
-
<city>East Claireton</city>
|
1024
|
-
<slug>241707648027493197494078927</slug>
|
1025
|
-
<status-history type="array">
|
1026
|
-
<status-history>
|
1027
|
-
<changed-by type="integer">64</changed-by>
|
1028
|
-
<current-status>HOME HomeCare</current-status>
|
1029
|
-
<changed-at type="datetime">2011-01-25T07:07:07-08:00</changed-at>
|
1030
|
-
</status-history>
|
1031
|
-
</status-history>
|
1032
|
-
<work-phone>303-554-7606</work-phone>
|
1033
|
-
<address2>Suite 754</address2>
|
1034
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
1035
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
1036
|
-
<caffine-use></caffine-use>
|
1037
|
-
<created-at type="datetime">2010-12-10T12:43:32-05:00</created-at>
|
1038
|
-
<dob type="datetime">1938-10-27T19:00:00-05:00</dob>
|
1039
|
-
<ma-control-no>0527577085</ma-control-no>
|
1040
|
-
<zip>90554</zip>
|
1041
|
-
<caregiver-phone>042-940-4877</caregiver-phone>
|
1042
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
1043
|
-
<enrollment-date type="datetime">2010-10-31T00:00:00-04:00</enrollment-date>
|
1044
|
-
<esrd type="boolean">false</esrd>
|
1045
|
-
<ethnicity>Caucasian</ethnicity>
|
1046
|
-
<background></background>
|
1047
|
-
<discharge-reason nil="true"></discharge-reason>
|
1048
|
-
<has-allergies type="integer">0</has-allergies>
|
1049
|
-
<insurance-status>Dual eligible</insurance-status>
|
1050
|
-
<ssn>832-58-1904</ssn>
|
1051
|
-
<updated-at type="datetime">2011-03-09T07:19:17-05:00</updated-at>
|
1052
|
-
<activity></activity>
|
1053
|
-
<alcohol-use></alcohol-use>
|
1054
|
-
<language>English</language>
|
1055
|
-
<salutation nil="true"></salutation>
|
1056
|
-
<weight></weight>
|
1057
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
1058
|
-
<caregiver-last-name>Gerlach</caregiver-last-name>
|
1059
|
-
<facility></facility>
|
1060
|
-
<gender>male</gender>
|
1061
|
-
<home-phone>084-990-1235</home-phone>
|
1062
|
-
<id type="integer">56</id>
|
1063
|
-
<lng>-74.767258</lng>
|
1064
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
1065
|
-
<cell-phone>327-790-4726</cell-phone>
|
1066
|
-
<current-status>HOME HomeCare</current-status>
|
1067
|
-
<mi></mi>
|
1068
|
-
<height></height>
|
1069
|
-
<last-name>Klocko</last-name>
|
1070
|
-
<medicare-no>966864477</medicare-no>
|
1071
|
-
<serum-creatinine></serum-creatinine>
|
1072
|
-
<care-type nil="true"></care-type>
|
1073
|
-
<discharge-comments nil="true"></discharge-comments>
|
1074
|
-
<religion></religion>
|
1075
|
-
<residence>Home</residence>
|
1076
|
-
<suffix></suffix>
|
1077
|
-
<workflow-state>active</workflow-state>
|
1078
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
1079
|
-
<lat>40.251815</lat>
|
1080
|
-
<marital-status nil="true"></marital-status>
|
1081
|
-
<tobacco-use></tobacco-use>
|
1082
|
-
<caregiver-cell>097-964-8875</caregiver-cell>
|
1083
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
1084
|
-
<email>reva@strosinlockman.org</email>
|
1085
|
-
<first-name>Alysa</first-name>
|
1086
|
-
<state>TN</state>
|
1087
|
-
</patient>
|
1088
|
-
<patient>
|
1089
|
-
<address>5177 Russel Field</address>
|
1090
|
-
<caregiver-first-name>Effie</caregiver-first-name>
|
1091
|
-
<caregiver-relation nil="true"></caregiver-relation>
|
1092
|
-
<city>East Sethchester</city>
|
1093
|
-
<slug>650368318960842336508113524</slug>
|
1094
|
-
<status-history type="array">
|
1095
|
-
<status-history>
|
1096
|
-
<changed-by type="integer">64</changed-by>
|
1097
|
-
<current-status>Nursing Home</current-status>
|
1098
|
-
<changed-at type="datetime">2011-01-25T06:13:05-08:00</changed-at>
|
1099
|
-
</status-history>
|
1100
|
-
</status-history>
|
1101
|
-
<work-phone>627-025-7899</work-phone>
|
1102
|
-
<address2>Apt. 567</address2>
|
1103
|
-
<avatar-file-name nil="true"></avatar-file-name>
|
1104
|
-
<avatar-file-size type="integer" nil="true"></avatar-file-size>
|
1105
|
-
<caffine-use></caffine-use>
|
1106
|
-
<created-at type="datetime">2011-01-06T16:07:18-05:00</created-at>
|
1107
|
-
<dob type="datetime">1948-05-20T20:00:00-04:00</dob>
|
1108
|
-
<ma-control-no>5989136595</ma-control-no>
|
1109
|
-
<zip>23146</zip>
|
1110
|
-
<caregiver-phone>904-523-6845</caregiver-phone>
|
1111
|
-
<discharged-by type="integer" nil="true"></discharged-by>
|
1112
|
-
<enrollment-date type="datetime">2010-12-31T00:00:00-05:00</enrollment-date>
|
1113
|
-
<esrd type="boolean">false</esrd>
|
1114
|
-
<ethnicity></ethnicity>
|
1115
|
-
<background>TEST</background>
|
1116
|
-
<discharge-reason nil="true"></discharge-reason>
|
1117
|
-
<has-allergies type="integer">0</has-allergies>
|
1118
|
-
<insurance-status>Medicaid only</insurance-status>
|
1119
|
-
<ssn>698-16-0453</ssn>
|
1120
|
-
<updated-at type="datetime">2011-03-09T07:19:02-05:00</updated-at>
|
1121
|
-
<activity></activity>
|
1122
|
-
<alcohol-use></alcohol-use>
|
1123
|
-
<language></language>
|
1124
|
-
<salutation nil="true"></salutation>
|
1125
|
-
<weight></weight>
|
1126
|
-
<avatar-processing type="boolean">false</avatar-processing>
|
1127
|
-
<caregiver-last-name>Hane</caregiver-last-name>
|
1128
|
-
<facility></facility>
|
1129
|
-
<gender>female</gender>
|
1130
|
-
<home-phone>559-363-6854</home-phone>
|
1131
|
-
<id type="integer">278</id>
|
1132
|
-
<lng>-74.7059709</lng>
|
1133
|
-
<avatar-content-type nil="true"></avatar-content-type>
|
1134
|
-
<cell-phone>627-917-5085</cell-phone>
|
1135
|
-
<current-status>HOME Independent</current-status>
|
1136
|
-
<mi></mi>
|
1137
|
-
<height></height>
|
1138
|
-
<last-name>Wiza</last-name>
|
1139
|
-
<medicare-no>665467119</medicare-no>
|
1140
|
-
<serum-creatinine></serum-creatinine>
|
1141
|
-
<care-type nil="true"></care-type>
|
1142
|
-
<discharge-comments nil="true"></discharge-comments>
|
1143
|
-
<religion></religion>
|
1144
|
-
<residence></residence>
|
1145
|
-
<suffix></suffix>
|
1146
|
-
<workflow-state>active</workflow-state>
|
1147
|
-
<avatar-updated-at type="datetime" nil="true"></avatar-updated-at>
|
1148
|
-
<lat>40.200479</lat>
|
1149
|
-
<marital-status nil="true"></marital-status>
|
1150
|
-
<tobacco-use></tobacco-use>
|
1151
|
-
<caregiver-cell>491-268-9269</caregiver-cell>
|
1152
|
-
<discharged-on type="datetime" nil="true"></discharged-on>
|
1153
|
-
<email>leatha_witting@king.info</email>
|
1154
|
-
<first-name>Keara</first-name>
|
1155
|
-
<state>IL</state>
|
1156
|
-
</patient>
|
1157
|
-
</patients>
|