fix: Update patient_tracker.php (#6595)
[openemr.git] / templates / prescription / general_send.html
blobfd01c5c88816587acf29cefb2b9cb28ce8a7842c
1 {**
2 * Prescription General Send
4 * @package OpenEMR
5 * @link http://www.open-emr.org
6 * @author Brady Miller <brady.g.miller@gmail.com>
7 * @copyright Copyright (c) 2017 Brady Miller <brady.g.miller@gmail.com>
8 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
9 *}
10 <html>
11 <head>
14 <link rel="stylesheet" href="{$GLOBALS.css_header}">
15 </head>
16 <body id="prescription_send" class="body_top">
18 <span class="title"><b>{xlt t='Send'}</b></span>
19 <div style="margin-top:10px;">
20 {if $process_result}
21 {$process_result|text}
22 <br/>
23 {/if}
25 <div style="float:left">
26 <form name="genform1" method="post" action="{$TOP_ACTION}send&id={$prescription->id|attr_url}" target="_new" onsubmit="return top.restoreSession()">
27 <input type="submit" name="submit" value="{xla t='Download'} ({xla t='PDF'})" style="width:100;font-size:9pt;"/>
28 <input type="hidden" name="process" value="{$PROCESS|attr}" />
29 </form>
30 </div>
32 <div style="float:left">
33 <form name="send_prescription" method="post" action="{$TOP_ACTION}send&id={$prescription->id|attr_url}" target="_new" onsubmit="return top.restoreSession()">
34 <input type="submit" name="submit" value="{xla t='View Printable'} ({xla t='HTML'})" style="width:100;font-size:9pt;"/>
35 <input type="hidden" name="process" value="{$PROCESS|attr}" />
36 </form>
37 </div>
39 <div style="float:none">
40 <form name="send_prescription" method="post" action="{$TOP_ACTION}send&id={$prescription->id|attr_url}&print_to_fax=true" target="_new" onsubmit="return top.restoreSession()">
41 <input type="submit" name="submit" value="{xla t='Download Fax'|attr}" style="width:100;font-size:9pt;"/>
42 <input type="hidden" name="process" value="{$PROCESS|attr}" />
43 </form>
44 </div>
46 <div>
47 <form name="send_prescription" method="post" action="{$TOP_ACTION}send&id={$prescription->id|attr_url}" onsubmit="return top.restoreSession()">
48 <input type="submit" name="submit" value="{xla t='Email'}" style="width:100;font-size:9pt;" /><input type="text" name="email_to" size="25" value="{$prescription->pharmacy->get_email()|attr}">
49 <br/>
50 <input type="submit" name="submit" value="{xla t='Fax'}" style="width:100;font-size:9pt;"/><input type="text" name="fax_to" size="25" value="{$prescription->pharmacy->get_fax()|attr}" >
51 <input type="hidden" name="process" value="{$PROCESS|attr}" />
52 </form>
53 <form name="send_prescription" method="post" action="{$TOP_ACTION}send&id={$prescription->id|attr_url}" target="_new" onsubmit="return top.restoreSession()">
54 <input type="submit" name="submit" value="{xla t='Auto Send'}" style="width:100;font-size:9pt;" /> {html_options name="pharmacy_id" options=$prescription->pharmacy->utility_pharmacy_array() selected=$prescription->pharmacy->id}
55 <input type="hidden" name="process" value="{$PROCESS|attr}" />
56 </form>
57 </div>
58 </div>
60 </body>
61 </html>