forked from bcgov/business-create-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fixed check for future effective filing - added missing filing statuses to enum Co-authored-by: Severin Beauvais <severin.beauvais@gov.bc.ca>
- Loading branch information
1 parent
efdb042
commit ae6cdcb
Showing
4 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
export enum FilingStatus { | ||
CANCELLED = 'CANCELLED', | ||
COMPLETED = 'COMPLETED', | ||
CORRECTED = 'CORRECTED', | ||
DELETED = 'DELETED', | ||
DRAFT = 'DRAFT', | ||
EPOCH = 'EPOCH', | ||
EPOCH = 'EPOCH', // legacy, not used by UI | ||
ERROR = 'ERROR', | ||
NEW = 'NEW', | ||
NEW = 'NEW', // used for Todo List items only (ie, not yet a filing) | ||
PAID = 'PAID', | ||
PENDING = 'PENDING', | ||
PENDING_CORRECTION = 'PENDING_CORRECTION', | ||
WITHDRAWN = 'WITHDRAWN', | ||
} |