2021-04-05 14:13:13 +01:00
|
|
|
<ion-content>
|
2021-04-08 13:39:48 +01:00
|
|
|
<!-- Edit event for Inicio -->
|
2021-04-06 11:56:04 +01:00
|
|
|
<div class="main-content height-100">
|
|
|
|
|
|
2021-04-06 16:25:20 +01:00
|
|
|
<div class="content d-flex flex-column width-md-100 height-100">
|
2021-07-14 16:49:56 +01:00
|
|
|
|
2021-04-06 11:56:04 +01:00
|
|
|
<div class="main-header pt-30 px-20 background-white pb-15">
|
2021-04-05 14:13:13 +01:00
|
|
|
<ion-header>
|
2021-04-30 19:18:06 +01:00
|
|
|
<div class="title-content">
|
|
|
|
|
<div class="middle">
|
2023-07-06 12:18:15 +01:00
|
|
|
<ion-label id="vsdfajnl" class="title" style="font-size: 21.1px">Editar Evento</ion-label>
|
2021-04-30 19:18:06 +01:00
|
|
|
</div>
|
2021-04-01 15:06:05 +01:00
|
|
|
</div>
|
2021-04-30 19:18:06 +01:00
|
|
|
</ion-header>
|
2021-01-29 09:45:27 +01:00
|
|
|
</div>
|
2021-04-06 11:56:04 +01:00
|
|
|
<ion-item-sliding class="overflow-y-auto">
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="px-20">
|
2021-07-02 11:19:52 +01:00
|
|
|
<div class="ion-item-container width-100" [class.input-error]="Form?.get('Subject')?.invalid && validateFrom ">
|
2022-01-20 14:51:34 +01:00
|
|
|
<ion-input autocomplete="on" autocorrect="on" spellcheck="true" placeholder="Assunto*" [(ngModel)]="postEvent.Subject"></ion-input>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-07-02 11:19:52 +01:00
|
|
|
|
2021-07-14 16:49:56 +01:00
|
|
|
|
2021-07-02 11:19:52 +01:00
|
|
|
<div *ngIf="Form && validateFrom" >
|
|
|
|
|
<div *ngIf="Form.get('Subject').invalid " class="input-errror-message">
|
2023-02-13 18:57:15 +01:00
|
|
|
<!-- <div *ngIf="Form.get('Subject').errors?.required">
|
|
|
|
|
|
|
|
|
|
</div> -->
|
2021-07-02 11:19:52 +01:00
|
|
|
<div *ngIf="Form.get('Subject').errors?.minlength">
|
|
|
|
|
O campo deve ter pelo menos 4 caracteres.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="container-div width-100">
|
|
|
|
|
<div class="ion-item-class-2">
|
|
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-location.svg"></ion-icon>
|
|
|
|
|
</div>
|
2021-07-02 11:19:52 +01:00
|
|
|
<div class="ion-input-class" [class.input-error]="Form?.get('Location')?.invalid && validateFrom ">
|
2023-05-26 14:23:37 +01:00
|
|
|
<ion-input autocomplete="on" autocorrect="on" spellcheck="true" placeholder="Localização*" [(ngModel)]="postEvent.Location"></ion-input>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-04-06 11:56:04 +01:00
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-07-02 11:19:52 +01:00
|
|
|
|
|
|
|
|
<div *ngIf="Form && validateFrom" >
|
|
|
|
|
<div *ngIf="Form.get('Location').invalid " class="input-errror-message">
|
|
|
|
|
<div *ngIf="Form.get('Location').errors?.required">
|
2023-02-13 18:57:15 +01:00
|
|
|
|
2021-07-02 11:19:52 +01:00
|
|
|
</div>
|
|
|
|
|
<div *ngIf="Form.get('Location').errors?.minlength">
|
|
|
|
|
O campo deve ter pelo menos 4 caracteres.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-07-14 16:49:56 +01:00
|
|
|
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="container-div width-100">
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-item-class-2 width-100 d-flex">
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-calendar.svg"></ion-icon>
|
|
|
|
|
</div>
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-input-class flex-grow-1">
|
|
|
|
|
|
|
|
|
|
<mat-form-field appearance="none" floatLabel="never" class="width-100 " >
|
2023-07-17 15:07:08 +01:00
|
|
|
<mat-select placeholder="Selecione agenda*" [(ngModel)]="postEvent.CalendarName" [disabled]=true>
|
2022-01-21 15:54:53 +01:00
|
|
|
<mat-option value="Oficial">
|
2023-02-09 17:03:26 +01:00
|
|
|
Agenda Oficial
|
2022-01-21 15:54:53 +01:00
|
|
|
</mat-option>
|
|
|
|
|
<mat-option value="Pessoal">
|
2023-02-09 17:03:26 +01:00
|
|
|
Agenda Pessoal
|
2022-01-21 15:54:53 +01:00
|
|
|
</mat-option>
|
|
|
|
|
</mat-select>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
|
2021-04-06 11:56:04 +01:00
|
|
|
</div>
|
2021-04-06 11:28:46 +01:00
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-07-02 11:19:52 +01:00
|
|
|
|
|
|
|
|
<div *ngIf="Form && validateFrom" >
|
|
|
|
|
<div *ngIf="Form.get('CalendarName').invalid " class="input-errror-message">
|
2021-07-15 08:53:54 +01:00
|
|
|
{{ postEvent.Category }}
|
2021-07-02 11:19:52 +01:00
|
|
|
<div *ngIf="Form.get('CalendarName').errors?.required">
|
2023-02-13 18:57:15 +01:00
|
|
|
|
2021-07-02 11:19:52 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-07-14 16:49:56 +01:00
|
|
|
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="container-div width-100">
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-item-class-2 width-100 d-flex">
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-calendar.svg"></ion-icon>
|
|
|
|
|
</div>
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-input-class flex-grow-1" [class.input-error]="Form?.get('Categories')?.invalid && validateFrom ">
|
|
|
|
|
|
|
|
|
|
<mat-form-field appearance="none" floatLabel="never" class="width-100" required>
|
|
|
|
|
<!-- <input matInput type="text" > -->
|
|
|
|
|
<mat-select placeholder="Selecione o tipo de evento*" matInput [(ngModel)]="postEvent.Category" >
|
|
|
|
|
<mat-option value="Reunião">
|
|
|
|
|
Reunião
|
|
|
|
|
</mat-option>
|
|
|
|
|
<mat-option value="Viagem">
|
|
|
|
|
Viagem
|
|
|
|
|
</mat-option>
|
|
|
|
|
<mat-option value="Conferência">
|
|
|
|
|
Conferência
|
|
|
|
|
</mat-option>
|
|
|
|
|
<mat-option value="Encontro">
|
|
|
|
|
Encontro
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-select>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
|
2021-04-06 11:56:04 +01:00
|
|
|
</div>
|
2021-04-06 11:28:46 +01:00
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-07-02 11:19:52 +01:00
|
|
|
|
|
|
|
|
<div *ngIf="Form && validateFrom" >
|
|
|
|
|
<div *ngIf="Form.get('Categories').invalid " class="input-errror-message">
|
2021-07-15 08:53:54 +01:00
|
|
|
{{ postEvent.Category}}
|
2021-07-02 11:19:52 +01:00
|
|
|
<div *ngIf="Form.get('Categories').errors?.required">
|
2023-02-13 18:57:15 +01:00
|
|
|
|
2021-07-02 11:19:52 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-07-14 16:49:56 +01:00
|
|
|
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="container-div width-100">
|
|
|
|
|
<div class="ion-item-class-2 width-100">
|
|
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-calendar.svg"></ion-icon>
|
|
|
|
|
</div>
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-input-class" [class.input-error]="Form?.get('Date')?.invalid && validateFrom ">
|
|
|
|
|
|
|
|
|
|
<mat-form-field appearance="none" floatLabel="never" class="date-hour-picker">
|
|
|
|
|
<input matInput [ngxMatDatetimePicker]="picker1"
|
|
|
|
|
placeholder="Choose a date"
|
|
|
|
|
[(ngModel)]="postEvent.StartDate"
|
|
|
|
|
[max]="maxDate"
|
|
|
|
|
[disabled]="disabled"
|
|
|
|
|
>
|
|
|
|
|
<mat-datepicker-toggle id="new-inicio" matSuffix [for]="picker1"></mat-datepicker-toggle>
|
|
|
|
|
<ngx-mat-datetime-picker #picker1
|
|
|
|
|
[showSpinners]="showSpinners"
|
|
|
|
|
[showSeconds]="showSeconds"
|
|
|
|
|
[stepHour]="stepHour" [stepMinute]="stepMinute"
|
|
|
|
|
[stepSecond]="stepSecond"
|
|
|
|
|
[touchUi]="touchUi">
|
|
|
|
|
</ngx-mat-datetime-picker>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
|
2021-04-06 11:56:04 +01:00
|
|
|
</div>
|
2021-04-06 11:28:46 +01:00
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-06-15 11:39:59 +01:00
|
|
|
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="container-div width-100">
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-item-class-2 width-100 d-flex">
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-calendar.svg"></ion-icon>
|
|
|
|
|
</div>
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-input-class flex-grow-1" [class.input-error]="Form?.get('Date')?.invalid && validateFrom ">
|
|
|
|
|
|
|
|
|
|
<mat-form-field appearance="none" floatLabel="never" floatLabel="never" class="date-hour-picker">
|
|
|
|
|
<input matInput [ngxMatDatetimePicker]="fim"
|
|
|
|
|
placeholder="Choose a date"
|
|
|
|
|
[(ngModel)]="postEvent.EndDate"
|
2022-12-17 17:01:36 +01:00
|
|
|
[min]="postEvent.StartDate"
|
2022-01-21 15:54:53 +01:00
|
|
|
[max]="maxDate"
|
|
|
|
|
[disabled]="disabled"
|
|
|
|
|
>
|
|
|
|
|
<mat-datepicker-toggle id="new-fim" matSuffix [for]="fim"></mat-datepicker-toggle>
|
|
|
|
|
<ngx-mat-datetime-picker #fim
|
|
|
|
|
[showSpinners]="showSpinners"
|
|
|
|
|
[showSeconds]="showSeconds"
|
|
|
|
|
[stepHour]="stepHour" [stepMinute]="stepMinute"
|
|
|
|
|
[stepSecond]="stepSecond">
|
|
|
|
|
</ngx-mat-datetime-picker>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
|
2021-04-01 15:06:05 +01:00
|
|
|
</div>
|
2021-04-06 11:56:04 +01:00
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-07-08 13:20:54 +01:00
|
|
|
|
2022-12-17 17:08:13 +01:00
|
|
|
<!-- <div class="container-div d-flex width-100">
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-item-class-2 width-100 d-flex">
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-refresh.svg"></ion-icon>
|
|
|
|
|
</div>
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-input-class flex-grow-1">
|
|
|
|
|
<mat-form-field appearance="none" floatLabel="never" class="width-100" value="false" interface="action-sheet" required>
|
|
|
|
|
<mat-select
|
|
|
|
|
placeholder="Selecione repetição*"
|
|
|
|
|
[(ngModel)]="selectedRecurringType"
|
|
|
|
|
(ngModelChange)="onSelectedRecurringChanged($event)">
|
|
|
|
|
<mat-option
|
|
|
|
|
*ngFor="let recurring of recurringTypes"
|
|
|
|
|
value="{{recurring.Code}}">
|
|
|
|
|
{{recurring.Description}}
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-select>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
|
2021-04-01 15:06:05 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-12-17 17:08:13 +01:00
|
|
|
</div> -->
|
2021-07-14 16:49:56 +01:00
|
|
|
|
2021-07-08 21:31:14 +01:00
|
|
|
<div *ngIf="selectedRecurringType != '-1'" class="container-div width-100">
|
2022-01-21 15:54:53 +01:00
|
|
|
<div class="ion-item-class-2 d-flex">
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="ion-icon-class">
|
2021-07-08 21:31:14 +01:00
|
|
|
<ion-icon slot="start" src="assets/images/icons-calendar.svg"></ion-icon>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2022-01-21 15:54:53 +01:00
|
|
|
<div (click)="openLastOccurrence()" class="ion-input-class flex-grow-1">
|
|
|
|
|
|
|
|
|
|
<mat-form-field class="date-hour-picker">
|
|
|
|
|
<input matInput [ngxMatDatetimePicker]="occurrrence"
|
|
|
|
|
placeholder="Choose a date"
|
|
|
|
|
[(ngModel)]="postEvent.EventRecurrence.LastOccurrence"
|
|
|
|
|
[disabled]="disabled"
|
2022-07-06 09:12:57 +01:00
|
|
|
[min]="postEvent.EndDate"
|
2022-01-21 15:54:53 +01:00
|
|
|
>
|
|
|
|
|
<mat-datepicker-toggle id="last-occurrence" matSuffix [for]="occurrrence"></mat-datepicker-toggle>
|
|
|
|
|
<ngx-mat-datetime-picker #occurrrence
|
|
|
|
|
[showSpinners]="showSpinners"
|
|
|
|
|
[showSeconds]="showSeconds"
|
|
|
|
|
[stepHour]="stepHour" [stepMinute]="stepMinute"
|
|
|
|
|
[stepSecond]="stepSecond"
|
|
|
|
|
[touchUi]="touchUi"
|
|
|
|
|
>
|
|
|
|
|
</ngx-mat-datetime-picker>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
|
2021-04-01 15:06:05 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-07-08 21:31:14 +01:00
|
|
|
|
2021-04-13 14:18:30 +01:00
|
|
|
<div class="container-div width-100">
|
2021-06-10 15:38:08 +01:00
|
|
|
<div (click)="addParticipants()" class="ion-item-class-2 cursor-pointer">
|
2021-04-13 14:18:30 +01:00
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-person.svg"></ion-icon>
|
|
|
|
|
</div>
|
2022-04-20 14:41:02 +01:00
|
|
|
<div class="ion-input-class-no-height d-flex" [class.input-error]="Form?.get('participantes')?.invalid && validateFrom">
|
2021-04-13 14:18:30 +01:00
|
|
|
<div class="list-people flex-grow-1">
|
|
|
|
|
<ion-item lines="none">
|
|
|
|
|
<ion-list>
|
2023-02-15 16:26:34 +01:00
|
|
|
<ion-label *ngIf="taskParticipants?.length < 1" class="list-people-title">Adicionar intervenientes*</ion-label>
|
2021-04-13 14:18:30 +01:00
|
|
|
<ion-label *ngFor="let participant of taskParticipants">{{participant.Name}}</ion-label>
|
|
|
|
|
</ion-list>
|
|
|
|
|
</ion-item>
|
2021-04-06 11:56:04 +01:00
|
|
|
</div>
|
2021-06-10 15:38:08 +01:00
|
|
|
<div class="add-people">
|
2021-10-22 15:43:57 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " slot="start" src="assets/images/icons-arrow-forward.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="start" src="assets/images/theme/gov/icons-arrow-forward.svg"></ion-icon>
|
2022-10-20 15:45:10 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " slot="start" src="assets/images/theme/{{ThemeService.currentTheme}}/icons-arrow-forward.svg"></ion-icon>
|
2021-04-06 11:28:46 +01:00
|
|
|
</div>
|
2021-04-01 15:06:05 +01:00
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-04-13 14:18:30 +01:00
|
|
|
</div>
|
2021-04-08 22:53:31 +01:00
|
|
|
|
2021-04-13 14:18:30 +01:00
|
|
|
<div class="container-div width-100">
|
2021-06-10 15:38:08 +01:00
|
|
|
<div (click)="addParticipantsCC()" class="ion-item-class-2 cursor-pointer">
|
2021-04-13 14:18:30 +01:00
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-person.svg"></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ion-input-class-no-height d-flex">
|
|
|
|
|
<div class="list-people flex-grow-1">
|
|
|
|
|
<ion-item lines="none">
|
|
|
|
|
<ion-list>
|
2023-02-15 16:26:34 +01:00
|
|
|
<ion-label *ngIf="taskParticipantsCc?.length < 1" class="list-people-title">Adicionar intervenientes*</ion-label>
|
2021-04-13 14:18:30 +01:00
|
|
|
<ion-label *ngFor="let participant of taskParticipantsCc">{{participant.Name}}</ion-label>
|
|
|
|
|
</ion-list>
|
|
|
|
|
</ion-item>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
2021-06-10 15:38:08 +01:00
|
|
|
<div class="add-people">
|
2021-10-22 15:43:57 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " slot="start" src="assets/images/icons-arrow-forward.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="start" src="assets/images/theme/gov/icons-arrow-forward.svg"></ion-icon>
|
2022-10-20 15:45:10 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " slot="start" src="assets/images/theme/{{ThemeService.currentTheme}}/icons-arrow-forward.svg"></ion-icon>
|
2021-04-06 11:28:46 +01:00
|
|
|
</div>
|
2021-04-01 15:06:05 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-01-29 09:45:27 +01:00
|
|
|
</div>
|
2021-04-13 14:18:30 +01:00
|
|
|
|
2021-06-16 15:58:44 +01:00
|
|
|
|
2021-06-29 10:39:53 +01:00
|
|
|
<div class="container-div width-100">
|
|
|
|
|
<div class="ion-item-class-2 d-flex width-100">
|
|
|
|
|
<div class="ion-icon-class d-flex">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-description.svg"></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ion-input-class-no-height width-100 flex-grow-1">
|
2021-07-01 10:10:21 +01:00
|
|
|
<!-- rows="6" cols="20" -->
|
2023-02-17 15:23:43 +01:00
|
|
|
<ion-textarea class="heigh-200" autocomplete="on" autocorrect="on" spellcheck="true" [(ngModel)]="postEvent.Body.Text" placeholder="Detalhes" ></ion-textarea>
|
2021-06-29 10:39:53 +01:00
|
|
|
</div>
|
2021-06-16 15:58:44 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2021-06-11 00:15:26 +01:00
|
|
|
<div class="d-flex container-div width-100 ion-item-container-no-border" >
|
|
|
|
|
<ion-label (click)="getDoc()" class="cursor-pointer">
|
2021-04-09 10:33:19 +01:00
|
|
|
<div class="attach-icon">
|
2021-10-26 17:22:21 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' "src="assets/images/icons-attach-doc.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " src="assets/images/theme/gov/icons-attach-doc.svg"></ion-icon>
|
2022-10-20 15:45:10 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " src="assets/images/theme/{{ThemeService.currentTheme}}/icons-attach-doc.svg"></ion-icon>
|
2021-04-09 10:33:19 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="attach-document">
|
2021-04-23 10:35:53 +01:00
|
|
|
<ion-label>Adicionar documentos</ion-label>
|
2021-07-14 16:49:56 +01:00
|
|
|
</div>
|
2021-04-09 10:33:19 +01:00
|
|
|
</ion-label>
|
|
|
|
|
</div>
|
2021-07-14 16:49:56 +01:00
|
|
|
|
|
|
|
|
<div class="d-flex container-div width-100" *ngFor="let document of loadedEventAttachments; let i = index" >
|
2021-07-09 12:35:11 +01:00
|
|
|
<ion-list class="width-100 list" *ngIf="!document.remove">
|
2021-07-07 11:49:27 +01:00
|
|
|
<ion-item class="width-100 ion-no-border ion-no-padding">
|
2021-04-23 10:35:53 +01:00
|
|
|
<ion-label class="width-100">
|
2021-07-14 16:49:56 +01:00
|
|
|
<p class="p-item-title d-flex ion-justify-content-between">
|
|
|
|
|
<span class="attach-title-item">{{document.SourceName}}</span>
|
2021-07-09 12:35:11 +01:00
|
|
|
<span class="close-button text-black" (click)="deleteAttachment(document.Id, i)" >
|
2021-04-23 10:35:53 +01:00
|
|
|
<ion-icon class="font-20" src="assets/images/icons-delete-25.svg"></ion-icon>
|
|
|
|
|
</span>
|
2021-07-07 11:10:06 +01:00
|
|
|
</p>
|
2021-07-09 12:35:11 +01:00
|
|
|
<!-- <p *ngIf="document.Stakeholders" ><span class="span-left" >{{document.Stakeholders}}</span></p> -->
|
2021-07-07 11:10:06 +01:00
|
|
|
<p>
|
2021-07-07 11:49:27 +01:00
|
|
|
<span class="app-name span-left" *ngIf="document.ApplicationId == 8"> Correspondência </span>
|
|
|
|
|
<span class="app-name span-left" *ngIf="document.ApplicationId == 386"> Acções Presidenciais </span>
|
|
|
|
|
<span class="app-name span-left" *ngIf="document.ApplicationId == 361 "> Arquivo Despacho Electrónico </span>
|
2021-07-07 11:10:06 +01:00
|
|
|
|
2021-07-09 12:35:11 +01:00
|
|
|
</p>
|
2021-04-23 10:35:53 +01:00
|
|
|
</ion-label>
|
|
|
|
|
</ion-item>
|
|
|
|
|
</ion-list>
|
2021-07-14 16:49:56 +01:00
|
|
|
</div>
|
2021-04-23 10:35:53 +01:00
|
|
|
|
2021-04-06 11:28:46 +01:00
|
|
|
|
2021-04-06 11:56:04 +01:00
|
|
|
</div>
|
2021-07-14 16:49:56 +01:00
|
|
|
|
2021-04-23 10:35:53 +01:00
|
|
|
|
|
|
|
|
|
2021-04-05 14:13:13 +01:00
|
|
|
</ion-item-sliding>
|
2021-04-06 11:56:04 +01:00
|
|
|
|
2021-04-01 15:06:05 +01:00
|
|
|
</div>
|
2021-04-06 11:28:46 +01:00
|
|
|
|
2021-04-06 11:56:04 +01:00
|
|
|
<app-attendee-modal class="aside-right flex-column height-100 d-none d-md-flex pt-10"
|
2021-04-09 13:57:31 +01:00
|
|
|
*ngIf="showAttendees"
|
2021-05-28 16:39:03 +01:00
|
|
|
[footer]="false"
|
2021-04-06 11:28:46 +01:00
|
|
|
[taskParticipants]="taskParticipants"
|
|
|
|
|
[taskParticipantsCc]="taskParticipantsCc"
|
|
|
|
|
[adding]="adding"
|
2021-05-28 16:39:03 +01:00
|
|
|
[footer]="false"
|
2021-04-08 13:39:48 +01:00
|
|
|
(dynamicSetIntervenient)="dynamicSetIntervenient($event)"
|
2021-04-06 11:28:46 +01:00
|
|
|
></app-attendee-modal>
|
|
|
|
|
|
2021-07-14 16:49:56 +01:00
|
|
|
</div>
|
2021-01-29 09:45:27 +01:00
|
|
|
</ion-content>
|
2021-04-06 11:28:46 +01:00
|
|
|
|
2023-03-16 11:45:59 +01:00
|
|
|
<ion-footer class="ion-no-border">
|
|
|
|
|
<ion-toolbar class="footer-toolbar px-20">
|
|
|
|
|
<ion-buttons slot="start">
|
|
|
|
|
<button class="btn-cancel" fill="clear" color="#061b52" (click)="close()">
|
|
|
|
|
<ion-label>Cancelar</ion-label>
|
|
|
|
|
</button>
|
|
|
|
|
</ion-buttons>
|
|
|
|
|
<ion-buttons slot="end">
|
|
|
|
|
<button class="btn-ok" fill="clear" color="#fff" (click)="save()">
|
|
|
|
|
<ion-label>Gravar</ion-label>
|
|
|
|
|
</button>
|
|
|
|
|
</ion-buttons>
|
|
|
|
|
</ion-toolbar>
|
2021-07-14 16:49:56 +01:00
|
|
|
</ion-footer>
|