groups fix in the add appt screen
[openemr.git] / controllers / C_Prescription.class.php
blob4bd26cbb040901c2b4004ce998c5b4eb030bbbba
1 <?php
2 /**
3 * This script print Prescriptions.
5 * Copyright (C) 2015 Roberto Vasquez <robertogagliotta@gmail.com>
7 * LICENSE: This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
18 * @package OpenEMR
19 * @author Roberto Vasquez <robertogagliotta@gmail.com>
20 * @link http://www.open-emr.org
24 require_once($GLOBALS['fileroot'] . "/library/classes/Prescription.class.php");
25 require_once($GLOBALS['fileroot'] . "/library/registry.inc");
26 require_once($GLOBALS['fileroot'] . "/library/amc.php");
28 class C_Prescription extends Controller {
30 var $template_mod;
31 var $pconfig;
32 var $providerid = 0;
33 var $is_faxing = false;
34 var $is_print_to_fax = false;
36 function __construct($template_mod = "general") {
37 parent::__construct();
39 $this->template_mod = $template_mod;
40 $this->assign("FORM_ACTION", $GLOBALS['webroot']."/controller.php?" . $_SERVER['QUERY_STRING']);
41 $this->assign("TOP_ACTION", $GLOBALS['webroot']."/controller.php?" . "prescription" . "&");
42 $this->assign("STYLE", $GLOBALS['style']);
43 $this->assign("WEIGHT_LOSS_CLINIC", $GLOBALS['weight_loss_clinic']);
44 $this->assign("SIMPLIFIED_PRESCRIPTIONS", $GLOBALS['simplified_prescriptions']);
45 $this->pconfig = $GLOBALS['oer_config']['prescriptions'];
46 $this->assign("CSS_HEADER", $GLOBALS['css_header'] );
47 $this->assign("WEB_ROOT", $GLOBALS['webroot'] );
48 $this->RxList = new RxList();
50 if ($GLOBALS['inhouse_pharmacy']) {
51 // Make an array of drug IDs and selectors for the template.
52 $drug_array_values = array(0);
53 $drug_array_output = array("-- " . xl('or select from inventory') ." --");
54 $drug_attributes = '';
56 // $res = sqlStatement("SELECT * FROM drugs ORDER BY selector");
58 $res = sqlStatement("SELECT d.name, d.ndc_number, d.form, d.size, " .
59 "d.unit, d.route, d.substitute, t.drug_id, t.selector, t.dosage, " .
60 "t.period, t.quantity, t.refills, d.drug_code " .
61 "FROM drug_templates AS t, drugs AS d WHERE " .
62 "d.drug_id = t.drug_id ORDER BY t.selector");
64 while ($row = sqlFetchArray($res)) {
65 $tmp_output = $row['selector'];
66 if ($row['ndc_number']) {
67 $tmp_output .= ' [' . $row['ndc_number'] . ']';
69 $drug_array_values[] = $row['drug_id'];
70 $drug_array_output[] = $tmp_output;
71 if ($drug_attributes) $drug_attributes .= ',';
72 $drug_attributes .= "['" .
73 $row['name'] . "'," . // 0
74 $row['form'] . ",'" . // 1
75 $row['dosage'] . "','" . // 2
76 $row['size'] . "'," . // 3
77 $row['unit'] . "," . // 4
78 $row['route'] . "," . // 5
79 $row['period'] . "," . // 6
80 $row['substitute'] . "," . // 7
81 $row['quantity'] . "," . // 8
82 $row['refills'] . "," . // 9
83 $row['quantity'] . "," . // 10 quantity per_refill
84 $row['drug_code'] . "]"; // 11 rxnorm drug code
86 $this->assign("DRUG_ARRAY_VALUES", $drug_array_values);
87 $this->assign("DRUG_ARRAY_OUTPUT", $drug_array_output);
88 $this->assign("DRUG_ATTRIBUTES", $drug_attributes);
92 function default_action() {
93 $this->assign("prescription",$this->prescriptions[0]);
94 $this->display($GLOBALS['template_dir'] . "prescription/" . $this->template_mod . "_edit.html");
97 function edit_action($id = "",$patient_id="",$p_obj = null) {
99 if ($p_obj != null && get_class($p_obj) == "prescription") {
100 $this->prescriptions[0] = $p_obj;
102 elseif (get_class($this->prescriptions[0]) != "prescription" ) {
103 $this->prescriptions[0] = new Prescription($id);
106 if (!empty($patient_id)) {
107 $this->prescriptions[0]->set_patient_id($patient_id);
110 // If quantity to dispense is not already set from a POST, set its
111 // default value.
112 if (! $this->get_template_vars('DISP_QUANTITY')) {
113 $this->assign('DISP_QUANTITY', $this->prescriptions[0]->quantity);
116 $this->default_action();
119 function list_action($id,$sort = "") {
120 if (empty($id)) {
121 $this->function_argument_error();
122 exit;
124 if (!empty($sort)) {
125 $this->assign("prescriptions", Prescription::prescriptions_factory($id,$sort));
127 else {
128 $this->assign("prescriptions", Prescription::prescriptions_factory($id));
131 // flag to indicate the CAMOS form is regsitered and active
132 $this->assign("CAMOS_FORM", isRegistered("CAMOS"));
134 $this->display($GLOBALS['template_dir'] . "prescription/" . $this->template_mod . "_list.html");
137 function block_action($id,$sort = "") {
138 if (empty($id)) {
139 $this->function_argument_error();
140 exit;
142 if (!empty($sort)) {
143 $this->assign("prescriptions", Prescription::prescriptions_factory($id,$sort));
145 else {
146 $this->assign("prescriptions", Prescription::prescriptions_factory($id));
148 //print_r(Prescription::prescriptions_factory($id));
149 $this->display($GLOBALS['template_dir'] . "prescription/" . $this->template_mod . "_block.html");
152 function fragment_action($id,$sort = "") {
153 if (empty($id)) {
154 $this->function_argument_error();
155 exit;
157 if (!empty($sort)) {
158 $this->assign("prescriptions", Prescription::prescriptions_factory($id,$sort));
160 else {
161 $this->assign("prescriptions", Prescription::prescriptions_factory($id));
163 //print_r(Prescription::prescriptions_factory($id));
164 $this->display($GLOBALS['template_dir'] . "prescription/" . $this->template_mod . "_fragment.html");
167 function lookup_action() {
168 $this->do_lookup();
169 $this->display($GLOBALS['template_dir'] . "prescription/" . $this->template_mod . "_lookup.html");
172 function edit_action_process() {
173 if ($_POST['process'] != "true")
174 return;
175 //print_r($_POST);
177 // Stupid Smarty code treats empty values as not specified values.
178 // Since active is a checkbox, represent the unchecked state as -1.
179 if (empty($_POST['active'])) $_POST['active'] = '-1';
181 $this->prescriptions[0] = new Prescription($_POST['id']);
182 parent::populate_object($this->prescriptions[0]);
183 //echo $this->prescriptions[0]->toString(true);
184 $this->prescriptions[0]->persist();
185 $_POST['process'] = "";
187 // If the "Prescribe and Dispense" button was clicked, then
188 // redisplay as in edit_action() but also replicate the fee and
189 // include a piece of javascript to call dispense().
191 if ($_POST['disp_button']) {
192 $this->assign("DISP_QUANTITY", $_POST['disp_quantity']);
193 $this->assign("DISP_FEE", $_POST['disp_fee']);
194 $this->assign("ENDING_JAVASCRIPT", "dispense();");
195 $this->_state = false;
196 return $this->edit_action($this->prescriptions[0]->id);
199 // Set the AMC reporting flag (to record percentage of prescriptions that
200 // are set as e-prescriptions)
201 if (!(empty($_POST['escribe_flag']))) {
202 // add the e-prescribe flag
203 processAmcCall('e_prescribe_amc', true, 'add', $this->prescriptions[0]->get_patient_id(), 'prescriptions', $this->prescriptions[0]->id);
205 else {
206 // remove the e-prescribe flag
207 processAmcCall('e_prescribe_amc', true, 'remove', $this->prescriptions[0]->get_patient_id(), 'prescriptions', $this->prescriptions[0]->id);
210 // Set the AMC reporting flag (to record prescriptions that checked drug formulary)
211 if (!(empty($_POST['checked_formulary_flag']))) {
212 // add the e-prescribe flag
213 processAmcCall('e_prescribe_chk_formulary_amc', true, 'add', $this->prescriptions[0]->get_patient_id(), 'prescriptions', $this->prescriptions[0]->id);
215 else {
216 // remove the e-prescribe flag
217 processAmcCall('e_prescribe_chk_formulary_amc', true, 'remove', $this->prescriptions[0]->get_patient_id(), 'prescriptions', $this->prescriptions[0]->id);
220 // Set the AMC reporting flag (to record prescriptions that are controlled substances)
221 if (!(empty($_POST['controlled_substance_flag']))) {
222 // add the e-prescribe flag
223 processAmcCall('e_prescribe_cont_subst_amc', true, 'add', $this->prescriptions[0]->get_patient_id(), 'prescriptions', $this->prescriptions[0]->id);
225 else {
226 // remove the e-prescribe flag
227 processAmcCall('e_prescribe_cont_subst_amc', true, 'remove', $this->prescriptions[0]->get_patient_id(), 'prescriptions', $this->prescriptions[0]->id);
230 // TajEmo Work by CB 2012/05/29 02:58:29 PM to stop from going to send screen. Improves Work Flow
231 // if ($this->prescriptions[0]->get_active() > 0) {
232 // return $this->send_action($this->prescriptions[0]->id);
233 // }
234 $this->list_action($this->prescriptions[0]->get_patient_id());
235 exit;
238 function send_action($id) {
239 $_POST['process'] = "true";
240 if(empty($id)) {
241 $this->function_argument_error();
244 $rx = new Prescription($id);
245 // Populate pharmacy info if the patient has a default pharmacy.
246 // Probably the Prescription object should handle this instead, but
247 // doing it there will require more careful research and testing.
248 $prow = sqlQuery("SELECT pt.pharmacy_id FROM prescriptions AS rx, " .
249 "patient_data AS pt WHERE rx.id = '$id' AND pt.pid = rx.patient_id");
250 if ($prow['pharmacy_id']) {
251 $rx->pharmacy->set_id($prow['pharmacy_id']);
252 $rx->pharmacy->populate();
254 $this->assign("prescription", $rx);
256 $this->_state = false;
257 return $this->fetch($GLOBALS['template_dir'] . "prescription/" .
258 $this->template_mod . "_send.html");
261 function multiprintfax_header(& $pdf, $p) {
262 return $this->multiprint_header( $pdf, $p );
265 function multiprint_header(& $pdf, $p) {
266 $this->providerid = $p->provider->id;
267 //print header
268 $pdf->ezImage($GLOBALS['oer_config']['prescriptions']['logo'],'','50','','center','');
269 $pdf->ezColumnsStart(array('num'=>2, 'gap'=>10));
270 $res = sqlQuery("SELECT concat('<b>',f.name,'</b>\n',f.street,'\n',f.city,', ',f.state,' ',f.postal_code,'\nTel:',f.phone,if(f.fax != '',concat('\nFax: ',f.fax),'')) addr FROM users JOIN facility AS f ON f.name = users.facility where users.id ='" .
271 add_escape_custom($p->provider->id) . "'");
272 $pdf->ezText($res['addr'],12);
273 $my_y = $pdf->y;
274 $pdf->ezNewPage();
275 $pdf->ezText('<b>' . $p->provider->get_name_display() . '</b>',12);
276 // A client had a bad experience with a patient misusing a DEA number, so
277 // now the doctors write those in on printed prescriptions and only when
278 // necessary. If you need to change this back, then please make it a
279 // configurable option. Faxed prescriptions were not changed. -- Rod
280 // Now it is configureable. Change value in
281 // Administration->Globals->Rx
282 if ($GLOBALS['rx_enable_DEA']) {
283 if ($this->is_faxing || $GLOBALS['rx_show_DEA']) {
284 $pdf->ezText('<b>' . xl('DEA') . ':</b>' . $p->provider->federal_drug_id, 12);
286 else {
287 $pdf->ezText('<b>' . xl('DEA') . ':</b> ________________________', 12);
291 if ($GLOBALS['rx_enable_NPI']) {
292 if ($this->is_faxing || $GLOBALS['rx_show_NPI']) {
293 $pdf->ezText('<b>' . xl('NPI') . ':</b>' . $p->provider->npi, 12);
295 else {
296 $pdf->ezText('<b>' . xl('NPI') . ':</b> _________________________', 12);
299 if ($GLOBALS['rx_enable_SLN']) {
300 if ($this->is_faxing || $GLOBALS['rx_show_SLN']) {
301 $pdf->ezText('<b>' . xl('State Lic. #') . ':</b>' . $p->provider->state_license_number, 12);
303 else {
304 $pdf->ezText('<b>' . xl('State Lic. #') . ':</b> ___________________', 12);
307 $pdf->ezColumnsStop();
308 if ($my_y < $pdf->y){
309 $pdf->ezSetY($my_y);
311 $pdf->ezText('',10);
312 $pdf->setLineStyle(1);
313 $pdf->ezColumnsStart(array('num'=>2));
314 $pdf->line($pdf->ez['leftMargin'],$pdf->y,$pdf->ez['pageWidth']-$pdf->ez['rightMargin'],$pdf->y);
315 $pdf->ezText('<b>' . xl('Patient Name & Address') . '</b>',6);
316 $pdf->ezText($p->patient->get_name_display(),10);
317 $res = sqlQuery("SELECT concat(street,'\n',city,', ',state,' ',postal_code,'\n',if(phone_home!='',phone_home,if(phone_cell!='',phone_cell,if(phone_biz!='',phone_biz,'')))) addr from patient_data where pid =". add_escape_custom($p->patient->id));
318 $pdf->ezText($res['addr']);
319 $my_y = $pdf->y;
320 $pdf->ezNewPage();
321 $pdf->line($pdf->ez['leftMargin'],$pdf->y,$pdf->ez['pageWidth']-$pdf->ez['rightMargin'],$pdf->y);
322 $pdf->ezText('<b>' . xl('Date of Birth') . '</b>',6);
323 $pdf->ezText($p->patient->date_of_birth,10);
324 $pdf->ezText('');
325 $pdf->line($pdf->ez['leftMargin'],$pdf->y,$pdf->ez['pageWidth']-$pdf->ez['rightMargin'],$pdf->y);
326 $pdf->ezText('<b>' . xl('Medical Record #') . '</b>',6);
327 $pdf->ezText(str_pad($p->patient->get_pubpid(), 10, "0", STR_PAD_LEFT),10);
328 $pdf->ezColumnsStop();
329 if ($my_y < $pdf->y){
330 $pdf->ezSetY($my_y);
332 $pdf->ezText('');
333 $pdf->line($pdf->ez['leftMargin'],$pdf->y,$pdf->ez['pageWidth']-$pdf->ez['rightMargin'],$pdf->y);
334 $pdf->ezText('<b>' . xl('Prescriptions') . '</b>',6);
335 $pdf->ezText('',10);
338 function multiprintcss_header($p) {
339 echo("<div class='paddingdiv'>\n");
340 $this->providerid = $p->provider->id;
341 echo ("<table cellspacing='0' cellpadding='0' width='100%'>\n");
342 echo ("<tr>\n");
343 echo ("<td></td>\n");
344 echo ("<td>\n");
345 echo ("<img WIDTH='68pt' src='./interface/pic/" . $GLOBALS['oer_config']['prescriptions']['logo_pic'] . "' />");
346 echo ("</td>\n");
347 echo ("</tr>\n");
348 echo ("<tr>\n");
349 echo ("<td>\n");
350 $res = sqlQuery("SELECT concat('<b>',f.name,'</b>\n',f.street,'\n',f.city,', ',f.state,' ',f.postal_code,'\nTel:',f.phone,if(f.fax != '',concat('\nFax: ',f.fax),'')) addr FROM users JOIN facility AS f ON f.name = users.facility where users.id ='" . add_escape_custom($p->provider->id) . "'");
351 if (!empty($res)) {
352 $patterns = array ('/\n/','/Tel:/','/Fax:/');
353 $replace = array ('<br>', xl('Tel').':', xl('Fax').':');
354 $res = preg_replace($patterns, $replace, $res);
356 echo ('<span class="large">' . $res['addr'] . '</span>');
357 echo ("</td>\n");
358 echo ("<td>\n");
359 echo ('<b><span class="large">' . $p->provider->get_name_display() . '</span></b>'. '<br>');
361 if ($GLOBALS['rx_enable_DEA']) {
362 if ($GLOBALS['rx_show_DEA']) {
363 echo ('<span class="large"><b>' . xl('DEA') . ':</b>' . $p->provider->federal_drug_id . '</span><br>');
365 else {
366 echo ('<b><span class="large">' . xl('DEA') . ':</span></b> ________________________<br>' );
369 if ($GLOBALS['rx_enable_NPI']) {
370 if ($GLOBALS['rx_show_NPI']) {
371 echo ('<span class="large"><b>' . xl('NPI') . ':</b>' . $p->provider->npi . '</span><br>');
373 else {
374 echo ('<b><span class="large">' . xl('NPI') . ':</span></b> ________________________<br>');
377 if ($GLOBALS['rx_enable_SLN']) {
378 if ($GLOBALS['rx_show_SLN']) {
379 echo ('<span class="large"><b>' . xl('State Lic. #') . ':</b>' . $p->provider->state_license_number . '</span><br>');
381 else {
382 echo ('<b><span class="large">' . xl('State Lic. #') . ':</span></b> ________________________<br>');
385 echo ("</td>\n");
386 echo ("</tr>\n");
387 echo ("<tr>\n");
388 echo ("<td rowspan='2' class='bordered'>\n");
389 echo ('<b><span class="small">' . xl('Patient Name & Address') . '</span></b>'. '<br>');
390 echo ($p->patient->get_name_display() . '<br>');
391 $res = sqlQuery("SELECT concat(street,'\n',city,', ',state,' ',postal_code,'\n',if(phone_home!='',phone_home,if(phone_cell!='',phone_cell,if(phone_biz!='',phone_biz,'')))) addr from patient_data where pid =". add_escape_custom($p->patient->id));
392 if (!empty($res)) {
393 $patterns = array ('/\n/');
394 $replace = array ('<br>');
395 $res = preg_replace($patterns, $replace, $res);
397 echo ($res['addr']);
398 echo ("</td>\n");
399 echo ("<td class='bordered'>\n");
400 echo ('<b><span class="small">' . xl('Date of Birth') . '</span></b>' . '<br>');
401 echo ($p->patient->date_of_birth );
402 echo ("</td>\n");
403 echo ("</tr>\n");
404 echo ("<tr>\n");
405 echo ("<td class='bordered'>\n");
406 echo ('<b><span class="small">' . xl('Medical Record #') . '</span></b>' . '<br>');
407 echo (str_pad($p->patient->get_pubpid(), 10, "0", STR_PAD_LEFT));
408 echo ("</td>\n");
409 echo ("</tr>\n");
410 echo ("<tr>\n");
411 echo ("<td colspan='2' class='bordered'>\n");
412 echo ('<b><span class="small">' . xl('Prescriptions') . '</span></b>');
413 echo ("</td>\n");
414 echo ("</tr>\n");
415 echo ("</table>\n");
418 function multiprintcss_preheader() {
419 // this sets styling and other header information of the multiprint css sheet
420 echo ("<html>\n");
421 echo ("<head>\n");
422 echo ("<style>\n");
423 echo ("div {\n");
424 echo (" padding: 0;\n");
425 echo (" margin: 0;\n");
426 echo ("}\n");
427 echo ("body {\n");
428 echo (" font-family: sans-serif;\n");
429 echo (" font-weight: normal;\n");
430 echo (" font-size: 10pt;\n");
431 echo (" background: white;\n");
432 echo (" color: black;\n");
433 echo ("}\n");
434 echo ("span.large {\n");
435 echo (" font-size: 12pt;\n");
436 echo ("}\n");
437 echo ("span.small {\n");
438 echo (" font-size: 6pt;\n");
439 echo ("}\n");
440 echo ("td {\n");
441 echo (" vertical-align: top;\n");
442 echo (" width: 50%;\n");
443 echo (" font-size: 10pt;\n");
444 echo (" padding-bottom: 8pt;\n");
445 echo ("}\n");
446 echo ("td.bordered {\n");
447 echo (" border-top:1pt solid black;\n");
448 echo ("}\n");
449 echo ("div.paddingdiv {\n");
450 echo (" width: 524pt;\n");
451 echo (" height: 668pt;\n");
452 echo ("}\n");
453 echo ("div.scriptdiv {\n");
454 echo (" padding-top: 12pt;\n");
455 echo (" padding-bottom: 22pt;\n");
456 echo (" padding-left: 35pt;\n");
457 echo (" border-bottom:1pt solid black;\n");
458 echo ("}\n");
459 echo ("div.signdiv {\n");
460 echo (" margin-top: 40pt;\n");
461 echo (" font-size: 12pt;\n");
462 echo ("}\n");
463 echo ("</style>\n");
465 echo ("<title>" . xl('Prescription') . "</title>\n");
466 echo ("</head>\n");
467 echo ("<body>\n");
470 function multiprintfax_footer( & $pdf ) {
471 return $this->multiprint_footer( $pdf );
474 function multiprint_footer(& $pdf) {
475 if($this->pconfig['use_signature'] && ( $this->is_faxing || $this->is_print_to_fax ) ) {
476 $sigfile = str_replace('{userid}', $_SESSION{"authUser"}, $this->pconfig['signature']);
477 if (file_exists($sigfile)) {
478 $pdf->ezText( xl('Signature') . ": ",12);
479 // $pdf->ezImage($sigfile, "", "", "none", "left");
480 $pdf->ezImage($sigfile, "", "", "none", "center");
481 $pdf->ezText( xl('Date') . ": " . date('Y-m-d'), 12);
482 if ( $this->is_print_to_fax ) {
483 $pdf->ezText(xl('Please do not accept this prescription unless it was received via facsimile.'));
486 $addenumFile = $this->pconfig['addendum_file'];
487 if ( file_exists( $addenumFile ) ) {
488 $pdf->ezText('');
489 $f = fopen($addenumFile, "r");
490 while ( $line = fgets($f, 1000) ) {
491 $pdf->ezText(rtrim($line));
495 return;
498 $pdf->ezText("\n\n\n\n" . xl('Signature') . ":________________________________\n" . xl('Date') . ": " . date('Y-m-d'),12);
501 function multiprintcss_footer() {
502 echo ("<div class='signdiv'>\n");
503 echo (xl('Signature') . ":________________________________<br>");
504 echo (xl('Date') . ": " . date('Y-m-d'));
505 echo ("</div>\n");
506 echo ("</div>\n");
509 function multiprintcss_postfooter() {
510 echo("<script language='JavaScript'>\n");
511 echo("opener.top.printLogPrint(window);\n");
512 echo("</script>\n");
513 echo("</body>\n");
514 echo("</html>\n");
517 function get_prescription_body_text($p) {
518 $body = '<b>' . xlt('Rx') . ': ' . text($p->get_drug()) . ' ' . text($p->get_size()) . ' ' . text($p->get_unit_display());
519 if ($p->get_form()) $body .= ' [' . text($p->form_array[$p->get_form()]) . "]";
520 $body .= "</b> <i>" .
521 text($p->substitute_array[$p->get_substitute()]) . "</i>\n" .
522 '<b>' . xlt('Disp #') . ':</b> <u>' . text($p->get_quantity()) . "</u>\n" .
523 '<b>' . xlt('Sig') . ':</b> ' . text($p->get_dosage()) . ' ' . text($p->form_array[$p->get_form()]) . ' ' .
524 text($p->route_array[$p->get_route()]) . ' ' . text($p->interval_array[$p->get_interval()]) . "\n";
525 if ($p->get_refills() > 0) {
526 $body .= "\n<b>" . xlt('Refills') . ":</b> <u>" . text($p->get_refills());
527 if ($p->get_per_refill()) {
528 $body .= " " . xlt('of quantity') . " " . text($p->get_per_refill());
530 $body .= "</u>\n";
532 else {
533 $body .= "\n<b>" . xlt('Refills') . ":</b> <u>0 (" . xlt('Zero') . ")</u>\n";
535 $note = $p->get_note();
536 if ($note != '') {
537 $body .= "\n" . text($note) . "\n";
539 return $body;
542 function multiprintfax_body(& $pdf, $p){
543 return $this->multiprint_body( $pdf, $p );
546 function multiprint_body(& $pdf, $p){
547 $pdf->ez['leftMargin'] += $pdf->ez['leftMargin'];
548 $pdf->ez['rightMargin'] += $pdf->ez['rightMargin'];
549 $d = $this->get_prescription_body_text($p);
550 if ( $pdf->ezText($d,10,array(),1) ) {
551 $pdf->ez['leftMargin'] -= $pdf->ez['leftMargin'];
552 $pdf->ez['rightMargin'] -= $pdf->ez['rightMargin'];
553 $this->multiprint_footer($pdf);
554 $pdf->ezNewPage();
555 $this->multiprint_header($pdf, $p);
556 $pdf->ez['leftMargin'] += $pdf->ez['leftMargin'];
557 $pdf->ez['rightMargin'] += $pdf->ez['rightMargin'];
559 $my_y = $pdf->y;
560 $pdf->ezText($d,10);
561 if($this->pconfig['shading']) {
562 $pdf->setColor(.9,.9,.9);
563 $pdf->filledRectangle($pdf->ez['leftMargin'],$pdf->y,$pdf->ez['pageWidth']-$pdf->ez['rightMargin']-$pdf->ez['leftMargin'],$my_y - $pdf->y);
564 $pdf->setColor(0,0,0);
566 $pdf->ezSetY($my_y);
567 $pdf->ezText($d,10);
568 $pdf->ez['leftMargin'] = $GLOBALS['rx_left_margin'];
569 $pdf->ez['rightMargin'] = $GLOBALS['rx_right_margin'];
570 $pdf->ezText('');
571 $pdf->line($pdf->ez['leftMargin'],$pdf->y,$pdf->ez['pageWidth']-$pdf->ez['rightMargin'],$pdf->y);
572 $pdf->ezText('');
575 function multiprintcss_body($p){
576 $d = $this->get_prescription_body_text($p);
577 $patterns = array ('/\n/','/ /');
578 $replace = array ('<br>','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
579 $d = preg_replace($patterns, $replace, $d);
580 echo ("<div class='scriptdiv'>\n" . $d . "</div>\n");
583 function multiprintfax_action($id = "") {
584 $this->is_print_to_fax=true;
585 return $this->multiprint_action( $id );
588 function multiprint_action($id = "") {
589 $_POST['process'] = "true";
590 if(empty($id)) {
591 $this->function_argument_error();
593 $pdf = new Cezpdf($GLOBALS['rx_paper_size']);
594 $pdf->ezSetMargins($GLOBALS['rx_top_margin']
595 ,$GLOBALS['rx_bottom_margin']
596 ,$GLOBALS['rx_left_margin']
597 ,$GLOBALS['rx_right_margin']
599 $pdf->selectFont('Helvetica');
601 // $print_header = true;
602 $on_this_page = 0;
604 //print prescriptions body
605 $this->_state = false; // Added by Rod - see Controller.class.php
606 $ids = preg_split('/::/', substr($id,1,strlen($id) - 2), -1, PREG_SPLIT_NO_EMPTY);
607 foreach ($ids as $id) {
608 $p = new Prescription($id);
609 // if ($print_header == true) {
610 if ($on_this_page == 0) {
611 $this->multiprint_header($pdf, $p);
613 if (++$on_this_page > 3 || $p->provider->id != $this->providerid) {
614 $this->multiprint_footer($pdf);
615 $pdf->ezNewPage();
616 $this->multiprint_header($pdf, $p);
617 // $print_header = false;
618 $on_this_page = 1;
620 $this->multiprint_body($pdf, $p);
623 $this->multiprint_footer($pdf);
625 $pdf->ezStream();
626 return;
629 function multiprintcss_action($id = "") {
630 $_POST['process'] = "true";
631 if(empty($id)) {
632 $this->function_argument_error();
635 $this->multiprintcss_preheader();
637 $this->_state = false; // Added by Rod - see Controller.class.php
638 $ids = preg_split('/::/', substr($id,1,strlen($id) - 2), -1, PREG_SPLIT_NO_EMPTY);
640 $on_this_page = 0;
641 foreach ($ids as $id) {
642 $p = new Prescription($id);
643 if ($on_this_page == 0) {
644 $this->multiprintcss_header($p);
646 if (++$on_this_page > 3 || $p->provider->id != $this->providerid) {
647 $this->multiprintcss_footer();
648 $this->multiprintcss_header($p);
649 $on_this_page = 1;
651 $this->multiprintcss_body($p);
653 $this->multiprintcss_footer();
654 $this->multiprintcss_postfooter();
655 return;
658 function send_action_process($id) {
659 $dummy = ""; // Added by Rod to avoid run-time warnings
660 if ($_POST['process'] != "true")
661 return;
662 if(empty($id)) {
663 $this->function_argument_error();
665 $p = new Prescription($id);
666 switch ($_POST['submit']) {
668 case (xl("Print")." (".xl("PDF").")"):
669 // The following statement added by Rod.
670 // Looking at Controller.class.php, it appears that _state is set to false
671 // to indicate that no further HTML is to be generated.
672 $this->_state = false; // Added by Rod - see Controller.class.php
673 return $this->_print_prescription($p, $dummy);
674 break;
675 case (xl("Print")." (".xl("HTML").")"):
676 $this->_state = false;
677 return $this->_print_prescription_css($p, $dummy);
678 break;
679 case xl("Print To Fax"):
680 $this->_state = false;
681 $this->is_print_to_fax = true;
682 return $this->_print_prescription($p, $dummy);
683 break;
684 case xl("Email"):
685 return $this->_email_prescription($p,$_POST['email_to']);
686 break;
687 case xl("Fax"):
688 //this is intended to be the hook for the hylafax code we already have that hasn't worked its way into the tree yet.
689 //$this->assign("process_result","No fax server is currently setup.");
690 return $this->_fax_prescription($p,$_POST['fax_to']);
691 break;
692 case xl("Auto Send"):
693 $pharmacy_id = $_POST['pharmacy_id'];
694 //echo "auto sending to : " . $_POST['pharmacy_id'];
695 $phar = new Pharmacy($_POST['pharmacy_id']);
696 //print_r($phar);
697 if ($phar->get_transmit_method() == TRANSMIT_PRINT) {
698 return $this->_print_prescription($p, $dummy);
700 elseif ($phar->get_transmit_method() == TRANSMIT_EMAIL) {
701 $email = $phar->get_email();
702 if (!empty($email)) {
703 return $this->_email_prescription($p,$phar->get_email());
705 //else print it
707 elseif ($phar->get_transmit_method() == TRANSMIT_FAX) {
708 $faxNum= $phar->get_fax();
709 if(!empty($faxNum)) {
710 Return $this->_fax_prescription ($p,$faxNum);
712 // return $this->assign("process_result","No fax server is currently setup.");
713 // else default is printing,
715 else {
716 //the pharmacy has no default or default is print
717 return $this->_print_prescription($p, $dummy);
719 break;
722 return;
726 function _print_prescription($p, & $toFile) {
727 $pdf = new Cezpdf($GLOBALS['rx_paper_size']);
728 $pdf->ezSetMargins($GLOBALS['rx_top_margin']
729 ,$GLOBALS['rx_bottom_margin']
730 ,$GLOBALS['rx_left_margin']
731 ,$GLOBALS['rx_right_margin']
734 $pdf->selectFont('Helvetica');
736 // Signature images are to be used only when faxing.
737 if(!empty($toFile)) $this->is_faxing = true;
739 $this->multiprint_header($pdf, $p);
740 $this->multiprint_body($pdf, $p);
741 $this->multiprint_footer($pdf);
743 if(!empty($toFile)) {
744 $toFile = $pdf->ezOutput();
746 else {
747 $pdf->ezStream();
748 // $pdf->ezStream(array('compress' => 0)); // for testing with uncompressed output
750 return;
753 function _print_prescription_css($p, & $toFile) {
755 $this->multiprintcss_preheader();
756 $this->multiprintcss_header($p);
757 $this->multiprintcss_body($p);
758 $this->multiprintcss_footer();
759 $this->multiprintcss_postfooter();
763 function _print_prescription_old($p, & $toFile) {
764 $pdf = new Cezpdf($GLOBALS['rx_paper_size']);
765 $pdf->ezSetMargins($GLOBALS['rx_top_margin']
766 ,$GLOBALS['rx_bottom_margin']
767 ,$GLOBALS['rx_left_margin']
768 ,$GLOBALS['rx_right_margin']
770 $pdf->selectFont('Helvetica');
771 if(!empty($this->pconfig['logo'])) {
772 $pdf->ezImage($this->pconfig['logo'],"","","none","left");
774 $pdf->ezText($p->get_prescription_display(),10);
775 if($this->pconfig['use_signature']) {
776 $pdf->ezImage($this->pconfig['signature'],"","","none","left");
778 else{
779 $pdf->ezText("\n\n\n\nSignature:________________________________",10);
781 if(!empty($toFile))
783 $toFile = $pdf->ezOutput();
785 else
787 $pdf->ezStream();
788 // $pdf->ezStream(array('compress' => 0)); // for testing with uncompressed output
790 return;
793 function _email_prescription($p,$email) {
794 if (empty($email)) {
795 $this->assign("process_result","Email could not be sent, the address supplied: '$email' was empty or invalid.");
796 return;
798 $mail = new PHPMailer();
799 //this is a temporary config item until the rest of the per practice billing settings make their way in
800 $mail->From = $GLOBALS['practice_return_email_path'];
801 $mail->FromName = $p->provider->get_name_display();
802 $mail->isMail();
803 $mail->Host = "localhost";
804 $mail->Mailer = "mail";
805 $text_body = $p->get_prescription_display();
806 $mail->Body = $text_body;
807 $mail->Subject = "Prescription for: " . $p->patient->get_name_display();
808 $mail->AddAddress($email);
809 if($mail->Send()) {
810 $this->assign("process_result","Email was successfully sent to: " . $email);
811 return;
813 else {
814 $this->assign("process_result","There has been a mail error sending to " . $_POST['email_to'] . " " . $mail->ErrorInfo);
815 return;
819 function do_lookup() {
820 if ($_POST['process'] != "true") {
821 // don't do a lookup
822 $this->assign("drug", $_GET['drug']);
823 return;
826 // process the lookup
827 $this->assign("drug", $_POST['drug']);
828 $list = array();
829 if (!empty($_POST['drug'])) {
830 $list = $this->RxList->get_list($_POST['drug']);
833 if (is_array($list)) {
834 $list = array_flip($list);
835 $this->assign("drug_options",$list);
836 $this->assign("drug_values",array_keys($list));
838 else {
839 $this->assign("NO_RESULTS","No results found for: " .$_POST['drug'] . "<br />");
841 //print_r($_POST);
842 //$this->assign("PROCESS","");
844 $_POST['process'] = "";
847 function _fax_prescription($p,$faxNum)
849 $err = "Sent fax";
850 //strip - ,(, ), and ws
851 $faxNum = preg_replace("/(-*)(\(*)(\)*)(\s*)/","",$faxNum);
852 //validate the number
854 if(!empty($faxNum) && is_numeric($faxNum))
856 //get the sendfax command and execute it
857 $cmd = $this->pconfig['sendfax'];
858 // prepend any prefix to the fax number
859 $pref=$this->pconfig['prefix'];
860 $faxNum=$pref.$faxNum;
861 if(empty($cmd))
863 $err .= " Send fax not set in includes/config.php";
865 else
867 //generate file to fax
868 $faxFile = "Failed";
869 $this->_print_prescription($p, $faxFile);
870 if(empty($faxFile))
872 $err .= " _print_prescription returned empty file";
874 $fileName = $GLOBALS['OE_SITE_DIR'] . "/documents/" . $p->get_id() .
875 $p->get_patient_id() . "_fax_.pdf";
876 //print "filename is $fileName";
877 touch($fileName); // php bug
878 $handle = fopen($fileName,"w");
879 if(!$handle)
881 $err .= " Failed to open file $fileName to write fax to";
883 if(fwrite($handle, $faxFile) === false)
885 $err .= " Failed to write data to $fileName";
887 fclose($handle);
888 $args = " -n -d $faxNum $fileName";
889 //print "command is $cmd $args<br>";
890 exec($cmd . $args);
894 else
896 $err = "bad fax number passed to function";
898 if($err)
900 $this->assign("process_result",$err);