X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep204.php;h=51fbf012d66c5182f1752500694e54818bbf2f1b;hb=e771cab507c120f329e50a71807dd4c53c0ace96;hp=cfd7f8dfa485f587a04c18ad63f69d044544dc4a;hpb=0489317205141deaecefe3a7243d11a3e38a51d0;p=fa-stable.git diff --git a/reporting/rep204.php b/reporting/rep204.php index cfd7f8df..51fbf012 100644 --- a/reporting/rep204.php +++ b/reporting/rep204.php @@ -29,30 +29,30 @@ print_outstanding_GRN(); function getTransactions($fromsupp) { - $sql = "SELECT ".TB_PREF."grn_batch.id, + $sql = "SELECT grn.id, order_no, - ".TB_PREF."grn_batch.supplier_id, - ".TB_PREF."suppliers.supp_name, - ".TB_PREF."grn_items.item_code, - ".TB_PREF."grn_items.description, + grn.supplier_id, + supplier.supp_name, + item.item_code, + item.description, qty_recd, quantity_inv, std_cost_unit, act_price, unit_price - FROM ".TB_PREF."grn_items, - ".TB_PREF."grn_batch, - ".TB_PREF."purch_order_details, - ".TB_PREF."suppliers - WHERE ".TB_PREF."grn_batch.supplier_id=".TB_PREF."suppliers.supplier_id - AND ".TB_PREF."grn_batch.id = ".TB_PREF."grn_items.grn_batch_id - AND ".TB_PREF."grn_items.po_detail_item = ".TB_PREF."purch_order_details.po_detail_item - AND qty_recd-quantity_inv <>0 "; + FROM ".TB_PREF."grn_items item, + ".TB_PREF."grn_batch grn, + ".TB_PREF."purch_order_details poline, + ".TB_PREF."suppliers supplier + WHERE grn.supplier_id=supplier.supplier_id + AND grn.id = item.grn_batch_id + AND item.po_detail_item = poline.po_detail_item + AND qty_recd-quantity_inv!=0"; if ($fromsupp != ALL_TEXT) - $sql .= "AND ".TB_PREF."grn_batch.supplier_id =".db_escape($fromsupp)." "; - $sql .= "ORDER BY ".TB_PREF."grn_batch.supplier_id, - ".TB_PREF."grn_batch.id"; + $sql .= " AND grn.supplier_id =".db_escape($fromsupp); + + $sql .= " ORDER BY grn.supplier_id, grn.id"; return db_query($sql, "No transactions were returned"); } @@ -91,7 +91,7 @@ function print_outstanding_GRN() $rep = new FrontReport(_('Outstanding GRNs Report'), "OutstandingGRN", user_pagesize(), 9, $orientation); if ($orientation == 'L') - $rep->recalculate_cols($cols); + recalculate_cols($cols); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -152,4 +152,3 @@ function print_outstanding_GRN() $rep->End(); } -?> \ No newline at end of file