X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep104.php;h=f73a2c4a2a079c9f3b49b73da73acb795a50af7e;hb=477c1f221df891f39e9363f7b34e6ff1eb4ad4c7;hp=b431fe3e853adb02a401cc2eefb61c4ed9fe4eb6;hpb=5b8f4c4b4aa8cf996bc071f116bfce1273200fa2;p=fa-stable.git diff --git a/reporting/rep104.php b/reporting/rep104.php index b431fe3e..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']; @@ -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(); } }