-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3695 address historical finding references with invalid formats (#3753)
* #3695 Updated schema and in-file validation rule for workbooks to allow reference number with year >=1900 * #3695 Updated logic to allow reference number with year greater than 1899 * Code improvement. Enforcing reference number check on cap_text and findings_text * #3695 Updated reference number to fail the new schema * #3695 Updated approved versions list
- Loading branch information
Showing
32 changed files
with
46 additions
and
35 deletions.
There are no files selected for viewing
Binary file modified
BIN
+1.16 KB
(100%)
backend/audit/fixtures/workbooks/should_fail/audit-findings/has_bad_finding_reference.xlsx
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
"validation": { | ||
"type": "NOVALIDATION" | ||
}, | ||
"value": "1.0.5", | ||
"value": "1.1.1", | ||
"width": 48 | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
"validation": { | ||
"type": "NOVALIDATION" | ||
}, | ||
"value": "1.0.5", | ||
"value": "1.1.1", | ||
"width": 48 | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
"validation": { | ||
"type": "NOVALIDATION" | ||
}, | ||
"value": "1.0.5", | ||
"value": "1.1.1", | ||
"width": 48 | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
"validation": { | ||
"type": "NOVALIDATION" | ||
}, | ||
"value": "1.0.5", | ||
"value": "1.1.1", | ||
"width": 48 | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ | |
"validation": { | ||
"type": "NOVALIDATION" | ||
}, | ||
"value": "1.0.5", | ||
"value": "1.1.1", | ||
"width": 48 | ||
}, | ||
{ | ||
|
Binary file modified
BIN
-4 Bytes
(100%)
backend/schemas/output/excel/xlsx/additional-eins-workbook.xlsx
Binary file not shown.
Binary file modified
BIN
-5 Bytes
(100%)
backend/schemas/output/excel/xlsx/additional-ueis-workbook.xlsx
Binary file not shown.
Binary file modified
BIN
-30 Bytes
(100%)
backend/schemas/output/excel/xlsx/audit-findings-text-workbook.xlsx
Binary file not shown.
Binary file modified
BIN
-16 Bytes
(100%)
backend/schemas/output/excel/xlsx/corrective-action-plan-workbook.xlsx
Binary file not shown.
Binary file modified
BIN
-12 Bytes
(100%)
backend/schemas/output/excel/xlsx/federal-awards-audit-findings-workbook.xlsx
Binary file not shown.
Binary file modified
BIN
-11 Bytes
(100%)
backend/schemas/output/excel/xlsx/federal-awards-workbook.xlsx
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
backend/schemas/output/excel/xlsx/notes-to-sefa-workbook.xlsx
Binary file not shown.
Binary file modified
BIN
-10 Bytes
(100%)
backend/schemas/output/excel/xlsx/secondary-auditors-workbook.xlsx
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,7 @@ | |
"type": "string" | ||
}, | ||
"version": { | ||
"const": "1.1.0", | ||
"const": "1.1.1", | ||
"type": "string" | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,7 +88,7 @@ | |
"type": "string" | ||
}, | ||
"version": { | ||
"const": "1.1.0", | ||
"const": "1.1.1", | ||
"type": "string" | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -552,7 +552,7 @@ | |
"type": "string" | ||
}, | ||
"version": { | ||
"const": "1.1.0", | ||
"const": "1.1.1", | ||
"type": "string" | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
"type": "string" | ||
}, | ||
"version": { | ||
"const": "1.1.0", | ||
"const": "1.1.1", | ||
"type": "string" | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
"type": "string" | ||
}, | ||
"version": { | ||
"const": "1.1.0", | ||
"const": "1.1.1", | ||
"type": "string" | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters