X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep104.php;h=c2dc63a3716866014262e38a2c72eadb12a540e7;hb=48589f9ce6c51bb25e2fa8ed83c57d9dfa485e44;hp=a9bec54ba2115c1e61c30dc8908d324f9216f868;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/reporting/rep104.php b/reporting/rep104.php index a9bec54b..c2dc63a3 100644 --- a/reporting/rep104.php +++ b/reporting/rep104.php @@ -32,17 +32,17 @@ print_price_listing(); function fetch_items($category=0) { - $sql = "SELECT ".TB_PREF."stock_master.stock_id, ".TB_PREF."stock_master.description AS name, - ".TB_PREF."stock_master.material_cost+".TB_PREF."stock_master.labour_cost+".TB_PREF."stock_master.overhead_cost AS Standardcost, - ".TB_PREF."stock_master.category_id,".TB_PREF."stock_master.units, - ".TB_PREF."stock_category.description - FROM ".TB_PREF."stock_master, - ".TB_PREF."stock_category - WHERE ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id AND NOT ".TB_PREF."stock_master.inactive"; + $sql = "SELECT item.stock_id, item.description AS name, + item.material_cost AS Standardcost, + item.category_id,item.units, + category.description + FROM ".TB_PREF."stock_master item, + ".TB_PREF."stock_category category + WHERE item.category_id=category.category_id AND NOT item.inactive"; if ($category != 0) - $sql .= " AND ".TB_PREF."stock_category.category_id = ".db_escape($category); - $sql .= " ORDER BY ".TB_PREF."stock_master.category_id, - ".TB_PREF."stock_master.stock_id"; + $sql .= " AND category.category_id = ".db_escape($category); + $sql .= " AND item.mb_flag<> 'F' ORDER BY item.category_id, + item.stock_id"; return db_query($sql,"No transactions were returned"); } @@ -51,11 +51,9 @@ function get_kits($category=0) { $sql = "SELECT i.item_code AS kit_code, i.description AS kit_name, c.category_id AS cat_id, c.description AS cat_name, count(*)>1 AS kit FROM - ".TB_PREF."item_codes i - LEFT JOIN - ".TB_PREF."stock_category c - ON i.category_id=c.category_id"; - $sql .= " WHERE !i.is_foreign AND i.item_code!=i.stock_id"; + ".TB_PREF."item_codes i + LEFT JOIN ".TB_PREF."stock_category c ON i.category_id=c.category_id + WHERE !i.is_foreign AND i.item_code!=i.stock_id"; if ($category != 0) $sql .= " AND c.category_id = ".db_escape($category); $sql .= " GROUP BY i.item_code"; @@ -66,7 +64,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']; @@ -74,12 +72,14 @@ function print_price_listing() $pictures = $_POST['PARAM_3']; $showGP = $_POST['PARAM_4']; $comments = $_POST['PARAM_5']; - $destination = $_POST['PARAM_6']; + $orientation = $_POST['PARAM_6']; + $destination = $_POST['PARAM_7']; if ($destination) 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'); $dec = user_price_dec(); $home_curr = get_company_pref('curr_default'); @@ -121,7 +121,9 @@ function print_price_listing() else $user_comp = ""; - $rep = new FrontReport(_('Price Listing'), "PriceListing", user_pagesize()); + $rep = new FrontReport(_('Price Listing'), "PriceListing", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -165,10 +167,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(); } } @@ -211,4 +213,3 @@ function print_price_listing() $rep->End(); } -?> \ No newline at end of file