-
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.
Align submission/activity view with new UX design
- Loading branch information
1 parent
896a3f6
commit 6c7a3e9
Showing
29 changed files
with
590 additions
and
599 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,29 +1,37 @@ | ||
import { User } from './User'; | ||
import { YRN } from './YRN'; | ||
import { IStamps } from '../interfaces/IStamps'; | ||
|
||
export type ChefsSubmissionForm = { | ||
submissionId: string; // Primary Key | ||
submissionId: string; | ||
confirmationId: string; | ||
contactEmail: string | null; | ||
submittedAt: string; | ||
submittedBy: string; | ||
locationPIDs: string | null; | ||
contactName: string | null; | ||
contactPhoneNumber: string | null; | ||
contactFirstName: string | null; | ||
contactLastName: string | null; | ||
intakeStatus: string | null; | ||
contactEmail: string | null; | ||
projectName: string | null; | ||
queuePriority: number | null; | ||
singleFamilyUnits: string | null; | ||
streetAddress: string | null; | ||
atsClientNumber: string | null; | ||
addedToATS: YRN; | ||
financiallySupported: YRN; | ||
applicationStatus: string | null; | ||
latitude: number | null; | ||
longitude: number | null; | ||
queuePriority: number | null; | ||
relatedPermits: string | null; | ||
updatedAai: YRN; | ||
astNotes: string | null; | ||
astUpdated: boolean | null; | ||
addedToATS: boolean | null; | ||
atsClientNumber: string | null; | ||
ltsaCompleted: boolean | null; | ||
naturalDisaster: boolean | null; | ||
financiallySupported: boolean | null; | ||
financiallySupportedBC: boolean | null; | ||
financiallySupportedIndigenous: boolean | null; | ||
financiallySupportedNonProfit: boolean | null; | ||
financiallySupportedHousingCoop: boolean | null; | ||
waitingOn: string | null; | ||
submittedAt: string; | ||
submittedBy: string; | ||
bringForwardDate: string | null; | ||
notes: string | null; | ||
user: User | null; | ||
user: User | null; // assigned to | ||
intakeStatus: string | null; | ||
applicationStatus: string | null; | ||
} & Partial<IStamps>; |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.