Revision: 6403
http://care2002.svn.sourceforge.net/care2002/?rev=6403&view=rev
Author: mizuko
Date: 2010-06-28 17:56:14 +0000 (Mon, 28 Jun 2010)
Log Message:
-----------
fixes #52 - pdfmaker
Modified Paths:
--------------
care2x/branches/gettext/modules/laboratory/print/report.php
care2x/branches/gettext/modules/laboratory/print/report_all.php
care2x/branches/gettext/modules/medocs/print/report.php
care2x/branches/gettext/modules/nursing/print/report.php
care2x/branches/gettext/modules/nursing/print/report_all.php
care2x/branches/gettext/modules/registration_admission/print/regdata.php
care2x/branches/gettext/modules/registration_admission/print/report.php
care2x/branches/gettext/modules/registration_admission/print/report_all.php
Removed Paths:
-------------
care2x/branches/gettext/modules/pdfmaker/
Modified: care2x/branches/gettext/modules/laboratory/print/report.php
===================================================================
--- care2x/branches/gettext/modules/laboratory/print/report.php 2010-06-28
17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/laboratory/print/report.php 2010-06-28
17:56:14 UTC (rev 6403)
@@ -57,9 +57,9 @@
# Load the page header #1
- require('../std_plates/pageheader.php');
+ require($root_path.'include/std_plates/pageheader.php');
# Load the patient data plate #1
- require('../std_plates/patientdata.php');
+ require($root_path.'include/std_plates/patientdata.php');
$data=NULL;
# make empty line
Modified: care2x/branches/gettext/modules/laboratory/print/report_all.php
===================================================================
--- care2x/branches/gettext/modules/laboratory/print/report_all.php
2010-06-28 17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/laboratory/print/report_all.php
2010-06-28 17:56:14 UTC (rev 6403)
@@ -118,10 +118,10 @@
// Load the page header #1
-require('../std_plates/pageheader.php');
+require($root_path.'include/std_plates/pageheader.php');
// Load the patient data plate #1
$enc = $encounter_nr;
-require('../std_plates/patientdata.php');
+require($root_path.'include/std_plates/patientdata.php');
$data=NULL;
// make empty line
Modified: care2x/branches/gettext/modules/medocs/print/report.php
===================================================================
--- care2x/branches/gettext/modules/medocs/print/report.php 2010-06-28
17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/medocs/print/report.php 2010-06-28
17:56:14 UTC (rev 6403)
@@ -68,19 +68,14 @@
}
# Load the page header #1
-require('../std_plates/pageheader.php');
+require($root_path.'include/std_plates/pageheader.php');
# Load the patient data plate #1
-require('../std_plates/patientdata.php');
+require($root_path.'include/std_plates/patientdata.php');
$data=NULL;
# make empty line
//$y=$pdf->ezText("\n",14);
-/*$data[]=array($LDPatientData);
-$pdf->ezTable($data,'','',array('xPos'=>'left','xOrientation'=>'right','showLines'=>0,'fontSize'=>$report_titlesize,'showHeadings'=>0,'shaded'=>2,'shadeCol2'=>array(0.9,0.9,0.9),'width'=>555));
-*/# make empty line
-//$y=$pdf->ezText("\n",14);
-
# reset
$data=NULL;
# Print the patient aux data
Modified: care2x/branches/gettext/modules/nursing/print/report.php
===================================================================
--- care2x/branches/gettext/modules/nursing/print/report.php 2010-06-28
17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/nursing/print/report.php 2010-06-28
17:56:14 UTC (rev 6403)
@@ -56,9 +56,9 @@
}
# Load the page header #1
- require('../std_plates/pageheader.php');
+ require($root_path.'include/std_plates/pageheader.php');
# Load the patient data plate #1
- require('../std_plates/patientdata.php');
+ require($root_path.'include/std_plates/patientdata.php');
$data=NULL;
# make empty line
Modified: care2x/branches/gettext/modules/nursing/print/report_all.php
===================================================================
--- care2x/branches/gettext/modules/nursing/print/report_all.php
2010-06-28 17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/nursing/print/report_all.php
2010-06-28 17:56:14 UTC (rev 6403)
@@ -160,9 +160,9 @@
// Load the page header #1
-require('../std_plates/pageheader.php');
+require($root_path.'include/std_plates/pageheader.php');
// Load the patient data plate #1
-require('../std_plates/patientdata.php');
+require($root_path.'include/std_plates/patientdata.php');
$data=NULL;
// make empty line
Modified:
care2x/branches/gettext/modules/registration_admission/print/regdata.php
===================================================================
--- care2x/branches/gettext/modules/registration_admission/print/regdata.php
2010-06-28 17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/registration_admission/print/regdata.php
2010-06-28 17:56:14 UTC (rev 6403)
@@ -94,9 +94,9 @@
}
# Load the page header #1
-require('../std_plates/pageheader.php');
+require($root_path.'include/std_plates/pageheader.php');
# Load the patient data plate #1
-require('../std_plates/persondata.php');
+require($root_path.'include/std_plates/persondata.php');
$data=NULL;
# make empty line
Modified:
care2x/branches/gettext/modules/registration_admission/print/report.php
===================================================================
--- care2x/branches/gettext/modules/registration_admission/print/report.php
2010-06-28 17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/registration_admission/print/report.php
2010-06-28 17:56:14 UTC (rev 6403)
@@ -57,9 +57,9 @@
# Load the page header #1
- require('../std_plates/pageheader.php');
+ require($root_path.'include/std_plates/pageheader.php');
# Load the patient data plate #1
- require('../std_plates/patientdata.php');
+ require($root_path.'include/std_plates/patientdata.php');
$data=NULL;
# make empty line
Modified:
care2x/branches/gettext/modules/registration_admission/print/report_all.php
===================================================================
--- care2x/branches/gettext/modules/registration_admission/print/report_all.php
2010-06-28 17:50:12 UTC (rev 6402)
+++ care2x/branches/gettext/modules/registration_admission/print/report_all.php
2010-06-28 17:56:14 UTC (rev 6403)
@@ -84,9 +84,9 @@
}
# Load the page header #1
- require('../std_plates/pageheader.php');
+ require($root_path.'include/std_plates/pageheader.php');
# Load the patient data plate #1
- require('../std_plates/patientdata.php');
+ require($root_path.'include/std_plates/patientdata.php');
$data=NULL;
# make empty line
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Care2002-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/care2002-developers