1
0
Fork 0
mirror of https://github.com/IRS-Public/direct-file.git synced 2025-06-27 20:25:52 +00:00

check for not equal 100 in divisible by 4 check

This commit is contained in:
Elijah Wright 2025-06-06 08:20:52 -07:00
parent 6181108075
commit a58d156d4e

View file

@ -90,24 +90,45 @@
</Case>
<Case>
<When>
<Equal>
<Case>
<When>
<NotEqual>
<Left>
<Modulo>
<Left>
<Dependency path="/taxYear" />
</Left>
<Right>
<Int>4</Int>
<Int>100</Int>
</Right>
</Modulo>
</Left>
<Right>
<Int>0</Int>
</Right>
</Equal>
</NotEqual>
</When>
<Then>
<True />
<When>
<Equal>
<Left>
<Modulo>
<Left>
<Dependency path="/taxYear" />
</Left>
<Right>
<Int>4</Int>
</Right>
</Modulo>
</Left>
<Right>
<Int>0</Int>
</Right>
</Equal>
</When>
<Then>
<True />
</When>
</Then>
</Case>
<Case>