UNPKG

2.61 kBJavaScriptView Raw
1/*
2
3 ----------------------------------------------------------------------------
4 | qewd-ripple: QEWD-based Middle Tier for Ripple OSI |
5 | |
6 | Copyright (c) 2016-17 Ripple Foundation Community Interest Company |
7 | All rights reserved. |
8 | |
9 | http://rippleosi.org |
10 | Email: code.custodian@rippleosi.org |
11 | |
12 | Author: Rob Tweed, M/Gateway Developments Ltd |
13 | |
14 | Licensed under the Apache License, Version 2.0 (the "License"); |
15 | you may not use this file except in compliance with the License. |
16 | You may obtain a copy of the License at |
17 | |
18 | http://www.apache.org/licenses/LICENSE-2.0 |
19 | |
20 | Unless required by applicable law or agreed to in writing, software |
21 | distributed under the License is distributed on an "AS IS" BASIS, |
22 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
23 | See the License for the specific language governing permissions and |
24 | limitations under the License. |
25 ----------------------------------------------------------------------------
26
27 17 May 2017
28
29*/
30
31function getTransferOfCareSummary(args, callback) {
32
33 var patientId = args.patientId;
34
35 if (typeof patientId === 'undefined' || patientId === '') {
36 return callback({error: 'patientId not defined or invalid'});
37 }
38
39 var docName = this.userDefined.tocDocumentName;
40 var tocsDoc = new this.documentStore.DocumentNode(docName, ['byPatient', patientId]);
41
42 var results = [];
43
44 tocsDoc.forEachChild(function(sourceId, tocDoc) {
45 results.push({
46 sourceId: sourceId,
47 from: tocDoc.$('from').value,
48 to: tocDoc.$('to').value,
49 transferDateTime: tocDoc.$('transferDateTime').value,
50 source: tocDoc.$('source').value || 'qewdDB'
51 });
52 });
53
54 callback(results);
55}
56
57module.exports = getTransferOfCareSummary;