diff --git a/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts b/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts index 1e15c4b6fcf..9a7d4eaedc6 100644 --- a/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts +++ b/apps/gauzy/src/app/pages/invoices/invoices-received/invoices-received.component.ts @@ -201,7 +201,7 @@ export class InvoicesReceivedComponent extends PaginationFilterBaseComponent imp where: { sentTo: organizationId, tenantId, - isEstimate: this.isEstimate === true ? 1 : 0, + isEstimate: this.isEstimate, invoiceDate: { startDate: toUTC(startDate).format('YYYY-MM-DD HH:mm:ss'), endDate: toUTC(endDate).format('YYYY-MM-DD HH:mm:ss') diff --git a/apps/gauzy/src/app/pages/invoices/invoices.component.ts b/apps/gauzy/src/app/pages/invoices/invoices.component.ts index 6760379b588..6296998b735 100644 --- a/apps/gauzy/src/app/pages/invoices/invoices.component.ts +++ b/apps/gauzy/src/app/pages/invoices/invoices.component.ts @@ -765,8 +765,8 @@ export class InvoicesComponent extends PaginationFilterBaseComponent implements where: { organizationId, tenantId, - isEstimate: this.isEstimate === true ? 1 : 0, - isArchived: this.includeArchived === true ? 1 : 0, + isEstimate: this.isEstimate, + isArchived: this.includeArchived, invoiceDate: { startDate: toUTC(startDate).format('YYYY-MM-DD HH:mm:ss'), endDate: toUTC(endDate).format('YYYY-MM-DD HH:mm:ss'), diff --git a/apps/gauzy/src/app/pages/jobs/proposal-template/proposal-template/proposal-template.component.html b/apps/gauzy/src/app/pages/jobs/proposal-template/proposal-template/proposal-template.component.html index 3ad8f408b0f..593b9aa667c 100644 --- a/apps/gauzy/src/app/pages/jobs/proposal-template/proposal-template/proposal-template.component.html +++ b/apps/gauzy/src/app/pages/jobs/proposal-template/proposal-template/proposal-template.component.html @@ -127,7 +127,7 @@