mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 16:34:46 +00:00
fixed syntax error in recurring sales invoice code
This commit is contained in:
@@ -719,7 +719,7 @@ def get_next_date(dt, mcount, day=None):
|
||||
if not day:
|
||||
day = getdate(dt).day
|
||||
if month > 12:
|
||||
month, year = m-12, y+1
|
||||
month, year = month-12, year+1
|
||||
try:
|
||||
next_month_date = datetime.date(year, month, day)
|
||||
except:
|
||||
|
||||
Reference in New Issue
Block a user