Implemented Selectable Print Orientation (Portrait, Landscape) for all reports in...
[fa-stable.git] / reporting / includes / pdf_report.inc
index 682b8af319c5a61e644677ce1600f97582cd9eed..20b96bd4dc117553f39c593fd8e85c50521b2d9a 100644 (file)
@@ -946,6 +946,13 @@ class FrontReport extends Cpdf
                        $this->{$this->headerTmpl}();
        }
 
+       function recalculate_cols(&$cols)
+       {
+               $factor = (user_pagesize() == "A4" ? 1.4 : 1.3);
+               foreach($cols as $key => $col)
+                       $cols[$key] = intval($col * $factor); 
+       }
+
        function End($email=0, $subject='')
        {
                global $pdf_debug, $path_to_root;