Commit abc4bb3a authored by Łukasz Nowak's avatar Łukasz Nowak

Revert "Stop generation just bit after current moment."

This reverts commit cb0da24f.
parent 5348b48f
......@@ -39,7 +39,6 @@ from Products.ERP5.mixin.rule import MovementGeneratorMixin
from Products.ERP5.mixin.periodicity import PeriodicityMixin
from Products.ERP5Type.UnrestrictedMethod import UnrestrictedMethod
from Products.ERP5Type.Base import Base
from DateTime import DateTime
from zLOG import LOG
......@@ -292,7 +291,6 @@ class SubscriptionItem(Item, CompositionMixin, MovementGeneratorMixin, Periodici
price_currency = movement.getPriceCurrency()
specialise = movement.getSpecialise()
now = DateTime()
current_date = start_date
id_index = 0
while current_date < stop_date:
......@@ -315,11 +313,9 @@ class SubscriptionItem(Item, CompositionMixin, MovementGeneratorMixin, Periodici
specialise=specialise,
)
result.append(generated_movement)
if current_date > now:
# generate only one movement in advance from today
break
current_date = next_date
id_index += 1
break
return result
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment