X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep104.php;h=f73a2c4a2a079c9f3b49b73da73acb795a50af7e;hb=9a1b3abd5371ad7f6315db1d56f8356587444314;hp=72dfb9cc3fc90258688cebcc6825a4c06b91f819;hpb=0489317205141deaecefe3a7243d11a3e38a51d0;p=fa-stable.git diff --git a/reporting/rep104.php b/reporting/rep104.php index 72dfb9cc..f73a2c4a 100644 --- a/reporting/rep104.php +++ b/reporting/rep104.php @@ -66,7 +66,7 @@ function get_kits($category=0) function print_price_listing() { - global $path_to_root, $pic_height, $pic_width; + global $path_to_root, $SysPrefs; $currency = $_POST['PARAM_0']; $category = $_POST['PARAM_1']; @@ -80,8 +80,8 @@ function print_price_listing() include_once($path_to_root . "/reporting/includes/excel_report.inc"); else include_once($path_to_root . "/reporting/includes/pdf_report.inc"); - $orientation = ($orientation ? 'L' : 'P'); + $orientation = ($orientation ? 'L' : 'P'); $dec = user_price_dec(); $home_curr = get_company_pref('curr_default'); @@ -125,7 +125,7 @@ function print_price_listing() $rep = new FrontReport(_('Price Listing'), "PriceListing", user_pagesize(), 9, $orientation); if ($orientation == 'L') - $rep->recalculate_cols($cols); + recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -169,10 +169,10 @@ function print_price_listing() if (file_exists($image)) { $rep->NewLine(); - if ($rep->row - $pic_height < $rep->bottomMargin) + if ($rep->row - $SysPrefs->pic_height < $rep->bottomMargin) $rep->NewPage(); - $rep->AddImage($image, $rep->cols[1], $rep->row - $pic_height, 0, $pic_height); - $rep->row -= $pic_height; + $rep->AddImage($image, $rep->cols[1], $rep->row - $SysPrefs->pic_height, 0, $SysPrefs->pic_height); + $rep->row -= $SysPrefs->pic_height; $rep->NewLine(); } } @@ -215,4 +215,3 @@ function print_price_listing() $rep->End(); } -?> \ No newline at end of file