X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=purchasing%2Fincludes%2Fdb%2Fgrn_db.inc;h=1e080be792fc4bc2d654677e702981c985e9158a;hb=f0f8ddf8c1a03244610594f24263443c41b4b086;hp=0335e64f3b98c400116ee5efb5d903494e61ba04;hpb=98d30c9a3e2f7af94530d1c0fdf000a93ab57e04;p=fa-stable.git diff --git a/purchasing/includes/db/grn_db.inc b/purchasing/includes/db/grn_db.inc index 0335e64f..1e080be7 100644 --- a/purchasing/includes/db/grn_db.inc +++ b/purchasing/includes/db/grn_db.inc @@ -128,9 +128,26 @@ function add_grn_detail_item($grn_batch_id, $po_detail_item, $item_code, $descri } //---------------------------------------------------------------------------------------- +function get_grn_batch_from_item($item) +{ + $sql = "SELECT grn_batch_id FROM ".TB_PREF."grn_items WHERE id=$item"; + $result = db_query($sql, "Could not retreive GRN batch id"); + $row = db_fetch_row($result); + return $row[0]; +} + +function get_grn_batch($grn) +{ + $sql = "SELECT * FROM ".TB_PREF."grn_batch WHERE id=$grn"; + $result = db_query($sql, "Could not retreive GRN batch id"); + return db_fetch($result); +} function set_grn_item_credited(&$entered_grn, $supplier, $transno, $date) { + $mcost = update_average_material_cost($supplier, $entered_grn->item_code, + $entered_grn->chg_price, $entered_grn->this_quantity_inv, $date); + $sql = "SELECT ".TB_PREF."grn_batch.*, ".TB_PREF."grn_items.* FROM ".TB_PREF."grn_batch, ".TB_PREF."grn_items WHERE ".TB_PREF."grn_items.grn_batch_id=".TB_PREF."grn_batch.id @@ -138,12 +155,19 @@ function set_grn_item_credited(&$entered_grn, $supplier, $transno, $date) AND ".TB_PREF."grn_items.item_code='$entered_grn->item_code' "; $result = db_query($sql, "Could not retreive GRNS"); $myrow = db_fetch($result); + + $sql = "UPDATE ".TB_PREF."purch_order_details + SET quantity_received = quantity_received + $entered_grn->this_quantity_inv, + std_cost_unit=$mcost, + act_price=$entered_grn->chg_price + WHERE po_detail_item = ".$myrow["po_detail_item"]; + db_query($sql, "a purchase order details record could not be updated. This receipt of goods has not been processed "); + //$sql = "UPDATE ".TB_PREF."grn_items SET qty_recd=0, quantity_inv=0 WHERE id=$entered_grn->id"; $sql = "UPDATE ".TB_PREF."grn_items SET qty_recd=qty_recd+$entered_grn->this_quantity_inv, quantity_inv=quantity_inv+$entered_grn->this_quantity_inv WHERE id=$entered_grn->id"; db_query($sql); - $mcost = update_average_material_cost($supplier, $entered_grn->item_code, - $entered_grn->chg_price, $entered_grn->this_quantity_inv, $date); + add_stock_move(21, $entered_grn->item_code, $transno, $myrow['loc_code'], $date, "", $entered_grn->this_quantity_inv, $mcost, $supplier, 1, $entered_grn->chg_price); }