data-to-insight / csc-validator-be-cin

1 stars 1 forks source link

bugfix 8890 #336

Closed WillLP-code closed 1 year ago

WillLP-code commented 1 year ago

closes #322

Given that it should flag: b) the (N00148) and the (N00603) of any other group that has a missing (N00110) and the (N00111) flag is not true, this rule should not flag as concurrent s47 modules where ICPCnotRequired is true, which it is, which is causing rows to be wrongly flagged, eg:

                <Section47>
                    <S47ActualStartDate>xxx</S47ActualStartDate>
                    <ICPCnotRequired>true</ICPCnotRequired>
                </Section47>
                <Section47>
                    <S47ActualStartDate>xxx</S47ActualStartDate>
                    <ICPCnotRequired>true</ICPCnotRequired>
                </Section47>

The changes mean that modules where ICPCnotrequired == true are not picked up.