-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revise fac.gov minimum expenditure reporting threshold from $750k to $1mil #4198
Comments
From the backend perspective, I have an idea for easier maintenance on tweaking this threshold moving forward. Currently, we are hard coding the $750,000 minimum in many different places. I propose that we programmatically populate this across the frontend, and have it pull from a JSON array we can tweak from the backend. This is an example of how we could start managing the dates from
In the meantime, I have a branch that handles this logic should the team decide to build upon this approach. The changes in this branch take the hardcoded values and dates for the single audit threshold and will populate it based on the current date. |
Should we decide to enforce the DOLLAR_THRESHOLD (beyond the checkbox attestation in the pre-submission steps), some logic for cross validation exists here: #4128. I was certain I had logic to include it in the intake steps for the Federal Awards workbook instead, but now I can't find it. Either way, the same checks apply. See also #3869 for concerns about reimbursements. |
Possible duplicate of #3872 |
Microcopy listed here in the ticket looks GTG. |
The Federal Audit Clearinghouse (FAC) requires organizations that spend $1,000,000 or more in federal funds during a fiscal year to submit a Single Audit report. This is due to the Office of Management and Budget's (OMB) 2024 Uniform Guidance revisions, which increase the federal single audit threshold from $750,000 to $1,000,000. The new threshold applies to audits with periods beginning on or after October 1, 2024.
Currently our site and databases are set up to accept SARs for expenditures over $750k in a fiscal year/reporting period. We must determine what changes need to be made to implement the new $1mil reporting threshold. Because the new threshold applies to spending beginning after October 1st, 2024 we can anticipate about one year before they start to be submitted.
DOD:
The FAC will continue accepting SARs for reporting periods dated before 10/01/2024 at the $750k threshold
The FAC will disallow SARs for under $1mil for reporting periods after 10/01/2024
Originally tickted here: #3872
Tasks
Tasks
Microcopy
Regarding the validation...
We can begin with JP's code here:
#4128
Instead of grabbing the pre-computed total from the coversheet, let's add up all the values in the workbook in the
amount_expended
column. HOWEVER, apply anabs()
to each value. We will, for now, count reimbursements as positive values, and therefore, if we get an audit like:we will count them as over the 750K threshold. (And, we could also check to see if they asserted they are above the threshold... e.g. "above_threshold" AND "abs_summation".)
This approach might change, based on feedback from auditor(s).
The text was updated successfully, but these errors were encountered: