Skip to content

Commit

Permalink
Merge pull request #383 from RJ-SMTR/hotfix/381-vaores-financeiro
Browse files Browse the repository at this point in the history
(homol) fix: show values = 0
  • Loading branch information
williamfl2007 committed Aug 13, 2024
2 parents 71786f9 + 457524c commit 4329392
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/ticket-revenues/ticket-revenues.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,10 @@ export class TicketRevenuesService {
: {};
const where: FindOptionsWhere<TransacaoView>[] = [
{
valorPago: MoreThan(0),
...betweenDate,
...findOperadora,
},
{
valorPago: MoreThan(0),
...betweenDate,
...findConsorcio,
},
Expand All @@ -275,12 +273,10 @@ export class TicketRevenuesService {
[datetimeField]: Between(startOfDay(today), endOfDay(today)),
};
where.push({
valorPago: MoreThan(0),
...isTodayDate,
...findOperadora,
});
where.push({
valorPago: MoreThan(0),
...isTodayDate,
...findConsorcio,
});
Expand Down

0 comments on commit 4329392

Please sign in to comment.