Concept Validations should be more lenient with retired concepts
Description
Attachments
Activity
Ian Bacher April 4, 2024 at 4:31 PM
I think you’re right that there’s no specific need to actually check the currently existing concept if we don’t have specific logic that needs to be triggered when conceptToValidate.getRetired()
is true and I don’t think any of the logic in the ticket is specific to unretiring concepts. Basically the idea is that when a concept is unretired, it should be required to pass all validation checks, but we can ignore validation checks when the concept is retired.
Ryan McCauley February 11, 2024 at 12:41 PM
Raised a PR for this -
Ryan McCauley February 3, 2024 at 11:00 AM
Thanks I was thinking the reverse, that the conceptToValidate could be false in some cases where it is in the process of being unretired. In the code you provided the conceptToValidate.getRetired() is true in the case where the concept is not retired and where the concept is being unretired, then we can perform standard validation in both these cases so don’t need to consider when it is transitioning to unretired. Is that correct or am I misunderstanding?
This is how I am thinking of the three scenarios
1. Concept is retired - conceptToValidate.getRetired() is always True and we skip validation
2. Concept is not retired - conceptToValidate.getRetired() is always False and we perform validation
3. Concept is being unretired - conceptToValidate.getRetired() is always False and we perform validation
So we can handle all three scenarios without checking the existing concept?
Ian Bacher February 2, 2024 at 5:27 PM
Basically, the idea is that the concept as passed to the validator is what the concept will look like, but we should be able to load the existing concept from the DB for comparison.
Ian Bacher February 2, 2024 at 5:26 PM
That’s a really good question. I think the logic would look something like this:
This ticket has an attached log provided by the Bahmni team showing certain concepts, concept names and concept mappings failing to import into OpenMRS. While we have a separate ticket (OCLOMRS-1108) to not import these via the import module, it seems like some updates to the core validation logic are also in order. Specifically:
We should not validate any concept names for a concept if the concept is retired
We should validate concept names for a concept when it is being un-retired
The logic to check for duplicate mappings should ignore retired mappings
Un-retiring a retired mapping should still check for duplicate mappings
This will help ensure that it’s possible to add or update retired concepts if that’s necessary.