CCR Import, made changes per comments in github.
[openemr.git] / interface / patient_file / ccr_import.php
blob53c3f5b8925e92c01b946111d00c0714255842bf
1 <?php
2 /**
3 * interface/patient_file/ccr_import.php Upload screen and parser for the CCR XML.
5 * Functions to upload the CCR XML and to parse and insert it into audit tables.
7 * Copyright (C) 2013 Z&H Consultancy Services Private Limited <sam@zhservices.com>
9 * LICENSE: This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 3
12 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
20 * @package OpenEMR
21 * @author Eldho Chacko <eldho@zhservices.com>
22 * @author Ajil P M <ajilpm@zhservices.com>
23 * @link http://www.open-emr.org
26 //SANITIZE ALL ESCAPES
27 $sanitize_all_escapes=true;
30 //STOP FAKE REGISTER GLOBALS
31 $fake_register_globals=false;
34 require_once(dirname(__FILE__) . "/../globals.php");
37 <html>
38 <head>
39 <title><?php echo xlt('Import');?></title>
40 <link rel="stylesheet" href="<?php echo $css_header; ?>" type="text/css">
41 </head>
42 <body class="body_top" >
43 <center>
44 <p><b><?php echo xlt("Steps for uploading CCR XML");?></b></p>
45 <table style="width:85%;font-size:14px;" >
46 <tr>
47 <td>1.</td>
48 <td><?php echo xlt('To upload CCR document of already existing patient use Patient Summary Screen->Documents. For CCR document of a new patient use Miscellanous->New Documents screen').'.'; ?></td>
49 </tr>
50 <tr>
51 <td>2.</td>
52 <td><?php echo xlt('Upload the xml file under the category CCR').'.'; ?></td>
53 </tr>
54 <tr>
55 <td>3.</td>
56 <td><?php echo xlt('After Uploading click the button "Import"').'.'; ?></td>
57 </tr>
58 <tr>
59 <td>4.</td>
60 <td><?php echo xlt('Approve the patient from Patient/Client->Import->Pending Approval').'.'; ?></td>
61 </tr>
62 </table>
63 </center>
64 </form>
65 </body>
66 </html>