. ***********************************************************************/ //------------------------------------------------------------------------------------------------------------- function add_stock_adjustment($items, $location, $date_, $type, $increase, $reference, $memo_) { global $Refs; begin_transaction(); $args = func_get_args(); $args = (object)array_combine(array('items', 'location', 'date_', 'type', 'increase', 'reference', 'memo_'), $args); $args->trans_no = 0; hook_db_prewrite($args, ST_INVADJUST); $adj_id = get_next_trans_no(ST_INVADJUST); foreach ($items as $line_item) { if (!$increase) $line_item->quantity = -$line_item->quantity; add_stock_adjustment_item($adj_id, $line_item->stock_id, $location, $date_, $type, $reference, $line_item->quantity, $line_item->standard_cost, $memo_); } add_comments(ST_INVADJUST, $adj_id, $date_, $memo_); $Refs->save(ST_INVADJUST, $adj_id, $reference); add_audit_trail(ST_INVADJUST, $adj_id, $date_); $args->trans_no = $adj_id; hook_db_postwrite($args, ST_INVADJUST); commit_transaction(); return $adj_id; } //------------------------------------------------------------------------------------------------------------- function void_stock_adjustment($type_no) { hook_db_prevoid(ST_INVADJUST, $type_no); //Average the cost while voiding $adjustment_items = get_stock_adjustment_items($type_no); while ($adjustment = db_fetch($adjustment_items)) { update_average_material_cost(0, $adjustment['stock_id'], $adjustment['standard_cost'], -$adjustment['qty'], sql2date($adjustment['tran_date'])); } void_gl_trans(ST_INVADJUST, $type_no); void_stock_move(ST_INVADJUST, $type_no); } //------------------------------------------------------------------------------------------------------------- function get_stock_adjustment_items($trans_no) { $result = get_stock_moves(ST_INVADJUST, $trans_no); if (db_num_rows($result) == 0) { return null; } return $result; } //-------------------------------------------------------------------------------------------------- function add_stock_adjustment_item($adj_id, $stock_id, $location, $date_, $type, $reference, $quantity, $standard_cost, $memo_) { $mb_flag = get_mb_flag($stock_id); if (is_service($mb_flag)) { display_db_error("Cannot do inventory adjustment for Service item : $stock_id", ""); } update_average_material_cost(null, $stock_id, $standard_cost, $quantity, $date_); add_stock_move(ST_INVADJUST, $stock_id, $adj_id, $location, $date_, $reference, $quantity, $standard_cost, $type); if ($standard_cost > 0) { $stock_gl_codes = get_stock_gl_code($stock_id); add_gl_trans_std_cost(ST_INVADJUST, $adj_id, $date_, $stock_gl_codes['adjustment_account'], $stock_gl_codes['dimension_id'], $stock_gl_codes['dimension2_id'], $memo_, ($standard_cost * -($quantity))); add_gl_trans_std_cost(ST_INVADJUST, $adj_id, $date_, $stock_gl_codes['inventory_account'], 0, 0, $memo_, ($standard_cost * $quantity)); } } //------------------------------------------------------------------------------------------------------------- ?>