Fix for bug reported in 'Charges panel not allowing me to delete items'
[openemr.git] / interface / patient_file / ccr_import.php
blob13ac4fffe1ac5f4d81f1fc50b420d01ed8c896b0
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 * @package OpenEMR
8 * @link http://www.open-emr.org
9 * @author Eldho Chacko <eldho@zhservices.com>
10 * @author Ajil P M <ajilpm@zhservices.com>
11 * @author Jason 'Toolbox' Oettinger <jason@oettinger.email>
12 * @copyright Copyright (c) 2013 Z&H Consultancy Services Private Limited <sam@zhservices.com>
13 * @copyright Copyright (c) 2017 Jason Oettinger
14 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
16 require_once(dirname(__FILE__) . "../../globals.php");
18 use OpenEMR\Core\Header;
21 <html>
22 <head>
23 <?php Header::setupHeader(); ?>
24 <title><?php echo xlt('Import');?></title>
25 <style>
26 .list-group-item {
27 display: list-item;
29 </style>
30 </head>
31 <body class="body_top" >
32 <main class="container">
33 <div class="row">
34 <div class="col-md-6 col-md-offset-3">
35 <h3><?php echo xlt("Steps for uploading CCR XML");?></h3>
36 <ol class="list-group">
37 <li class="list-group-item"><?php echo xlt('For an existing patient, go to Patient Summary->Documents. For a new patient, go to Miscellanous->New Documents').'.'; ?></li>
38 <li class="list-group-item"><?php echo xlt('Upload the xml file under the category CCR').'.'; ?></li>
39 <li class="list-group-item"><?php echo xlt('After Uploading, click "Import"').'.'; ?></li>
40 <li class="list-group-item"><?php echo xlt('Approve the patient from Patient/Client->Import->Pending Approval').'.'; ?></li>
41 </ol>
42 </div>
43 </div>
44 </main>
45 </body>
46 </html>