X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep301.php;h=9e7c1af8deb08e7bd25ac8b85f4fe553eebf1c0f;hb=604d89ac6d18712d8b55bed821afe07b7106db3d;hp=45fb4406d959a7e14aa587859fa71a6ca1913e9f;hpb=99730b8d6deb7e81d2f1ebeb2ce7066d27729485;p=fa-stable.git diff --git a/reporting/rep301.php b/reporting/rep301.php index 45fb4406..9e7c1af8 100644 --- a/reporting/rep301.php +++ b/reporting/rep301.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 2; // ---------------------------------------------------------------- // $ Revision: 2.0 $ @@ -7,13 +16,13 @@ $page_security = 2; // date_: 2005-05-19 // Title: Supplier Balances // ---------------------------------------------------------------- -$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 . "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/data_checks.inc"); +include_once($path_to_root . "/gl/includes/gl_db.inc"); +include_once($path_to_root . "/inventory/includes/db/items_category_db.inc"); //---------------------------------------------------------------------------------------------------- @@ -36,8 +45,10 @@ function getTransactions($category, $location) WHERE ".TB_PREF."stock_master.stock_id=".TB_PREF."stock_moves.stock_id AND ".TB_PREF."stock_master.category_id=".TB_PREF."stock_category.category_id GROUP BY ".TB_PREF."stock_master.category_id, - ".TB_PREF."stock_category.description, - UnitCost, + ".TB_PREF."stock_category.description, "; + if ($location != 'all') + $sql .= TB_PREF."stock_moves.loc_code, "; + $sql .= "UnitCost, ".TB_PREF."stock_master.stock_id, ".TB_PREF."stock_master.description HAVING SUM(".TB_PREF."stock_moves.qty) != 0"; @@ -57,7 +68,7 @@ function print_inventory_valuation_report() { global $path_to_root; - include_once($path_to_root . "reporting/includes/pdf_report.inc"); + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); $category = $_POST['PARAM_0']; $location = $_POST['PARAM_1'];