X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep104.php;h=42eed72221a47de131e3e05ce6171b0fd705220d;hb=5dec41f0d87e407e1c9ffcb8eb63b92e4e471a9b;hp=ecd2c9674524dc29c45312d3244f57694eb34b21;hpb=f50187b9c3095886d7fd847f635cd8763109a75e;p=fa-stable.git diff --git a/reporting/rep104.php b/reporting/rep104.php index ecd2c967..42eed722 100644 --- a/reporting/rep104.php +++ b/reporting/rep104.php @@ -24,11 +24,10 @@ 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"); //---------------------------------------------------------------------------------------------------- -// trial_inquiry_controls(); print_price_listing(); function fetch_items($category=0) @@ -77,15 +76,9 @@ function print_price_listing() $comments = $_POST['PARAM_5']; $destination = $_POST['PARAM_6']; if ($destination) - { include_once($path_to_root . "/reporting/includes/excel_report.inc"); - $filename = "PriceListing.xml"; - } else - { include_once($path_to_root . "/reporting/includes/pdf_report.inc"); - $filename = "PriceListing.pdf"; - } $dec = user_price_dec(); @@ -128,7 +121,7 @@ function print_price_listing() else $user_comp = ""; - $rep = new FrontReport(_('Price Listing'), "PriceListing.pdf", user_pagesize()); + $rep = new FrontReport(_('Price Listing'), "PriceListing", user_pagesize()); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -166,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(); }