fix(accounts): Indentation

This commit is contained in:
Nabin Hait 2019-03-29 13:25:11 +05:30
parent 86fb523ea7
commit 66d07c2700

View File

@ -92,9 +92,9 @@ def get_booking_dates(doc, item, posting_date=None):
if end_date >= item.service_end_date: if end_date >= item.service_end_date:
end_date = item.service_end_date end_date = item.service_end_date
last_gl_entry = True last_gl_entry = True
elif item.service_stop_date and end_date >= item.service_stop_date: elif item.service_stop_date and end_date >= item.service_stop_date:
end_date = item.service_stop_date end_date = item.service_stop_date
last_gl_entry = True last_gl_entry = True
if end_date > getdate(posting_date): if end_date > getdate(posting_date):
end_date = posting_date end_date = posting_date