fix correo de usuarios
This commit is contained in:
parent
569b4703d8
commit
feb91b1871
|
@ -316,7 +316,7 @@
|
||||||
data-cy="entityTable"
|
data-cy="entityTable"
|
||||||
>
|
>
|
||||||
<td>{{ encuesta.nombre }}</td>
|
<td>{{ encuesta.nombre }}</td>
|
||||||
<td>{{ encuesta.fechaCreacion | formatMediumDatetime }}</td>
|
<td>{{ encuesta.fechaCreacion | formatShortDatetime | titlecase }}</td>
|
||||||
<td jhiTranslate="{{ 'dataSurveyApp.AccesoEncuesta.' + encuesta.acceso }}">{{ encuesta.acceso }}</td>
|
<td jhiTranslate="{{ 'dataSurveyApp.AccesoEncuesta.' + encuesta.acceso }}">{{ encuesta.acceso }}</td>
|
||||||
<td jhiTranslate="{{ 'dataSurveyApp.EstadoEncuesta.' + encuesta.estado }}">{{ encuesta.estado }}</td>
|
<td jhiTranslate="{{ 'dataSurveyApp.EstadoEncuesta.' + encuesta.estado }}">{{ encuesta.estado }}</td>
|
||||||
<td>
|
<td>
|
||||||
|
@ -326,9 +326,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div *ngIf="encuesta.usuarioExtra">
|
<div *ngIf="encuesta.usuarioExtra">
|
||||||
<a [routerLink]="['/usuario-extra', encuesta.usuarioExtra?.nombre, 'view']">
|
{{ encuesta.usuarioExtra?.user?.login }}
|
||||||
{{ encuesta.usuarioExtra?.nombre }}
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
|
|
|
@ -22,6 +22,7 @@ import { EstadoEncuesta } from 'app/entities/enumerations/estado-encuesta.model'
|
||||||
import { AccountService } from 'app/core/auth/account.service';
|
import { AccountService } from 'app/core/auth/account.service';
|
||||||
import { Account } from 'app/core/auth/account.model';
|
import { Account } from 'app/core/auth/account.model';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
|
import { IUser } from '../../user/user.model';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
faShareAlt,
|
faShareAlt,
|
||||||
|
@ -70,6 +71,7 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
|
|
||||||
categoriasSharedCollection: ICategoria[] = [];
|
categoriasSharedCollection: ICategoria[] = [];
|
||||||
usuarioExtrasSharedCollection: IUsuarioExtra[] = [];
|
usuarioExtrasSharedCollection: IUsuarioExtra[] = [];
|
||||||
|
userSharedCollection: IUser[] = [];
|
||||||
|
|
||||||
public searchString: string;
|
public searchString: string;
|
||||||
public accesoEncuesta: string;
|
public accesoEncuesta: string;
|
||||||
|
@ -117,22 +119,61 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
loadAll(): void {
|
loadAll(): void {
|
||||||
this.isLoading = true;
|
this.isLoading = true;
|
||||||
|
|
||||||
this.encuestaService.query().subscribe(
|
this.usuarioExtraService
|
||||||
(res: HttpResponse<IEncuesta[]>) => {
|
.retrieveAllPublicUsers()
|
||||||
this.isLoading = false;
|
.pipe(finalize(() => this.loadUserExtras()))
|
||||||
const tmpEncuestas = res.body ?? [];
|
.subscribe(res => {
|
||||||
if (this.isAdmin()) {
|
this.userSharedCollection = res;
|
||||||
this.encuestas = tmpEncuestas;
|
});
|
||||||
} else {
|
}
|
||||||
this.encuestas = tmpEncuestas
|
|
||||||
.filter(e => e.usuarioExtra?.id === this.usuarioExtra?.id)
|
loadPublicUser(): void {
|
||||||
.filter(e => e.estado !== EstadoEncuesta.DELETED);
|
this.usuarioExtraService
|
||||||
|
.retrieveAllPublicUsers()
|
||||||
|
.pipe(finalize(() => this.loadUserExtras()))
|
||||||
|
.subscribe(res => {
|
||||||
|
this.userSharedCollection = res;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
loadUserExtras() {
|
||||||
|
this.usuarioExtraService
|
||||||
|
.query()
|
||||||
|
.pipe(
|
||||||
|
finalize(() =>
|
||||||
|
this.encuestaService.query().subscribe(
|
||||||
|
(res: HttpResponse<IEncuesta[]>) => {
|
||||||
|
this.isLoading = false;
|
||||||
|
const tmpEncuestas = res.body ?? [];
|
||||||
|
if (this.isAdmin()) {
|
||||||
|
this.encuestas = tmpEncuestas;
|
||||||
|
this.encuestas.forEach(e => {
|
||||||
|
e.usuarioExtra = this.usuarioExtrasSharedCollection?.find(pU => pU.id == e.usuarioExtra?.id);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.encuestas = tmpEncuestas
|
||||||
|
.filter(e => e.usuarioExtra?.id === this.usuarioExtra?.id)
|
||||||
|
.filter(e => e.estado !== EstadoEncuesta.DELETED);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
this.isLoading = false;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.subscribe(
|
||||||
|
(res: HttpResponse<IUsuarioExtra[]>) => {
|
||||||
|
this.isLoading = false;
|
||||||
|
this.usuarioExtrasSharedCollection = res.body ?? [];
|
||||||
|
this.usuarioExtrasSharedCollection.forEach(uE => {
|
||||||
|
uE.user = this.userSharedCollection?.find(pU => pU.id == uE.user?.id);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
this.isLoading = false;
|
||||||
}
|
}
|
||||||
},
|
);
|
||||||
() => {
|
|
||||||
this.isLoading = false;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
@ -173,6 +214,7 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
this.usuarioExtraService.find(account.id).subscribe(usuarioExtra => {
|
this.usuarioExtraService.find(account.id).subscribe(usuarioExtra => {
|
||||||
this.usuarioExtra = usuarioExtra.body;
|
this.usuarioExtra = usuarioExtra.body;
|
||||||
this.loadAll();
|
this.loadAll();
|
||||||
|
|
||||||
this.loadRelationshipsOptions();
|
this.loadRelationshipsOptions();
|
||||||
if (this.usuarioExtra !== null) {
|
if (this.usuarioExtra !== null) {
|
||||||
if (this.usuarioExtra.id === undefined) {
|
if (this.usuarioExtra.id === undefined) {
|
||||||
|
|
Loading…
Reference in New Issue