sum previous row value in current row in spark scala

I am trying to adjust one of column values based on value in some other data frame. while doing this, if left over amount more then I need to carry forward to next row and calculate final amount. during this operation, I am not able to hold of previous row left over amount to next row operation. I tried using lag window function and by taking running totals options but those are not working as expected. do you guys any other idea how to resolve this problem. am trying with spark scala

here is input data

val consumption = sc.parallelize(Seq((20180101, 600), (20180201, 900),(20180301, 400),(20180401, 600),(20180501, 1000),(20180601, 1900),(20180701, 500),(20180801, 100),(20180901, 500))).toDF("Month","Usage")
consumption.show()
+--------+-----+
|   Month|Usage|
+--------+-----+
|20180101|  600|
|20180201|  900|
|20180301|  400|
|20180401|  600|
|20180501| 1000|
|20180601| 1900|
|20180701|  500|
|20180801|  100|
|20180901|  500|
+--------+-----+
val promo = sc.parallelize(Seq((20180101, 1000),(20180201, 100),(20180401, 3000))).toDF("PromoEffectiveMonth","promoAmount")
promo.show()
+-------------------+-----------+
|PromoEffectiveMonth|promoAmount|
+-------------------+-----------+
|           20180101|       1000|
|           20180201|        100|
|           20180401|       3000|
+-------------------+-----------+

expected result:

val finaldf = sc.parallelize(Seq((20180101,600,400,600),(20180201,900,0,400),(20180301,400,0,0),(20180401,600,2400,600),(20180501,1000,1400,1000),(20180601,1900,0,500),(20180701,500,0,0),(20180801,100,0,0),(20180901,500,0,0))).toDF("Month","Usage","LeftOverPromoAmt","AdjustedUsage")
finaldf.show()
±-------±----±---------------±------------+
| Month|Usage|LeftOverPromoAmt|AdjustedUsage|
±-------±----±---------------±------------+
|20180101| 600| 400| 600|
|20180201| 900| 0| 400|
|20180301| 400| 0| 0|
|20180401| 600| 2400| 600|
|20180501| 1000| 1400| 1000|
|20180601| 1900| 0| 500|
|20180701| 500| 0| 0|
|20180801| 100| 0| 0|
|20180901| 500| 0| 0|
±-------±----±---------------±------------+

the logic what I am applying is based on Month and PromoEffective join, need to apply promo amount on consumption usage column till promo amount become zero.
eg: in Jan’18 month, promoamount is 1000, after deducting from usage(600), the left over promo amt is 400 and adj usage is 600. the left over over 400 will be considered for next month and there promo amt for Feb then final promo amount available is 500. here usage is more when compare to usage. so. left over promo amount is zero and adjust usage is 400 (900 - 500).