remove debuggers

This commit is contained in:
Eduardo Quiros 2021-08-11 18:39:20 -06:00
parent 72719bcad9
commit 1766f657fe
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
5 changed files with 0 additions and 7 deletions

View File

@ -19,7 +19,6 @@ export class EncuestaFinalizarDialogComponent implements OnInit {
ngOnInit(): void {} ngOnInit(): void {}
confirmFinalizar(encuesta: IEncuesta): void { confirmFinalizar(encuesta: IEncuesta): void {
debugger;
const now = dayjs(); const now = dayjs();
encuesta.estado = EstadoEncuesta.FINISHED; encuesta.estado = EstadoEncuesta.FINISHED;

View File

@ -107,7 +107,6 @@ export class EncuestaPublishDialogComponent implements OnInit {
fechaFinalizacionIsInvalid(fechaFinalizar: dayjs.Dayjs, fechaPublicacion: dayjs.Dayjs): boolean { fechaFinalizacionIsInvalid(fechaFinalizar: dayjs.Dayjs, fechaPublicacion: dayjs.Dayjs): boolean {
let numberDays: number; let numberDays: number;
debugger;
numberDays = fechaFinalizar?.diff(fechaPublicacion, 'days'); numberDays = fechaFinalizar?.diff(fechaPublicacion, 'days');

View File

@ -19,7 +19,6 @@ export class FacturaService {
constructor(protected http: HttpClient, protected applicationConfigService: ApplicationConfigService) {} constructor(protected http: HttpClient, protected applicationConfigService: ApplicationConfigService) {}
create(factura: IFactura): Observable<EntityResponseType> { create(factura: IFactura): Observable<EntityResponseType> {
debugger;
const copy = this.convertDateFromClient(factura); const copy = this.convertDateFromClient(factura);
return this.http return this.http
.post<IFactura>(this.resourceUrl, copy, { observe: 'response' }) .post<IFactura>(this.resourceUrl, copy, { observe: 'response' })

View File

@ -106,7 +106,6 @@ export class PaypalDialogComponent implements OnInit {
}); });
}, },
onClientAuthorization: data => { onClientAuthorization: data => {
debugger;
console.log('onClientAuthorization - you should probably inform your server about completed transaction at this point', data); console.log('onClientAuthorization - you should probably inform your server about completed transaction at this point', data);
this.updateUser(); this.updateUser();
this.sendReceipt(); this.sendReceipt();
@ -119,7 +118,6 @@ export class PaypalDialogComponent implements OnInit {
} }
getUser(): void { getUser(): void {
debugger;
// Get jhi_user and usuario_extra information // Get jhi_user and usuario_extra information
if (this.account !== null) { if (this.account !== null) {
this.usuarioExtraService.find(this.account.id).subscribe(usuarioExtra => { this.usuarioExtraService.find(this.account.id).subscribe(usuarioExtra => {
@ -138,7 +136,6 @@ export class PaypalDialogComponent implements OnInit {
sendReceipt(): void { sendReceipt(): void {
const now = dayjs(); const now = dayjs();
debugger;
this.factura = { this.factura = {
nombreUsuario: String(this.usuarioExtra?.id!), nombreUsuario: String(this.usuarioExtra?.id!),
nombrePlantilla: this.plantilla?.nombre!, nombrePlantilla: this.plantilla?.nombre!,

View File

@ -6,7 +6,6 @@ import { Pipe, PipeTransform, Injectable } from '@angular/core';
@Injectable() @Injectable()
export class FilterPipe implements PipeTransform { export class FilterPipe implements PipeTransform {
transform(items: any[], field: string, value: string): any[] { transform(items: any[], field: string, value: string): any[] {
debugger;
if (!items) { if (!items) {
return []; return [];
} }