Thread: Fifo?
View Single Post
  #8 (permalink)  
Old 07-03-09, 12:06
mike_bike_kite mike_bike_kite is offline
vaguely human
 
Join Date: Jun 2007
Location: London
Posts: 2,517
Here's the psuedo code to do it if it helps:
Code:
# run sql to get total_amount for that id
# if total_amount > sales_amount
#     while sales_amount > 0
#          pull oldest date for this id where amount > 0
#          pull amount for this date
#          if amount > sales_amount
#              update amount = amount - sales_amount where this id and date
#              sales_amount = 0
#          else
#              sales_amount = sales_amount - amount
#              update amount = 0 where this id and date
# else
#     error as not enough
Mike
Reply With Quote