X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep301.php;h=4bd74be3e42bbfbdd1fe9135a35f47628024e88f;hb=efc1a9ce400be6233323af9c193ab9460407bcf6;hp=dede52077f64ff7032ed17bf5299d0b8ca41919a;hpb=902f1015d874c33bd7946b17de2ad80b4f2144b6;p=fa-stable.git diff --git a/reporting/rep301.php b/reporting/rep301.php index dede5207..4bd74be3 100644 --- a/reporting/rep301.php +++ b/reporting/rep301.php @@ -52,9 +52,9 @@ function getTransactions($category, $location) ".TB_PREF."stock_master.description HAVING SUM(".TB_PREF."stock_moves.qty) != 0"; if ($category != 0) - $sql .= " AND ".TB_PREF."stock_master.category_id = '$category'"; + $sql .= " AND ".TB_PREF."stock_master.category_id = ".db_escape($category); if ($location != 'all') - $sql .= " AND ".TB_PREF."stock_moves.loc_code = '$location'"; + $sql .= " AND ".TB_PREF."stock_moves.loc_code = ".db_escape($location); $sql .= " ORDER BY ".TB_PREF."stock_master.category_id, ".TB_PREF."stock_master.stock_id"; @@ -76,17 +76,17 @@ function print_inventory_valuation_report() include_once($path_to_root . "/reporting/includes/excel_report.inc"); else include_once($path_to_root . "/reporting/includes/pdf_report.inc"); - + $detail = !$detail; $dec = user_price_dec(); - if ($category == reserved_words::get_all_numeric()) + if ($category == ALL_NUMERIC) $category = 0; if ($category == 0) $cat = _('All'); else $cat = get_category_name($category); - if ($location == reserved_words::get_all()) + if ($location == ALL_TEXT) $location = 'all'; if ($location == 'all') $loc = _('All'); @@ -107,7 +107,7 @@ function print_inventory_valuation_report() $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); - $rep->Header(); + $rep->NewPage(); $res = getTransactions($category, $location); $total = $grandtotal = 0.0; @@ -141,13 +141,13 @@ function print_inventory_valuation_report() if ($detail) { $rep->NewLine(); - $rep->fontsize -= 2; + $rep->fontSize -= 2; $rep->TextCol(0, 1, $trans['stock_id']); $rep->TextCol(1, 2, $trans['description']); $rep->AmountCol(2, 3, $trans['QtyOnHand'], get_qty_dec($trans['stock_id'])); $rep->AmountCol(3, 4, $trans['UnitCost'], $dec); $rep->AmountCol(4, 5, $trans['ItemTotal'], $dec); - $rep->fontsize += 2; + $rep->fontSize += 2; } $total += $trans['ItemTotal']; $grandtotal += $trans['ItemTotal'];