Skip to content

Commit

Permalink
Merge pull request #366 from AllianceBioversityCIAT/staging
Browse files Browse the repository at this point in the history
♻️refactor(InnoDev): allowing budget = 0
  • Loading branch information
davinzifc authored Dec 17, 2024
2 parents f589df4 + 02cc7c9 commit c38c265
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 c38c265

Please sign in to comment.