X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep104.php;h=e1cbdefc0ab145009abb72869b9be6e82aeff839;hb=7ba24fed715d41c0210f4395fd885ef34a483d5e;hp=280f447a74cd39363df0faafb3aac089347d2b9f;hpb=ad96cd0abbfd826592b851b8e0cb6d89e450fdf4;p=fa-stable.git diff --git a/reporting/rep104.php b/reporting/rep104.php index 280f447a..e1cbdefc 100644 --- a/reporting/rep104.php +++ b/reporting/rep104.php @@ -9,7 +9,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 2; +$page_security = 'SA_PRICEREP'; // ---------------------------------------------------------------- // $ Revision: 2.0 $ // Creator: Joe Hunt @@ -24,7 +24,7 @@ include_once($path_to_root . "/includes/ui/ui_input.inc"); include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/gl/includes/gl_db.inc"); include_once($path_to_root . "/sales/includes/db/sales_types_db.inc"); -include_once($path_to_root . "/inventory/includes/db/items_category_db.inc"); +include_once($path_to_root . "/inventory/includes/inventory_db.inc"); //---------------------------------------------------------------------------------------------------- @@ -159,13 +159,14 @@ function print_price_listing() } if ($pictures) { - $image = $comp_path . '/'. $user_comp . "/images/" . $myrow['stock_id'] . ".jpg"; + $image = $comp_path . '/'. $user_comp . "/images/" + . item_img_name($myrow['stock_id']) . ".jpg"; if (file_exists($image)) { $rep->NewLine(); if ($rep->row - $pic_height < $rep->bottomMargin) $rep->Header(); - $rep->AddImage($image, $rep->cols[1], $rep->row - $pic_height, $pic_width, $pic_height); + $rep->AddImage($image, $rep->cols[1], $rep->row - $pic_height, 0, $pic_height); $rep->row -= $pic_height; $rep->NewLine(); }