X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2Freporting.inc;h=80632db211e2b2645413846bbad7ec37ef0d746d;hb=2aea99756a8c19766f0f9dfee56b27f7c1994f37;hp=018da18b7030010a053726835c09905c3f28cc97;hpb=0c1ab57c09d87eed2bd248892dbfe3f256767a82;p=fa-stable.git diff --git a/reporting/includes/reporting.inc b/reporting/includes/reporting.inc index 018da18b..80632db2 100644 --- a/reporting/includes/reporting.inc +++ b/reporting/includes/reporting.inc @@ -70,7 +70,9 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, 'PARAM_3' => $email, 'PARAM_4' => '', 'PARAM_5' => '', - 'PARAM_6' => $def_orientation); + 'PARAM_6' => $rep == 107 ? '' : $def_orientation); + if ($rep == 107) + $ar['PARAM_7'] = $def_orientation; break; case ST_PURCHORDER : $rep = 209; @@ -114,9 +116,10 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, 'PARAM_3' => '', 'PARAM_4' => $def_orientation); break; -// default: $ar = array(); + default: + return null; } - + return print_link($link_text, $rep, $ar, "", $icon, $class, $id); } // @@ -125,7 +128,7 @@ function print_document_link($doc_no, $link_text, $link=true, $type_no, function print_link($link_text, $rep, $pars = array(), $dir = '', $icon=false, $class='printlink', $id='') { - global $path_to_root, $pdf_debug; + global $path_to_root, $SysPrefs; $url = $dir == '' ? $path_to_root.'/reporting/prn_redirect.php?' : $dir; @@ -137,7 +140,7 @@ function print_link($link_text, $rep, $pars = array(), $dir = '', $url .= implode ('&', $pars); if ($class != '') - $class = $pdf_debug ? '' : " class='$class'"; + $class = $SysPrefs->pdf_debug ? '' : " class='$class'"; if ($id != '') $id = " id='$id'"; $pars = access_string($link_text); @@ -185,4 +188,3 @@ function parse_notes_params($str, $sep=" ", $delim="#") { return $param_array; } -?> \ No newline at end of file