Implement new security model in LBF forms.
[openemr.git] / custom / readme_rx_printtofax.txt
blob2f5994f27d61f6833018ed7cab79612f0451e5b1
1 MI2 Print-to-Fax Option with signature and addendum/footer options
3 Changes:
4 - Added Print to Fax for Prescription Drug (Rx) forms
5 - Added configurable Prescription Drug form addendum
7 * This is to allow clinic that use local print to FAX (versus server based) to have a Rx Form that will include the
8 provider signature and other information that would normally be handled by hand.  The inherent in-security of this
9 feature must be explained and managed at the clinic location and at the clinic's risk.
11 * The follow text is printed on all print-to-faxes as addes security
12         "Please do not accept this prescription unless it was received via facsimile."
14 Manual steps:
15 - edit includes/config.php and make sure the following are set:
17 $GLOBALS['oer_config']['prescriptions']['sig_pic'] = "dr_signature.png";
18 $GLOBALS['oer_config']['prescriptions']['use_signature'] = true;
19 $GLOBALS['oer_config']['prescriptions']['addendum_file'] = dirname(__FILE__) .
20   "/../custom/rx_addendum.txt";
22 "dr_signature.png" must exist in ./interface/pic/ to have the contents of rx_addendum.txt appear. Note that the pre-existing ability to
23 add {userid} somewhere in the signature image filename still works. 
25 You may edit custom/rx_addendum.txt to be any additional addendum text.