Translation support with xl() function added. There are some other bugs I need to...
[openemr.git] / templates / prescription / general_edit.html
blob8de322a5b17456d8d97440a0c2883e44ac2f6065
1 <html>
2 <head>
3 {literal}
4 <style type="text/css" title="mystyles" media="all">
5 <!--
6 td {
7 font-size:8pt;
8 font-family:helvetica;
10 input {
11 font-size:8pt;
12 font-family:helvetica;
14 select {
15 font-size:8pt;
16 font-family:helvetica;
18 textarea {
19 font-size:8pt;
20 font-family:helvetica;
22 -->
23 </style>
24 <script type="text/javascript" src="library/dialog.js"></script>
25 <script language='JavaScript'>
27 // This holds all the default drug attributes.
28 {/literal}
29 var drugopts = [{$DRUG_ATTRIBUTES}];
30 {literal}
32 // Helper to choose an option from its value.
33 function selchoose(sel, value) {
34 var o = sel.options;
35 for (i = 0; i < o.length; ++i) {
36 o[i].selected = (o[i].value == value);
40 // Fill in default values when a drop-down drug is selected.
41 function drugselected(sel) {
42 var f = document.forms[0];
43 var i = f.drug_id.selectedIndex - 1;
44 if (i >= 0) {
45 var d = drugopts[i];
46 f.drug.value = d[0];
47 selchoose(f.form, d[1]);
48 f.dosage.value = d[2];
49 f.size.value = d[3];
50 selchoose(f.unit, d[4]);
51 selchoose(f.route, d[5]);
52 selchoose(f.interval, d[6]);
53 selchoose(f.substitute, d[7]);
54 f.quantity.value = d[8];
55 f.disp_quantity.value = d[8];
56 selchoose(f.refills, d[9]);
57 f.per_refill.value = d[10];
61 // Invoke the popup to dispense a drug.
62 function dispense() {
63 var f = document.forms[0];
64 dlgopen('interface/drugs/dispense_drug.php' +
65 '?drug_id=' + f.drug_id.value +
66 '&prescription=' + f.id.value +
67 '&quantity=' + f.disp_quantity.value +
68 '&fee=' + f.disp_fee.value,
69 '_blank', 400, 200);
72 function quantityChanged() {
73 var f = document.forms[0];
74 f.per_refill.value = f.quantity.value;
75 if (f.disp_quantity) {
76 f.disp_quantity.value = f.quantity.value;
80 </script>
81 {/literal}
82 </head>
83 <body {$STYLE.BOTTOM_BG_LINE}>
84 <form name="prescribe" method="post" action="{$FORM_ACTION}" onsubmit="return top.restoreSession()">
85 <table CELLSPACING="0" CELLPADDING="3">
86 <tr>
87 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Starting Date'}</td>
88 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
89 {html_select_date start_year="-10" end_year="+5" time=$prescription->start_date prefix="start_date_"}
90 </td>
91 </tr>
92 <tr>
93 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Provider'}</td>
94 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
95 {html_options name="provider_id" options=$prescription->provider->utility_provider_array() selected=$prescription->provider->get_id()}
96 <input type="hidden" name="patient_id" value="{$prescription->patient->id}" />
97 </td>
98 </tr>
99 <!--
100 <tr>
101 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >Patient Name</td>
102 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >{$prescription->patient->get_name_display()}</td>
103 </tr>
105 <tr>
106 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Drug'}</td>
107 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
108 <input type="input" size="20" name="drug" value="{$prescription->drug}"/><input class="button" type="BUTTON" onClick="drugPopup=window.open('controller.php?prescription&lookup', 'drugPopup', 'width=400,height=50,menubar=no,titlebar=no,left = 825,top = 400'); drugPopup.opener=self; return true;" value="Drug Lookup"/>
109 </td>
110 </tr>
112 {if $DRUG_ARRAY_VALUES}
113 <tr>
114 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >&nbsp; {xl t='in-house'}</td>
115 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
116 <select name="drug_id" onchange="drugselected(this)">
117 {html_options values=$DRUG_ARRAY_VALUES output=$DRUG_ARRAY_OUTPUT}
118 </select>
119 </td>
120 </tr>
121 {/if}
123 <tr>
124 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Quantity'}</td>
125 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
126 <input TYPE="TEXT" NAME="quantity" SIZE="10" MAXLENGTH="10"
127 VALUE="{$prescription->quantity}"
128 onchange="quantityChanged()" />
129 </td>
130 </tr>
131 {if $SIMPLIFIED_PRESCRIPTIONS && !$prescription->size}
132 <tr style='display:none;'>
133 {else}
134 <tr>
135 {/if}
136 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Medicine Units'}</td>
137 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
138 <input TYPE="TEXT" NAME="size" SIZE="11" MAXLENGTH="10" VALUE="{$prescription->size}"/>
139 <select name="unit">{html_options options=$prescription->unit_array selected=$prescription->unit}</select>
140 </td>
141 </tr>
142 <tr>
143 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Take'}</td>
144 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
145 {if $SIMPLIFIED_PRESCRIPTIONS && !$prescription->form && !$prescription->route && !$prescription->interval}
146 <input TYPE="text" NAME="dosage" SIZE="30" MAXLENGTH="100" VALUE="{$prescription->dosage}" />
147 <input type="hidden" name="form" value="0" />
148 <input type="hidden" name="route" value="0" />
149 <input type="hidden" name="interval" value="0" />
150 {else}
151 <input TYPE="TEXT" NAME="dosage" SIZE="2" MAXLENGTH="10" VALUE="{$prescription->dosage}"/> {xl t='in'}
152 <select name="form">{html_options options=$prescription->form_array selected=$prescription->form}</select>
153 <select name="route">{html_options options=$prescription->route_array selected=$prescription->route}</select>
154 <select name="interval">{html_options options=$prescription->interval_array selected=$prescription->interval}</select>
155 {/if}
156 </td>
157 </tr>
158 <tr>
159 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Refills'}</td>
160 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
161 {html_options name="refills" options=$prescription->refills_array selected=$prescription->refills}
162 {if $SIMPLIFIED_PRESCRIPTIONS}
163 <input TYPE="hidden" ID="per_refill" NAME="per_refill" VALUE="{$prescription->per_refill}" />
164 {else}
165 &nbsp; &nbsp; # {xl t='of tablets'}:
166 <input TYPE="TEXT" ID="per_refill" NAME="per_refill" SIZE="2" MAXLENGTH="10" VALUE="{$prescription->per_refill}" />
167 {/if}
168 </td>
169 </tr>
170 <tr>
171 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Substitution'}</td>
172 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
173 {html_options name="substitute" options=$prescription->substitute_array selected=$prescription->substitute}
174 </td>
175 </tr>
176 <tr>
177 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Notes'}</td>
178 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
179 <textarea name="note" cols="30" rows="2" wrap="virtual">{$prescription->note}</textarea>
180 </td>
181 </tr>
182 {if !$WEIGHT_LOSS_CLINIC}
183 <tr>
184 <td COLSPAN="1" ALIGN="LEFT" VALIGN="MIDDLE" >{xl t='Add to Medication List'}</td>
185 <td COLSPAN="2" ALIGN="LEFT" VALIGN="MIDDLE" >
186 {html_radios name="medication" options=$prescription->medication_array selected=$prescription->medication}
187 </td>
188 </tr>
189 {/if}
190 <tr>
191 <td colspan="3">
192 <input type="submit" value="{xl t='Prescribe'}" />
193 {if $DRUG_ARRAY_VALUES}
194 &nbsp; &nbsp; &nbsp; &nbsp;
195 {if $prescription->get_refills() >= $prescription->get_dispensation_count()}
196 <input type="submit" name="disp_button" value="{xl t='Prescribe and Dispense'}" />
197 <input type="text" name="disp_quantity" size="2" maxlength="10" value="{$DISP_QUANTITY}" />
198 units, $
199 <input type="text" name="disp_fee" size="5" maxlength="10" value="{$DISP_FEE}" />
200 {else}
201 {xl t=' prescription has reached its limit of'} {$prescription->get_refills()} {xl t='refills'}.
202 {/if}
203 {/if}
204 </td>
205 </tr>
206 </table>
207 <input type="hidden" name="id" value="{$prescription->id}" />
208 <input type="hidden" name="process" value="{$PROCESS}" />
209 <script language='JavaScript'>
210 {$ENDING_JAVASCRIPT}
211 </script>
212 </form>
213 </body>
214 </html>