dejar de forzar la adición de "Otra"
This commit is contained in:
parent
389f24b578
commit
42f1b2eeff
|
@ -26,7 +26,6 @@ export class CategoriaDeleteDialogComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
confirmDelete(categoria: ICategoria): void {
|
confirmDelete(categoria: ICategoria): void {
|
||||||
this.ensureNulaExists();
|
|
||||||
const categoriaNula = new Categoria(0, 'Otra', EstadoCategoria.ACTIVE);
|
const categoriaNula = new Categoria(0, 'Otra', EstadoCategoria.ACTIVE);
|
||||||
this.getEncuestas(categoria);
|
this.getEncuestas(categoria);
|
||||||
if (this.encuestas) {
|
if (this.encuestas) {
|
||||||
|
@ -40,15 +39,6 @@ export class CategoriaDeleteDialogComponent {
|
||||||
this.activeModal.close('deleted');
|
this.activeModal.close('deleted');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
ensureNulaExists(): void {
|
|
||||||
const categoriaNula = new Categoria(0, 'Otra', EstadoCategoria.ACTIVE);
|
|
||||||
const categoria = this.categoriaService.find(0);
|
|
||||||
if (categoria) {
|
|
||||||
this.categoriaService.update(categoriaNula);
|
|
||||||
} else {
|
|
||||||
this.categoriaService.create(categoriaNula);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected getEncuestas(categoria: ICategoria): void {
|
protected getEncuestas(categoria: ICategoria): void {
|
||||||
this.encuestaService.query().subscribe(res => {
|
this.encuestaService.query().subscribe(res => {
|
||||||
|
|
Loading…
Reference in New Issue