Ejemplo n.º 1
0
 def latest_reporting_period(self):
     return get_last_closed_submission_date(False)
Ejemplo n.º 2
0
 def last_closed_quarterly_submission_dates(self):
     return get_last_closed_submission_date(is_quarter=True)
 def get_current_fy_and_period(self):
     latest = get_last_closed_submission_date(is_quarter=False)
     return f"FY{latest['submission_fiscal_year']}P{str(latest['submission_fiscal_month']).zfill(2)}"
Ejemplo n.º 4
0
 def last_closed_monthly_submission_dates(self):
     return get_last_closed_submission_date(is_quarter=False)