-
Notifications
You must be signed in to change notification settings - Fork 2
/
structure-mouvement.html
74 lines (73 loc) · 2.61 KB
/
structure-mouvement.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="fr">
<head>
<title>API PMSIpilot</title>
<meta charset="utf-8">
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/api.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/base.css">
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="index.html">Présentation</a>
<a class="brand" href="documentation.html">Documentation</a>
<a class="brand" href="http://www.pmsipilot.com/fr/contact">Contact</a>
</div>
</div>
</div>
<div class="container">
<div id="breadcrumbs">
<div class="breadcrumb">
<a href="documentation.html">Documentation</a> → <a href="">Structure mouvement</a>
</div>
</div><!-- end #breadcrumbs -->
<div class="content row">
<div class="span12">
<h1 id="title">Structure d'un mouvement</h1>
<p>Liste des champs disponibles :
<ul>
<li><code>iep</code> <span class="label important">obligatoire</span> identifiant unique du séjour auquel appartient le mouvement.</li>
<li><code>numero</code> <span class="label important">obligatoire</span> identifiant unique du mouvement au sein du séjour.</li>
<li><code>date_mouvement</code> <span class="label">norme</span> aaaa-mm-jj hh:mm:ss</li>
<li><code>uf_hebergement</code></li>
<li><code>uf_soins</code></li>
<li><code>uf_responsablite_medicale</code></li>
<li><code>chambre</code></li>
<li><code>lit</code></li>
<li><code>mode_entree</code></li>
<li><code>provenance</code></li>
<li><code>sortie</code> <span class="label">norme</span> <strong>1</strong> oui - <strong>0</strong> non</li>
<li><code>mode_sortie</code></li>
<li><code>destination</code></li>
</ul>
</p>
<p>Exemple en JSON :</p>
<pre class="highlight">
{
"iep": "0000311963",
"numero": "1",
"date_mouvement": "2011-06-17 10:29:00",
"uf_hebergement": "DIGE",
"uf_soins": null,
"uf_responsablite_medicale": "DIGE",
"chambre": "305",
"lit": "F",
"mode_entree": "DOM",
"provenance": null,
"sortie": 0,
"mode_sortie": null,
"destination": null
}</pre>
</div>
<div id="sidebar" class="span5"></div>
</div>
</div> <!-- /container -->
<footer>
</footer>
<script type="text/javascript">window.hijs = '.highlight';</script>
<script type="text/javascript" src="js/hijs.js"></script>
</body>
</html>