-
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.
Merge pull request #66 from consiglionazionaledellericerche/62-ai-dip…
…endenti-non-mostrare-la-voce-di-menu-di-primo-livello-calendari sistemato menu a seconda del tipo di utente che si connette al portale
- Loading branch information
Showing
7 changed files
with
336 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import type { MonthlyCompetenceType } from './monthlyCompetenceType'; | ||
|
||
/** | ||
* Tipologia di reperibilità | ||
* @export | ||
* @interface PersonReperibilityType | ||
*/ | ||
export type PersonReperibilityType = { | ||
/** | ||
* Id univoco | ||
* @type {number} | ||
* @memberof PersonReperibilityType | ||
*/ | ||
id: number; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof PersonReperibilityType | ||
*/ | ||
description?: string; | ||
/** | ||
* | ||
* @type {MonthlyCompetenceType} | ||
* @memberof PersonReperibilityType | ||
*/ | ||
monthlyCompetenceType?: MonthlyCompetenceType; | ||
} |
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,14 @@ | ||
export type PersonShift = { | ||
/** | ||
* Id univoco | ||
* @type {number} | ||
* @memberof PersonShift | ||
*/ | ||
id: number; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof PersonShift | ||
*/ | ||
description?: 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 |
---|---|---|
@@ -0,0 +1,170 @@ | ||
import type { UserShowTerse } from './userShowTerse'; | ||
import type { PersonShift } from './personShift'; | ||
import type { ShiftCategory } from './shiftCategory'; | ||
import type { OfficeShowTerse } from './officeShowTerse'; | ||
import type { PersonReperibilityType } from './personReperibilityType'; | ||
|
||
export type PersonShowExtended = { | ||
/** | ||
* Nome | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
name: string; | ||
/** | ||
* Cognome | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
surname: string; | ||
/** | ||
* Codice fiscale | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
fiscalCode?: string; | ||
/** | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
email: string; | ||
/** | ||
* Matricola | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
number?: string; | ||
/** | ||
* eppn - indicatore univoco all'interno dell'organizzazione | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
eppn?: string; | ||
/** | ||
* livello | ||
* @type {number} | ||
* @memberof PersonShowExtended | ||
*/ | ||
qualification: number; | ||
/** | ||
* Id di collegamento con l'anagrafica CNR | ||
* @type {number} | ||
* @memberof PersonShowExtended | ||
*/ | ||
perseoId?: number; | ||
/** | ||
* Data di nascita | ||
* @type {Date} | ||
* @memberof PersonShowExtended | ||
*/ | ||
birthday?: Date; | ||
/** | ||
* Residenza | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
residence?: string; | ||
/** | ||
* Numero del telefono ufficio | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
telephone?: string; | ||
/** | ||
* Numero di fax | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
fax?: string; | ||
/** | ||
* Numero di cellulare | ||
* @type {string} | ||
* @memberof PersonShowExtended | ||
*/ | ||
mobile?: string; | ||
/** | ||
* Abilitato invio delle email si/no | ||
* @type {boolean} | ||
* @memberof PersonShowExtended | ||
*/ | ||
wantEmail?: boolean; | ||
/** | ||
* Id della persona | ||
* @type {number} | ||
* @memberof PersonShowExtended | ||
*/ | ||
id?: number; | ||
/** | ||
* Data inizio validità | ||
* @type {Date} | ||
* @memberof PersonShowExtended | ||
*/ | ||
beginDate?: Date; | ||
/** | ||
* Data fine validità | ||
* @type {Date} | ||
* @memberof PersonShowExtended | ||
*/ | ||
endDate?: Date; | ||
/** | ||
* | ||
* @type {UserShowTerse} | ||
* @memberof PersonShowExtended | ||
*/ | ||
user?: UserShowTerse; | ||
/** | ||
* | ||
* @type {OfficeShowTerse} | ||
* @memberof PersonShowExtended | ||
*/ | ||
office?: OfficeShowTerse; | ||
/** | ||
* Data ultimo aggiornamento | ||
* @type {Date} | ||
* @memberof PersonShowExtended | ||
*/ | ||
updatedAt?: Date; | ||
/** | ||
* Data di nascita | ||
* @type {Date} | ||
* @memberof PersonShowExtended | ||
*/ | ||
birthDate?: Date; | ||
/** | ||
* | ||
* @type {boolean} | ||
* @memberof PersonShowExtended | ||
*/ | ||
available?: boolean; | ||
/** | ||
* | ||
* @type {Array<ShiftCategory>} | ||
* @memberof PersonShowExtended | ||
*/ | ||
shiftCategories?: Array<ShiftCategory>; | ||
/** | ||
* | ||
* @type {Array<PersonReperibilityType>} | ||
* @memberof PersonShowExtended | ||
*/ | ||
reperibilityTypes?: Array<PersonReperibilityType>; | ||
/** | ||
* | ||
* @type {Array<ShiftCategory>} | ||
* @memberof PersonShowExtended | ||
*/ | ||
categories?: Array<ShiftCategory>; | ||
/** | ||
* | ||
* @type {Array<PersonReperibilityType>} | ||
* @memberof PersonShowExtended | ||
*/ | ||
reperibilities?: Array<PersonReperibilityType>; | ||
/** | ||
* | ||
* @type {Array<PersonShift>} | ||
* @memberof PersonShowExtended | ||
*/ | ||
personShifts?: Array<PersonShift>; | ||
} |
Oops, something went wrong.