fixes in get_incoming_rate
diff --git a/stock/utils.py b/stock/utils.py
index e7702a8..46dd9d0 100644
--- a/stock/utils.py
+++ b/stock/utils.py
@@ -111,7 +111,7 @@
 	else:
 		outgoing_cost = 0
 		qty_to_pop = abs(qty)
-		while qty_to_pop:
+		while qty_to_pop and previous_stock_queue:
 			batch = previous_stock_queue[0]
 			if 0 < batch[0] <= qty_to_pop:
 				# if batch qty > 0
@@ -124,8 +124,8 @@
 				outgoing_cost += flt(qty_to_pop) * flt(batch[1])
 				batch[0] -= qty_to_pop
 				qty_to_pop = 0
-				
-		return outgoing_cost / abs(qty)
+		# if queue gets blank and qty_to_pop remaining, get average rate of full queue
+		return outgoing_cost / abs(qty) - qty_to_pop
 	
 def get_valid_serial_nos(sr_nos, qty=0, item_code=''):
 	"""split serial nos, validate and return list of valid serial nos"""