-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into receipt-mandatory-settings
- Loading branch information
Showing
72 changed files
with
3,756 additions
and
588 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
40 changes: 40 additions & 0 deletions
40
src/app/core/mock-data/advance-request-custom-field-values.data.ts
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { AdvanceRequestCustomFieldValues } from '../models/advance-request-custom-field-values.model'; | ||
|
||
export const advanceRequestCustomFieldValuesData: AdvanceRequestCustomFieldValues[] = [ | ||
{ | ||
id: 1302, | ||
name: 'Phase', | ||
value: 'Phase 1', | ||
type: 'SELECT', | ||
}, | ||
{ | ||
id: 1305, | ||
name: 'BILLABLE', | ||
value: true, | ||
type: 'BOOLEAN', | ||
}, | ||
{ | ||
id: 1304, | ||
name: 'Arrival Date', | ||
value: '2 Jan 2023', | ||
type: 'DATE', | ||
}, | ||
]; | ||
|
||
export const advanceRequestCustomFieldValuesData2: AdvanceRequestCustomFieldValues[] = [ | ||
{ | ||
id: 1302, | ||
name: 'Phase', | ||
value: 'Phase 1', | ||
}, | ||
{ | ||
id: 1304, | ||
name: 'Arrival Date', | ||
value: '2023-1-2', | ||
}, | ||
{ | ||
id: 1305, | ||
name: 'BILLABLE', | ||
value: true, | ||
}, | ||
]; |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export const allowedExpenseTypes: Record<string, boolean> = { | ||
mileage: true, | ||
perDiem: true, | ||
}; |
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
Oops, something went wrong.