X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep104.php;h=c2dc63a3716866014262e38a2c72eadb12a540e7;hb=523b8c69689f9ceb978b422b3e65a7eb9c089b6f;hp=d78b79c63dfe833e5d41401b291829dc1348823a;hpb=340b94e61a41673eddf12bba3815c3d8dfe68408;p=fa-stable.git diff --git a/reporting/rep104.php b/reporting/rep104.php index d78b79c6..c2dc63a3 100644 --- a/reporting/rep104.php +++ b/reporting/rep104.php @@ -1,74 +1,95 @@ . +***********************************************************************/ +$page_security = 'SA_PRICEREP'; // ---------------------------------------------------------------- // $ Revision: 2.0 $ // Creator: Joe Hunt // date_: 2005-05-19 // Title: price Listing // ---------------------------------------------------------------- -$path_to_root="../"; +$path_to_root=".."; -include_once($path_to_root . "includes/session.inc"); -include_once($path_to_root . "includes/date_functions.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 . "/includes/session.inc"); +include_once($path_to_root . "/includes/date_functions.inc"); +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/inventory_db.inc"); //---------------------------------------------------------------------------------------------------- -// trial_inquiry_controls(); print_price_listing(); -function fetch_prices($category=0, $salestype=0) +function fetch_items($category=0) { - $sql = "SELECT ".TB_PREF."prices.sales_type_id, - ".TB_PREF."prices.stock_id, - ".TB_PREF."stock_master.description AS name, - ".TB_PREF."prices.curr_abrev, - ".TB_PREF."prices.price, - ".TB_PREF."sales_types.sales_type, - ".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_category.description - FROM ".TB_PREF."stock_master, - ".TB_PREF."stock_category, - ".TB_PREF."sales_types, - ".TB_PREF."prices - WHERE ".TB_PREF."stock_master.stock_id=".TB_PREF."prices.stock_id - AND ".TB_PREF."prices.sales_type_id=".TB_PREF."sales_types.id - AND ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id"; - if ($salestype != 0) - $sql .= " AND ".TB_PREF."sales_types.id = '$salestype'"; + $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 = '$category'"; - $sql .= " ORDER BY ".TB_PREF."prices.curr_abrev, - ".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"); } +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 + 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"; + return db_query($sql,"No kits were returned"); +} + //---------------------------------------------------------------------------------------------------- function print_price_listing() { - global $comp_path, $path_to_root, $pic_height, $pic_width; - - include_once($path_to_root . "reporting/includes/pdf_report.inc"); - - $category = $_POST['PARAM_0']; - $salestype = $_POST['PARAM_1']; - $pictures = $_POST['PARAM_2']; - $showGP = $_POST['PARAM_3']; - $comments = $_POST['PARAM_4']; + global $path_to_root, $SysPrefs; + + $currency = $_POST['PARAM_0']; + $category = $_POST['PARAM_1']; + $salestype = $_POST['PARAM_2']; + $pictures = $_POST['PARAM_3']; + $showGP = $_POST['PARAM_4']; + $comments = $_POST['PARAM_5']; + $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(); - if ($category == reserved_words::get_all_numeric()) + $home_curr = get_company_pref('curr_default'); + if ($currency == ALL_TEXT) + $currency = $home_curr; + $curr = get_currency($currency); + $curr_sel = $currency . " - " . $curr['currency']; + if ($category == ALL_NUMERIC) $category = 0; - if ($salestype == reserved_words::get_all_numeric()) + if ($salestype == ALL_NUMERIC) $salestype = 0; if ($category == 0) $cat = _('All'); @@ -83,44 +104,37 @@ function print_price_listing() else $GP = _('Yes'); - $cols = array(0, 100, 385, 450, 515); + $cols = array(0, 100, 360, 385, 450, 515); - $headers = array(_('Category/Items'), _('Description'), _('Price'), _('GP %')); + $headers = array(_('Category/Items'), _('Description'), _('UOM'), _('Price'), _('GP %')); - $aligns = array('left', 'left', 'right', 'right'); + $aligns = array('left', 'left', 'left', 'right', 'right'); $params = array( 0 => $comments, - 1 => array('text' => _('Category'), 'from' => $cat, 'to' => ''), - 2 => array('text' => _('Sales Type'), 'from' => $stype, 'to' => ''), - 3 => array( 'text' => _('Show GP %'),'from' => $GP,'to' => '')); + 1 => array('text' => _('Currency'), 'from' => $curr_sel, 'to' => ''), + 2 => array('text' => _('Category'), 'from' => $cat, 'to' => ''), + 3 => array('text' => _('Sales Type'), 'from' => $stype, 'to' => ''), + 4 => array( 'text' => _('Show GP %'),'from' => $GP,'to' => '')); if ($pictures) $user_comp = user_company(); else $user_comp = ""; - $rep = new FrontReport(_('Price Listing'), "PriceListing.pdf", 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); - $rep->Header(); + $rep->NewPage(); - $result = fetch_prices($category, $salestype); + $result = fetch_items($category); - $currcode = ''; $catgor = ''; - + $_POST['sales_type_id'] = $salestype; while ($myrow=db_fetch($result)) { - if ($currcode != $myrow['curr_abrev']) - { - $rep->NewLine(2); - $rep->fontSize += 2; - $rep->TextCol(0, 3, $myrow['curr_abrev'] . " " . _('Prices')); - $currcode = $myrow['curr_abrev']; - $rep->fontSize -= 2; - $rep->NewLine(); - } if ($catgor != $myrow['description']) { $rep->Line($rep->row - $rep->lineHeight); @@ -134,25 +148,29 @@ function print_price_listing() $rep->NewLine(); $rep->TextCol(0, 1, $myrow['stock_id']); $rep->TextCol(1, 2, $myrow['name']); - $rep->TextCol(2, 3, number_format2($myrow['price'], $dec)); + $rep->TextCol(2, 3, $myrow['units']); + $price = get_price($myrow['stock_id'], $currency, $salestype); + $rep->AmountCol(3, 4, $price, $dec); if ($showGP) { - if ($myrow['price'] != 0.0) - $disp = ($myrow['price'] - $myrow['Standardcost']) * 100 / $myrow['price']; + $price2 = get_price($myrow['stock_id'], $home_curr, $salestype); + if ($price2 != 0.0) + $disp = ($price2 - $myrow['Standardcost']) * 100 / $price2; else $disp = 0.0; - $rep->TextCol(3, 4, number_format2($disp, user_percent_dec()) . " %"); + $rep->TextCol(4, 5, number_format2($disp, user_percent_dec()) . " %"); } if ($pictures) { - $image = $comp_path . '/'. $user_comp . "/images/" . $myrow['stock_id'] . ".jpg"; + $image = company_path(). "/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->row -= $pic_height; + if ($rep->row - $SysPrefs->pic_height < $rep->bottomMargin) + $rep->NewPage(); + $rep->AddImage($image, $rep->cols[1], $rep->row - $SysPrefs->pic_height, 0, $SysPrefs->pic_height); + $rep->row -= $SysPrefs->pic_height; $rep->NewLine(); } } @@ -160,7 +178,38 @@ function print_price_listing() $rep->NewLine(0, 1); } $rep->Line($rep->row - 4); + + $result = get_kits($category); + + $catgor = ''; + while ($myrow=db_fetch($result)) + { + if ($catgor != $myrow['cat_name']) + { + if ($catgor == '') + { + $rep->NewLine(2); + $rep->fontSize += 2; + $rep->TextCol(0, 3, _("Sales Kits")); + $rep->fontSize -= 2; + } + $rep->Line($rep->row - $rep->lineHeight); + $rep->NewLine(2); + $rep->fontSize += 2; + $rep->TextCol(0, 3, $myrow['cat_id'] . " - " . $myrow['cat_name']); + $catgor = $myrow['cat_name']; + $rep->fontSize -= 2; + $rep->NewLine(); + } + $rep->NewLine(); + $rep->TextCol(0, 1, $myrow['kit_code']); + $rep->TextCol(1, 3, $myrow['kit_name']); + $price = get_kit_price($myrow['kit_code'], $currency, $salestype); + $rep->AmountCol(3, 4, $price, $dec); + $rep->NewLine(0, 1); + } + $rep->Line($rep->row - 4); + $rep->NewLine(); $rep->End(); } -?> \ No newline at end of file