Skip to content

Commit

Permalink
♻️refactor(InnoDev): allowing budget = 0
Browse files Browse the repository at this point in the history
  • Loading branch information
German Martinez committed Dec 17, 2024
1 parent 1c17905 commit 02cc7c9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1468,7 +1468,7 @@ export class resultValidationRepository
rbi.result_id = r.id AND rbi.is_active
AND IF(
coalesce(rib.is_determined, 0) = 0,
COALESCE(rib.kind_cash, 0) > 0,
COALESCE(rib.kind_cash, 0) >= 0,
TRUE
)
) = (
Expand Down Expand Up @@ -1496,7 +1496,7 @@ export class resultValidationRepository
npp.results_id = r.id AND npp.is_active
AND IF(
coalesce(nppb.is_determined, 0) = 0,
COALESCE(nppb.kind_cash, 0) > 0,
COALESCE(nppb.kind_cash, 0) >= 0,
TRUE
)
) = (
Expand Down Expand Up @@ -1524,7 +1524,7 @@ export class resultValidationRepository
rbi.result_id = r.id AND rbi.is_active
AND IF(
coalesce(ribu.is_determined, 0) = 0,
COALESCE(ribu.kind_cash, 0) > 0,
COALESCE(ribu.kind_cash, 0) >= 0,
TRUE
)
) = (
Expand Down

0 comments on commit 02cc7c9

Please sign in to comment.